2006-08-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[hildon] / hildon-widgets / hildon-color-selector.h
1 /*
2  * This file is part of hildon-libs
3  *
4  * Copyright (C) 2005, 2006 Nokia Corporation.
5  *
6  * Contact: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #ifndef __HILDON_COLOR_SELECTOR_H__
26 #define __HILDON_COLOR_SELECTOR_H__
27
28 #include <gtk/gtkcontainer.h>
29 #include <gtk/gtkwindow.h>
30 #include <gtk/gtkdialog.h>
31
32 G_BEGIN_DECLS
33 #define HILDON_TYPE_COLOR_SELECTOR \
34   ( hildon_color_selector_get_type() )
35 #define HILDON_COLOR_SELECTOR(obj) \
36   (GTK_CHECK_CAST (obj, HILDON_TYPE_COLOR_SELECTOR, HildonColorSelector))
37 #define HILDON_COLOR_SELECTOR_CLASS(klass) \
38   (GTK_CHECK_CLASS_CAST ((klass), HILDON_TYPE_COLOR_SELECTOR,\
39    HildonColorSelectorClass))
40 #define HILDON_IS_COLOR_SELECTOR(obj) \
41   (GTK_CHECK_TYPE (obj, HILDON_TYPE_COLOR_SELECTOR))
42 #define HILDON_IS_COLOR_SELECTOR_CLASS(klass) \
43   (GTK_CHECK_CLASS_TYPE ((klass), HILDON_COLOR_SELECTOR_CLASS))
44     GType hildon_color_selector_get_type(void);
45
46 typedef struct _HildonColorSelector HildonColorSelector;
47 typedef struct _HildonColorSelectorClass HildonColorSelectorClass;
48
49 /**
50  * HildonColorSelectorPriv:
51  *
52  * Internal struct for color selector.
53  */
54 typedef struct _HildonColorSelectorPriv HildonColorSelectorPriv;
55
56 struct _HildonColorSelector {
57     GtkDialog parent;
58     HildonColorSelectorPriv *priv;
59 };
60
61 struct _HildonColorSelectorClass {
62     GtkDialogClass parent_class;
63 };
64
65 GType hildon_color_selector_get_type(void) G_GNUC_CONST;
66 GtkWidget *hildon_color_selector_new(GtkWindow * parent);
67 G_CONST_RETURN GdkColor *hildon_color_selector_get_color(HildonColorSelector * selector);
68 void hildon_color_selector_set_color(HildonColorSelector * selector,
69                                      GdkColor * color);
70
71 G_END_DECLS
72 #endif /* __HILDON_COLOR_SELECTOR_H__ */