1 /**
2 * This file is a part of the Cairo-Dock project
3 *
4 * Copyright : (C) see the 'copyright' file.
5 * E-mail    : see the 'copyright' file.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 3
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19 
20 
21 #ifndef __CD_APPLET_STRUCT__
22 #define  __CD_APPLET_STRUCT__
23 
24 /* Minimum extension version required */
25 #define MINMAJOR 2
26 #define MINMINOR 0
27 
28 /* Maximum and Minimum gamma values */
29 #define GAMMA_MIN 0.2
30 #define GAMMA_MAX 2.0
31 
32 #include <cairo-dock.h>
33 #include <X11/Xlib.h>
34 #include <X11/extensions/xf86vmode.h>
35 
36 struct _AppletConfig {
37 	gint iScrollVariation;
38 	gdouble fInitialGamma;
39 	gchar *cDefaultTitle;
40 	gchar *cShortkey;
41 	gchar *cShortkey2;
42 	} ;
43 
44 struct _AppletData {
45 	gboolean bVideoExtensionOK;
46 	CairoDialog *pDialog;
47 	GtkWidget *pWidget;
48 	GtkWidget *pGlobalScale;
49 	GtkWidget *pRedScale;
50 	GtkWidget *pGreenScale;
51 	GtkWidget *pBlueScale;
52 	guint iGloalScaleSignalID;
53 	guint iRedScaleSignalID;
54 	guint iGreenScaleSignalID;
55 	guint iBlueScaleSignalID;
56 	XF86VidModeGamma Xgamma;
57 	XF86VidModeGamma XoldGamma;
58 	guint iSidScrollAction;
59 	gint iScrollCount;
60 	GldiShortkey *pKeyBinding;
61 	GldiShortkey *pKeyBinding2;
62 	} ;
63 
64 
65 #endif
66