2009-02-24 Alejandro G. Castro <alex@igalia.com>
[hildon] / src / hildon-edit-toolbar.c
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser Public License as published by
8  * the Free Software Foundation; version 2 of the license.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser Public License for more details.
14  *
15  */
16
17 /**
18  * SECTION:hildon-edit-toolbar
19  * @short_description: Widget representing a toolbar for editing.
20  *
21  * The #HildonEditToolbar is a toolbar which contains a label and two
22  * buttons, one of them being an arrow pointing backwards.
23  *
24  * The label is a description of the action that the user is supposed
25  * to do. The button is to be pressed when the user completes the
26  * action. The arrow is used to go back to the previous view
27  * discarding any changes.
28  *
29  * Note that those widgets don't do anything themselves by default. To
30  * actually peform actions the developer must provide callbacks for
31  * them.
32  *
33  * To add a #HildonEditToolbar to a window use
34  * hildon_window_set_edit_toolbar().
35  *
36  * <example>
37  * <title>HildonEditToolbar example</title>
38  * <programlisting>
39  * GtkWidget *window;
40  * GtkWidget *toolbar;
41  * // Declare more widgets here ...
42  * <!-- -->
43  * window = hildon_stackable_window_new ();
44  * toolbar = hildon_edit_toolbar_new_with_text ("Choose items to delete", "Delete");
45  * // Create more widgets here ...
46  * <!-- -->
47  * // Add toolbar to window
48  * hildon_window_set_edit_toolbar (HILDON_WINDOW (window), HILDON_EDIT_TOOLBAR (toolbar));
49  * <!-- -->
50  * // Add other widgets ...
51  * <!-- -->
52  * g_signal_connect (toolbar, "button-clicked", G_CALLBACK (delete_button_clicked), someparameter);
53  * g_signal_connect_swapped (toolbar, "arrow-clicked", G_CALLBACK (gtk_widget_destroy), window);
54  * <!-- -->
55  * gtk_widget_show_all (window);
56  * gtk_window_fullscreen (GTK_WINDOW (window));
57  * </programlisting>
58  * </example>
59  */
60
61 #include                                        "hildon-edit-toolbar.h"
62 #include                                        "hildon-gtk.h"
63
64 G_DEFINE_TYPE                                   (HildonEditToolbar, hildon_edit_toolbar, GTK_TYPE_HBOX);
65
66 #define                                         TOOLBAR_LEFT_PADDING 8
67 #define                                         TOOLBAR_RIGHT_PADDING 8
68
69 #define                                         HILDON_EDIT_TOOLBAR_GET_PRIVATE(obj) \
70                                                 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
71                                                 HILDON_TYPE_EDIT_TOOLBAR, HildonEditToolbarPrivate));
72
73 typedef struct                                  _HildonEditToolbarPrivate HildonEditToolbarPrivate;
74
75 struct                                          _HildonEditToolbarPrivate
76 {
77     GtkLabel *label;
78     GtkButton *button;
79     GtkButton *arrow;
80 };
81
82 enum {
83     BUTTON_CLICKED,
84     ARROW_CLICKED,
85     N_SIGNALS
86 };
87
88 static guint                                    toolbar_signals [N_SIGNALS] = { 0 };
89
90 static void
91 hildon_edit_toolbar_style_set                   (GtkWidget *widget,
92                                                  GtkStyle  *previous_style)
93 {
94     guint width, height;
95     HildonEditToolbarPrivate *priv = HILDON_EDIT_TOOLBAR_GET_PRIVATE (widget);
96
97     if (GTK_WIDGET_CLASS (hildon_edit_toolbar_parent_class)->style_set)
98         GTK_WIDGET_CLASS (hildon_edit_toolbar_parent_class)->style_set (widget, previous_style);
99
100     gtk_widget_style_get (widget,
101                           "arrow-width", &width,
102                           "arrow-height", &height,
103                           NULL);
104
105     gtk_widget_set_size_request (GTK_WIDGET (priv->arrow), width, height);
106 }
107
108 static void
109 hildon_edit_toolbar_class_init                  (HildonEditToolbarClass *klass)
110 {
111     GObjectClass *gobject_class = (GObjectClass *) klass;
112     GtkWidgetClass *widget_class = (GtkWidgetClass *)klass;
113
114     widget_class->style_set = hildon_edit_toolbar_style_set;
115
116     g_type_class_add_private (klass, sizeof (HildonEditToolbarPrivate));
117
118     gtk_widget_class_install_style_property (
119         widget_class,
120         g_param_spec_uint (
121             "arrow-width",
122             "Width of the arrow button",
123             "Width of the arrow button",
124             0, G_MAXUINT, 112,
125             G_PARAM_READABLE));
126
127     gtk_widget_class_install_style_property (
128         widget_class,
129         g_param_spec_uint (
130             "arrow-height",
131             "Height of the arrow button",
132             "Height of the arrow button",
133             0, G_MAXUINT, 56,
134             G_PARAM_READABLE));
135
136     /**
137      * HildonEditToolbar::button-clicked:
138      * @widget: the object which received the signal.
139      *
140      * Emitted when the toolbar button has been activated (pressed and released).
141      *
142      * Since: 2.2
143      */
144     toolbar_signals[BUTTON_CLICKED] =
145         g_signal_new ("button_clicked",
146                       G_OBJECT_CLASS_TYPE (gobject_class),
147                       G_SIGNAL_RUN_FIRST,
148                       0, NULL, NULL,
149                       g_cclosure_marshal_VOID__VOID,
150                       G_TYPE_NONE, 0);
151
152     /**
153      * HildonEditToolbar::arrow-clicked:
154      * @widget: the object which received the signal.
155      *
156      * Emitted when the toolbar back button (arrow) has been activated
157      * (pressed and released).
158      *
159      * Since: 2.2
160      */
161     toolbar_signals[ARROW_CLICKED] =
162         g_signal_new ("arrow_clicked",
163                       G_OBJECT_CLASS_TYPE (gobject_class),
164                       G_SIGNAL_RUN_FIRST,
165                       0, NULL, NULL,
166                       g_cclosure_marshal_VOID__VOID,
167                       G_TYPE_NONE, 0);
168 }
169
170 static void
171 button_clicked_cb                               (GtkButton *self,
172                                                  HildonEditToolbar *toolbar)
173 {
174     g_signal_emit (toolbar, toolbar_signals[BUTTON_CLICKED], 0);
175 }
176
177 static void
178 arrow_clicked_cb                                (GtkButton *self,
179                                                  HildonEditToolbar *toolbar)
180 {
181     g_signal_emit (toolbar, toolbar_signals[ARROW_CLICKED], 0);
182 }
183
184 static void
185 hildon_edit_toolbar_init                        (HildonEditToolbar *self)
186 {
187     HildonEditToolbarPrivate *priv = HILDON_EDIT_TOOLBAR_GET_PRIVATE (self);
188     GtkWidget *separator;
189     GtkAlignment *align;
190     GtkBox *hbox = GTK_BOX (self);
191     GtkBox *hbox2;
192
193     hbox2 = GTK_BOX (gtk_hbox_new (FALSE, 0));
194     align = GTK_ALIGNMENT (gtk_alignment_new (0, 0.5, 1, 1));
195     priv->label = GTK_LABEL (gtk_label_new (NULL));
196     priv->button = GTK_BUTTON (hildon_gtk_button_new (HILDON_SIZE_AUTO));
197     separator = gtk_vseparator_new ();
198     priv->arrow = GTK_BUTTON (gtk_button_new ());
199
200     gtk_button_set_focus_on_click (priv->arrow, FALSE);
201
202     g_signal_connect (priv->button, "clicked", G_CALLBACK (button_clicked_cb), self);
203     g_signal_connect (priv->arrow, "clicked", G_CALLBACK (arrow_clicked_cb), self);
204
205     gtk_box_set_spacing (hbox, 0);
206     gtk_alignment_set_padding (align, 0, 0, TOOLBAR_LEFT_PADDING, TOOLBAR_RIGHT_PADDING);
207
208     gtk_widget_set_name (GTK_WIDGET (self), "toolbar-edit-mode");
209     gtk_widget_set_name (GTK_WIDGET (priv->arrow), "hildon-edit-toolbar-arrow");
210
211     gtk_container_add (GTK_CONTAINER (align), GTK_WIDGET (hbox2));
212     gtk_box_pack_start (hbox2, GTK_WIDGET (priv->label), TRUE, TRUE, 0);
213     gtk_box_pack_start (hbox2, GTK_WIDGET (priv->button), FALSE, FALSE, 0);
214
215     gtk_box_pack_start (hbox, GTK_WIDGET (align), TRUE, TRUE, 0);
216     gtk_box_pack_start (hbox, separator, FALSE, FALSE, 0);
217     gtk_box_pack_start (hbox, GTK_WIDGET (priv->arrow), FALSE, FALSE, 0);
218
219     gtk_misc_set_alignment (GTK_MISC (priv->label), 0, 0.5);
220
221     gtk_widget_show (GTK_WIDGET (align));
222     gtk_widget_show (GTK_WIDGET (priv->label));
223     gtk_widget_show (GTK_WIDGET (priv->button));
224     gtk_widget_show (separator);
225     gtk_widget_show (GTK_WIDGET (priv->arrow));
226 }
227
228 /**
229  * hildon_edit_toolbar_set_label:
230  * @toolbar: a #HildonEditToolbar
231  * @label: a new text for the toolbar label
232  *
233  * Sets the label of @toolbar to @label. This will clear any
234  * previously set value.
235  *
236  * Since: 2.2
237  */
238 void
239 hildon_edit_toolbar_set_label                   (HildonEditToolbar *toolbar,
240                                                  const gchar       *label)
241 {
242     HildonEditToolbarPrivate *priv;
243     g_return_if_fail (HILDON_IS_EDIT_TOOLBAR (toolbar));
244     priv = HILDON_EDIT_TOOLBAR_GET_PRIVATE (toolbar);
245     gtk_label_set_text (priv->label, label);
246 }
247
248 /**
249  * hildon_edit_toolbar_set_button_label:
250  * @toolbar: a #HildonEditToolbar
251  * @label: a new text for the label of the toolbar button
252  *
253  * Sets the label of the toolbar button to @label. This will clear any
254  * previously set value.
255  *
256  * Since: 2.2
257  */
258 void
259 hildon_edit_toolbar_set_button_label            (HildonEditToolbar *toolbar,
260                                                  const gchar       *label)
261 {
262     HildonEditToolbarPrivate *priv;
263     g_return_if_fail (HILDON_IS_EDIT_TOOLBAR (toolbar));
264     priv = HILDON_EDIT_TOOLBAR_GET_PRIVATE (toolbar);
265     gtk_button_set_label (priv->button, label);
266 }
267
268 /**
269  * hildon_edit_toolbar_new:
270  *
271  * Creates a new #HildonEditToolbar.
272  *
273  * Returns: a new #HildonEditToolbar
274  *
275  * Since: 2.2
276  */
277 GtkWidget *
278 hildon_edit_toolbar_new                         (void)
279 {
280     return g_object_new (HILDON_TYPE_EDIT_TOOLBAR, NULL);
281 }
282
283 /**
284  * hildon_edit_toolbar_new_with_text:
285  * @label: Text for the toolbar label.
286  * @button: Text for the toolbar button.
287  *
288  * Creates a new #HildonEditToolbar, with the toolbar label set to
289  * @label and the button label set to @button.
290  *
291  * Returns: a new #HildonEditToolbar
292  *
293  * Since: 2.2
294  */
295 GtkWidget *
296 hildon_edit_toolbar_new_with_text               (const gchar *label,
297                                                  const gchar *button)
298 {
299     GtkWidget *toolbar = g_object_new (HILDON_TYPE_EDIT_TOOLBAR, NULL);
300
301     hildon_edit_toolbar_set_label (HILDON_EDIT_TOOLBAR (toolbar), label);
302     hildon_edit_toolbar_set_button_label (HILDON_EDIT_TOOLBAR (toolbar), button);
303
304     return toolbar;
305 }