6046d089794d800a61e7c64c9870383aa553f663
[hildon] / src / hildon-color-button.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
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, or (at your option) any later version.
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_BUTTON_H__
26 #define                                         __HILDON_COLOR_BUTTON_H__
27
28 #include                                        <gtk/gtkbutton.h>
29
30 G_BEGIN_DECLS
31
32 #define                                         HILDON_TYPE_COLOR_BUTTON \
33                                                 (hildon_color_button_get_type ())
34
35 #define                                         HILDON_COLOR_BUTTON(obj) \
36                                                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
37                                                 HILDON_TYPE_COLOR_BUTTON, HildonColorButton)) 
38
39 #define                                         HILDON_COLOR_BUTTON_CLASS(klass) \
40                                                 (G_TYPE_CHECK_CLASS_CAST ((klass), \
41                                                 GTK_TYPE_COLOR_BUTTON, HildonColorButtonClass))
42
43 #define                                         HILDON_IS_COLOR_BUTTON(obj) \
44                                                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
45                                                 HILDON_TYPE_COLOR_BUTTON))
46
47 #define                                         HILDON_IS_COLOR_BUTTON_CLASS(klass) \
48                                                 (G_TYPE_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_COLOR_BUTTON))
49
50 #define                                         HILDON_COLOR_BUTTON_GET_CLASS(obj) \
51                                                 (G_TYPE_INSTANCE_GET_CLASS ((obj), \
52                                                 HILDON_TYPE_COLOR_BUTTON, HildonColorButtonClass))
53
54 typedef struct                                  _HildonColorButton HildonColorButton;
55
56 typedef struct                                  _HildonColorButtonClass HildonColorButtonClass;
57
58 struct                                          _HildonColorButton
59 {
60     GtkButton parent;
61 };
62
63 struct                                          _HildonColorButtonClass
64 {
65     GtkButtonClass parent_class;
66 };
67
68 GType G_GNUC_CONST   
69 hildon_color_button_get_type                    (void);
70
71 GtkWidget*
72 hildon_color_button_new                         (void);
73
74 GtkWidget*
75 hildon_color_button_new_with_color              (const GdkColor *color);
76
77 void
78 hildon_color_button_get_color                   (HildonColorButton *button, 
79                                                  GdkColor *color);
80
81 void
82 hildon_color_button_set_color                   (HildonColorButton *button,         
83                                                  GdkColor *color);
84
85 gboolean
86 hildon_color_button_get_popup_shown             (HildonColorButton *button);
87
88 void
89 hildon_color_button_popdown                     (HildonColorButton *button);
90
91 G_END_DECLS
92
93 #endif                                          /* __HILDON_COLOR_BUTTON_H__ */
94
95
96
97