/usr/include/rawstudio-2.0/rs-settings.h is in rawstudio 2.0-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | /*
* * Copyright (C) 2006-2011 Anders Brander <anders@brander.dk>,
* * Anders Kvist <akv@lnxbx.dk> and Klaus Post <klauspost@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef RS_SETTINGS_H
#define RS_SETTINGS_H
#include <glib-object.h>
G_BEGIN_DECLS
#define RS_TYPE_SETTINGS rs_settings_get_type()
#define RS_SETTINGS(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), RS_TYPE_SETTINGS, RSSettings))
#define RS_SETTINGS_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), RS_TYPE_SETTINGS, RSSettingsClass))
#define RS_IS_SETTINGS(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), RS_TYPE_SETTINGS))
#define RS_IS_SETTINGS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), RS_TYPE_SETTINGS))
#define RS_SETTINGS_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), RS_TYPE_SETTINGS, RSSettingsClass))
/* Presets for WB */
#define PRESET_WB_AUTO "wb_auto"
#define PRESET_WB_CAMERA "wb_camera"
typedef enum {
MASK_EXPOSURE = (1<<0),
MASK_SATURATION = (1<<1),
MASK_HUE = (1<<2),
MASK_CONTRAST = (1<<3),
MASK_WARMTH = (1<<4),
MASK_TINT = (1<<5),
MASK_DCP_TEMP = (1<<4),
MASK_DCP_TINT = (1<<5),
MASK_WB = MASK_WARMTH | MASK_TINT | MASK_DCP_TEMP | MASK_DCP_TINT,
MASK_CURVE = (1<<6),
MASK_SHARPEN = (1<<7),
MASK_DENOISE_LUMA = (1<<8),
MASK_DENOISE_CHROMA = (1<<9),
MASK_TCA_KR = (1<<10),
MASK_TCA_KB = (1<<11),
MASK_TCA = MASK_TCA_KR | MASK_TCA_KB,
MASK_CHANNELMIXER_RED = (1<<12),
MASK_CHANNELMIXER_GREEN = (1<<13),
MASK_CHANNELMIXER_BLUE = (1<<14),
MASK_CHANNELMIXER = MASK_CHANNELMIXER_RED | MASK_CHANNELMIXER_GREEN | MASK_CHANNELMIXER_BLUE,
MASK_VIGNETTING = (1<<15),
MASK_PROFILE = (1<<16),
MASK_ALL = 0x00ffffff,
} RSSettingsMask;
typedef struct _RSsettings {
GObject parent;
gint commit;
RSSettingsMask commit_todo;
gfloat exposure;
gfloat saturation;
gfloat hue;
gfloat contrast;
gfloat warmth;
gfloat tint;
gfloat dcp_temp;
gfloat dcp_tint;
gchar *wb_ascii;
gfloat sharpen;
gfloat denoise_luma;
gfloat denoise_chroma;
gfloat tca_kr;
gfloat tca_kb;
gfloat vignetting;
gfloat channelmixer_red;
gfloat channelmixer_green;
gfloat channelmixer_blue;
gint curve_nknots;
gfloat *curve_knots;
gboolean recalc_temp;
} RSSettings;
typedef struct {
GObjectClass parent_class;
} RSSettingsClass;
GType rs_settings_get_type (void);
RSSettings *rs_settings_new (void);
/**
* Reset a RSSettings
* @param settings A RSSettings
* @param mask A mask for only resetting some values
*/
extern void rs_settings_reset(RSSettings *settings, const RSSettingsMask mask);
/**
* Stop signal emission from a RSSettings and queue up signals
* @param settings A RSSettings
*/
extern void rs_settings_commit_start(RSSettings *settings);
/**
* Restart signal emission and process signal queue if any
* @param settings A RSSettings
* @return The mask of changes since rs_settings_commit_start()
*/
extern RSSettingsMask rs_settings_commit_stop(RSSettings *settings);
/**
* Copy settings from one RSSettins to another
* @param source The source RSSettings
* @param mask A RSSettingsMask to do selective copying
* @param target The target RSSettings
*/
extern RSSettingsMask rs_settings_copy(RSSettings *source, const RSSettingsMask mask, RSSettings *target);
/**
* Set curve knots
* @param settings A RSSettings
* @param knots Knots for curve
* @param nknots Number of knots
*/
extern void rs_settings_set_curve_knots(RSSettings *settings, const gfloat *knots, const gint nknots);
/**
* Set the warmth and tint values of a RSSettings
* @param settings A RSSettings
* @param exposure New value
*/
extern void rs_settings_set_wb(RSSettings *settings, const gfloat warmth, const gfloat tint, const gchar *ascii);
/**
* Get the knots from the curve
* @param settings A RSSettings
* @return All knots as a newly allocated array
*/
extern gfloat *
rs_settings_get_curve_knots(RSSettings *settings);
/**
* Get number of knots in curve in a RSSettings
* @param settings A RSSettings
* @return Number of knots
*/
extern gint
rs_settings_get_curve_nknots(RSSettings *settings);
/**
* Use like g_signal_connect(source, "settings-changed", G_CALLBACK(rs_settings_changed), target);
*/
extern void rs_settings_changed(RSSettings *source, const RSSettingsMask mask, RSSettings *target);
/**
* Link two RSSettings together, if source gets updated, it will propagate to target
* @param source A RSSettings
* @param target A RSSettings
*/
extern void rs_settings_link(RSSettings *source, RSSettings *target);
/**
* Unlink two RSSettings - this will be done automaticly if target from a previous rs_settings_link() is finalized
* @param source A RSSettings
* @param target A RSSettings - can be destroyed, doesn't matter, we just need the pointer
*/
extern void rs_settings_unlink(RSSettings *source, RSSettings *target);
G_END_DECLS
#endif /* RS_SETTINGS_H */
|