2008-03-03 Sven Herzberg <sven@imendio.com>
[hildon] / src / hildon-color-chooser-dialog-private.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
5  *
6  * Author: Kuisma Salonen <kuisma.salonen@nokia.com>
7  * Contact: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; version 2.1 of
12  * the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23  *
24  */
25
26 #ifndef                                         __HILDON_COLOR_CHOOSER_DIALOG_PRIVATE_H__
27 #define                                         __HILDON_COLOR_CHOOSER_DIALOG_PRIVATE_H__
28
29 typedef struct                                  _HildonColorChooserDialogPrivate HildonColorChooserDialogPrivate;
30
31 #define                                         HILDON_COLOR_CHOOSER_DIALOG_GET_PRIVATE(obj) \
32                                                 (G_TYPE_INSTANCE_GET_PRIVATE ((obj),\
33                                                 HILDON_TYPE_COLOR_CHOOSER_DIALOG, HildonColorChooserDialogPrivate));
34
35 typedef struct 
36 {
37     GtkBorder radio_sizes;
38     GtkBorder cont_sizes;
39     GtkBorder num_buttons;
40     GtkBorder last_num_buttons;
41
42     GdkColor default_color;
43 }                                               HildonColorChooserStyleInfo;
44
45 struct                                          _HildonColorChooserDialogPrivate 
46 {
47     GtkWidget *hbox;
48     GtkWidget *vbox;
49
50     GtkWidget *align_custom, *align_defined;
51     GtkWidget *area_custom, *area_defined;
52     GtkWidget *separator;
53
54     GtkWidget *chooser;
55
56     GdkColor *colors_custom, *colors_defined;
57     GdkColor color;
58     GdkGC **gc_array;
59
60     gint selected;
61
62     HildonColorChooserStyleInfo style_info;
63
64     gint has_style;
65
66     GdkColor pending_color;
67
68     GConfClient *gconf_client;
69 };
70
71 #endif                                          /* __HILDON_COLOR_CHOOSER_DIALOG_PRIVATE_H__ */