0135085fe2641d564c733acb6d636bc563c85c26
[hildon] / hildon-widgets / hildon-color-chooser.h
1 /*
2  * This file is part of hildon-libs
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.
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
27 #ifndef __HILDON_COLOR_CHOOSER_H__
28 #define __HILDON_COLOR_CHOOSER_H__
29
30
31 #include <gdk/gdkcolor.h>
32
33 #include <gtk/gtkwidget.h>
34
35
36 #define HILDON_TYPE_COLOR_CHOOSER             (hildon_color_chooser_get_type())
37
38 #define HILDON_COLOR_CHOOSER(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), HILDON_TYPE_COLOR_CHOOSER, HildonColorChooser))
39 #define HILDON_COLOR_CHOOSER_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), HILDON_TYPE_COLOR_CHOOSER, HildonColorChooserClass))
40 #define HILDON_IS_COLOR_CHOOSER(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), HILDON_TYPE_COLOR_CHOOSER))
41
42
43 typedef struct HildonColorChooser_            HildonColorChooser;
44 typedef struct HildonColorChooserClass_       HildonColorChooserClass;
45
46
47 struct HildonColorChooser_
48 {
49   GtkWidget parent;
50
51   GdkColor color;
52 };
53
54 struct HildonColorChooserClass_
55 {
56   GtkWidgetClass parent;
57
58   void (*color_changed) (HildonColorChooser *selection, GdkColor *color);
59
60   void (*set_color) (HildonColorChooser *, GdkColor *);
61 };
62
63
64 GtkType hildon_color_chooser_get_type(void);
65 GtkWidget *hildon_color_chooser_new(void);
66
67 void hildon_color_chooser_set_color(HildonColorChooser *chooser, GdkColor *color);
68 void hildon_color_chooser_get_color(HildonColorChooser *chooser, GdkColor *color);
69
70 void hildon_color_chooser_emit_color_changed(HildonColorChooser *chooser);
71
72
73 #endif /* __HILDON_COLOR_CHOOSER_H__ */