Use number entry API
[modest] / src / widgets / modest-toolkit-factory.h
1 #ifndef                                         __MODEST_TOOLKIT_FACTORY_H__
2 #define                                         __MODEST_TOOLKIT_FACTORY_H__
3
4 #include <glib-object.h>
5 #include <gtk/gtk.h>
6
7 G_BEGIN_DECLS
8
9 #define                                         MODEST_TYPE_TOOLKIT_FACTORY \
10                                                 (modest_toolkit_factory_get_type())
11
12 #define                                         MODEST_TOOLKIT_FACTORY(obj) \
13                                                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
14                                                 MODEST_TYPE_TOOLKIT_FACTORY, ModestToolkitFactory))
15
16 #define                                         MODEST_TOOLKIT_FACTORY_CLASS(klass) \
17                                                 (G_TYPE_CHECK_CLASS_CAST ((klass), \
18                                                 MODEST_TYPE_TOOLKIT_FACTORY, ModestToolkitFactory))
19
20 #define                                         MODEST_IS_TOOLKIT_FACTORY(obj) \
21                                                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MODEST_TYPE_TOOLKIT_FACTORY))
22
23 #define                                         MODEST_IS_TOOLKIT_FACTORY_CLASS(klass) \
24                                                 (G_TYPE_CHECK_CLASS_TYPE ((klass), MODEST_TYPE_TOOLKIT_FACTORY))
25
26 #define                                         MODEST_TOOLKIT_FACTORY_GET_CLASS(obj) \
27                                                 (G_TYPE_INSTANCE_GET_CLASS ((obj), \
28                                                 MODEST_TYPE_TOOLKIT_FACTORY, ModestToolkitFactoryClass))
29
30 typedef struct                                  _ModestToolkitFactory ModestToolkitFactory;
31
32 typedef struct                                  _ModestToolkitFactoryClass ModestToolkitFactoryClass;
33
34 struct                                          _ModestToolkitFactoryClass
35 {
36         GObjectClass parent_class;
37
38         GtkWidget * (*create_scrollable) (ModestToolkitFactory *self);
39         GtkWidget * (*create_check_button) (ModestToolkitFactory *self, const gchar *label);
40         GtkWidget * (*create_check_menu) (ModestToolkitFactory *self, const gchar *label);
41         GtkWidget * (*create_isearch_toolbar) (ModestToolkitFactory *self, const gchar *label);
42         GtkWidget * (*create_entry) (ModestToolkitFactory *self);
43         GtkWidget * (*create_number_entry) (ModestToolkitFactory *self, gint min, gint max);
44 };
45
46 struct                                          _ModestToolkitFactory
47 {
48     GObject parent;
49 };
50
51
52 GType
53 modest_toolkit_factory_get_type                       (void) G_GNUC_CONST;
54
55 ModestToolkitFactory *
56 modest_toolkit_factory_get_instance                            (void);
57
58 GtkWidget *
59 modest_toolkit_factory_create_scrollable              (ModestToolkitFactory *self);
60
61 GtkWidget *
62 modest_toolkit_factory_create_check_button (ModestToolkitFactory *self, const gchar *label);
63
64 GtkWidget *
65 modest_toolkit_factory_create_check_menu (ModestToolkitFactory *self, const gchar *label);
66
67 GtkWidget *
68 modest_toolkit_factory_create_isearch_toolbar (ModestToolkitFactory *self, const gchar *label);
69
70 GtkWidget *
71 modest_toolkit_factory_create_entry (ModestToolkitFactory *self);
72
73 GtkWidget *
74 modest_toolkit_factory_create_number_entry (ModestToolkitFactory *self, gint min, gint max);
75
76 gboolean
77 modest_togglable_get_active (GtkWidget *widget);
78
79 void
80 modest_togglable_set_active (GtkWidget *widget, gboolean active);
81
82 gboolean
83 modest_is_togglable (GtkWidget *widget);
84
85 void
86 modest_entry_set_text (GtkWidget *widget, const gchar *text);
87
88 const gchar *
89 modest_entry_get_text (GtkWidget *widget);
90
91 void
92 modest_entry_set_hint (GtkWidget *widget, const gchar *hint);
93
94 gboolean 
95 modest_is_entry (GtkWidget *widget);
96
97 gint
98 modest_number_entry_get_value (GtkWidget *widget);
99
100 void
101 modest_number_entry_set_value (GtkWidget *widget, gint value);
102
103 gboolean
104 modest_number_entry_is_valid (GtkWidget *widget);
105
106 #ifndef MODEST_TOOLKIT_HILDON2
107 #define USE_GTK_SPIN_BUTTON
108 #endif
109
110 #ifndef USE_GTK_SPIN_BUTTON
111 #define MODEST_NUMBER_ENTRY_SUPPORT_VALID_CHANGED
112 #endif
113
114 G_END_DECLS
115
116 #endif /* __MODEST_WP_TEXT_VIEW_H__ */