1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2007 Free Software Foundation
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include <gtk/gtksignal.h>
23 #include "psppire-buttonbox.h"
24 #include "psppire-dialog.h"
30 #define _(msgid) gettext (msgid)
31 #define N_(msgid) msgid
33 GType psppire_button_flags_get_type (void);
36 static void psppire_button_box_class_init (PsppireButtonBoxClass *);
37 static void psppire_button_box_init (PsppireButtonBox *);
41 psppire_button_box_get_type (void)
43 static GType button_box_type = 0;
47 static const GTypeInfo button_box_info =
49 sizeof (PsppireButtonBoxClass),
51 NULL, /* base_finalize */
52 (GClassInitFunc) psppire_button_box_class_init,
53 NULL, /* class_finalize */
54 NULL, /* class_data */
55 sizeof (PsppireButtonBox),
57 (GInstanceInitFunc) psppire_button_box_init,
60 button_box_type = g_type_register_static (GTK_TYPE_BUTTON_BOX,
61 "PsppireButtonBox", &button_box_info, G_TYPE_FLAG_ABSTRACT);
64 return button_box_type;
72 psppire_buttonbox_set_property (GObject *object,
79 PsppireButtonBox *bb = PSPPIRE_BUTTONBOX (object);
80 if ( prop_id != PROP_BUTTONS)
82 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
86 flags = g_value_get_flags (value);
88 for (i = 0 ; i < n_PsppireButtonBoxButtons ; ++i )
89 g_object_set (bb->button[i], "visible", 0x01 & (flags >> i) , NULL);
93 psppire_buttonbox_get_property (GObject *object,
101 PsppireButtonBox *bb = PSPPIRE_BUTTONBOX (object);
103 if (PROP_BUTTONS != prop_id)
105 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
109 for (i = 0 ; i < n_PsppireButtonBoxButtons ; ++i )
112 g_object_get (bb->button[i], "visible", &visibility, NULL);
115 flags |= (0x01 << i);
118 g_value_set_flags (value, flags);
124 PSPPIRE_BUTTON_OK_MASK = (1 << PSPPIRE_BUTTON_OK),
125 PSPPIRE_BUTTON_GOTO_MASK = (1 << PSPPIRE_BUTTON_GOTO),
126 PSPPIRE_BUTTON_CONTINUE_MASK = (1 << PSPPIRE_BUTTON_CONTINUE),
127 PSPPIRE_BUTTON_CANCEL_MASK = (1 << PSPPIRE_BUTTON_CANCEL),
128 PSPPIRE_BUTTON_HELP_MASK = (1 << PSPPIRE_BUTTON_HELP),
129 PSPPIRE_BUTTON_RESET_MASK = (1 << PSPPIRE_BUTTON_RESET),
130 PSPPIRE_BUTTON_PASTE_MASK = (1 << PSPPIRE_BUTTON_PASTE)
133 static GParamSpec *button_flags;
136 psppire_button_box_class_init (PsppireButtonBoxClass *class)
138 GObjectClass *object_class = G_OBJECT_CLASS (class);
140 object_class->set_property = psppire_buttonbox_set_property;
141 object_class->get_property = psppire_buttonbox_get_property;
144 g_param_spec_flags ("buttons",
146 "The mask that decides what buttons appear in the button box",
147 PSPPIRE_TYPE_BUTTON_MASK,
148 PSPPIRE_BUTTON_OK_MASK |
149 PSPPIRE_BUTTON_CANCEL_MASK |
150 PSPPIRE_BUTTON_RESET_MASK |
151 PSPPIRE_BUTTON_HELP_MASK |
152 PSPPIRE_BUTTON_PASTE_MASK,
156 g_object_class_install_property (object_class,
163 close_and_respond (GtkWidget *w, gint response)
165 PsppireDialog *dialog;
167 GtkWidget *toplevel = gtk_widget_get_toplevel (w);
169 /* If we're not in a psppire dialog (for example when in glade)
171 if ( ! PSPPIRE_IS_DIALOG (toplevel))
174 dialog = PSPPIRE_DIALOG (toplevel);
176 dialog->response = response;
178 psppire_dialog_close (dialog);
183 close_dialog (GtkWidget *w, gpointer data)
185 close_and_respond (w, GTK_RESPONSE_CLOSE);
189 continue_button_clicked (GtkWidget *w, gpointer data)
191 close_and_respond (w, PSPPIRE_RESPONSE_CONTINUE);
196 ok_button_clicked (GtkWidget *w, gpointer data)
198 close_and_respond (w, GTK_RESPONSE_OK);
203 paste_button_clicked (GtkWidget *w, gpointer data)
205 close_and_respond (w, PSPPIRE_RESPONSE_PASTE);
209 goto_button_clicked (GtkWidget *w, gpointer data)
211 close_and_respond (w, PSPPIRE_RESPONSE_GOTO);
216 refresh_clicked (GtkWidget *w, gpointer data)
218 GtkWidget *toplevel = gtk_widget_get_toplevel (w);
219 PsppireDialog *dialog;
221 if ( ! PSPPIRE_IS_DIALOG (toplevel))
224 dialog = PSPPIRE_DIALOG (toplevel);
226 psppire_dialog_reload (dialog);
232 on_validity_change (GtkWidget *toplevel, gboolean valid, gpointer data)
234 PsppireButtonBox *bb = data;
236 /* Set the sensitivity of all the 'executive order' buttons */
237 gtk_widget_set_sensitive (GTK_WIDGET (bb->button[PSPPIRE_BUTTON_OK]), valid);
238 gtk_widget_set_sensitive (GTK_WIDGET (bb->button[PSPPIRE_BUTTON_PASTE]), valid);
239 gtk_widget_set_sensitive (GTK_WIDGET (bb->button[PSPPIRE_BUTTON_GOTO]), valid);
240 gtk_widget_set_sensitive (GTK_WIDGET (bb->button[PSPPIRE_BUTTON_CONTINUE]), valid);
244 on_realize (GtkWidget *buttonbox, gpointer data)
246 GtkWidget *toplevel = gtk_widget_get_toplevel (buttonbox);
248 if ( PSPPIRE_IS_DIALOG (toplevel))
250 g_signal_connect (toplevel, "validity-changed",
251 G_CALLBACK (on_validity_change), buttonbox);
256 psppire_button_box_init (PsppireButtonBox *bb)
259 bb->button[PSPPIRE_BUTTON_OK] = gtk_button_new_from_stock (GTK_STOCK_OK);
260 psppire_box_pack_start_defaults (GTK_BOX (bb), bb->button[PSPPIRE_BUTTON_OK]);
261 g_signal_connect (bb->button[PSPPIRE_BUTTON_OK], "clicked",
262 G_CALLBACK (ok_button_clicked), NULL);
263 g_object_set (bb->button[PSPPIRE_BUTTON_OK], "no-show-all", TRUE, NULL);
266 bb->button[PSPPIRE_BUTTON_GOTO] =
267 gtk_button_new_from_stock (GTK_STOCK_JUMP_TO);
268 psppire_box_pack_start_defaults (GTK_BOX (bb), bb->button[PSPPIRE_BUTTON_GOTO]);
269 g_signal_connect (bb->button[PSPPIRE_BUTTON_GOTO], "clicked",
270 G_CALLBACK (goto_button_clicked), NULL);
271 g_object_set (bb->button[PSPPIRE_BUTTON_GOTO], "no-show-all", TRUE, NULL);
274 bb->button[PSPPIRE_BUTTON_CONTINUE] =
275 gtk_button_new_with_mnemonic (_("Continue"));
277 GTK_WIDGET_SET_FLAGS (bb->button[PSPPIRE_BUTTON_CONTINUE],
280 g_signal_connect (bb->button[PSPPIRE_BUTTON_CONTINUE], "realize",
281 G_CALLBACK (gtk_widget_grab_default), NULL);
283 psppire_box_pack_start_defaults (GTK_BOX (bb),
284 bb->button[PSPPIRE_BUTTON_CONTINUE]);
285 g_signal_connect (bb->button[PSPPIRE_BUTTON_CONTINUE], "clicked",
286 G_CALLBACK (continue_button_clicked), NULL);
288 g_object_set (bb->button[PSPPIRE_BUTTON_CONTINUE],
289 "no-show-all", TRUE, NULL);
293 bb->button[PSPPIRE_BUTTON_PASTE] = gtk_button_new_from_stock (GTK_STOCK_PASTE);
294 g_signal_connect (bb->button[PSPPIRE_BUTTON_PASTE], "clicked",
295 G_CALLBACK (paste_button_clicked), NULL);
296 psppire_box_pack_start_defaults (GTK_BOX (bb), bb->button[PSPPIRE_BUTTON_PASTE]);
297 g_object_set (bb->button[PSPPIRE_BUTTON_PASTE], "no-show-all", TRUE, NULL);
299 bb->button[PSPPIRE_BUTTON_CANCEL] = gtk_button_new_from_stock (GTK_STOCK_CANCEL);
300 g_signal_connect (bb->button[PSPPIRE_BUTTON_CANCEL], "clicked",
301 G_CALLBACK (close_dialog), NULL);
302 psppire_box_pack_start_defaults (GTK_BOX (bb), bb->button[PSPPIRE_BUTTON_CANCEL]);
303 g_object_set (bb->button[PSPPIRE_BUTTON_CANCEL], "no-show-all", TRUE, NULL);
306 bb->button[PSPPIRE_BUTTON_RESET] = gtk_button_new_from_stock ("pspp-stock-reset");
307 g_signal_connect (bb->button[PSPPIRE_BUTTON_RESET], "clicked",
308 G_CALLBACK (refresh_clicked), NULL);
309 psppire_box_pack_start_defaults (GTK_BOX (bb), bb->button[PSPPIRE_BUTTON_RESET]);
310 g_object_set (bb->button[PSPPIRE_BUTTON_RESET], "no-show-all", TRUE, NULL);
313 bb->button[PSPPIRE_BUTTON_HELP] = gtk_button_new_from_stock (GTK_STOCK_HELP);
314 psppire_box_pack_start_defaults (GTK_BOX (bb), bb->button[PSPPIRE_BUTTON_HELP]);
315 g_object_set (bb->button[PSPPIRE_BUTTON_HELP], "no-show-all", TRUE, NULL);
318 /* Set the default visibilities */
320 GValue value = { 0 };
323 g_value_init (&value, button_flags->value_type);
324 g_param_value_set_default(button_flags, &value);
327 flags = g_value_get_flags (&value);
329 for (i = 0 ; i < n_PsppireButtonBoxButtons ; ++i )
330 g_object_set (bb->button[i], "visible", 0x01 & (flags >> i) , NULL);
332 g_value_unset (&value);
336 g_signal_connect (bb, "realize", G_CALLBACK (on_realize), NULL);
340 /* This function is lifted verbatim from the Gtk2.10.6 library */
343 _psppire_button_box_child_requisition (GtkWidget *widget,
345 int *nvis_secondaries,
356 GtkRequisition child_requisition;
364 gint child_min_width;
365 gint child_min_height;
369 g_return_if_fail (GTK_IS_BUTTON_BOX (widget));
371 bbox = GTK_BUTTON_BOX (widget);
373 gtk_widget_style_get (widget,
374 "child-min-width", &width_default,
375 "child-min-height", &height_default,
376 "child-internal-pad-x", &ipad_x_default,
377 "child-internal-pad-y", &ipad_y_default,
380 child_min_width = bbox->child_min_width != GTK_BUTTONBOX_DEFAULT
381 ? bbox->child_min_width : width_default;
382 child_min_height = bbox->child_min_height !=GTK_BUTTONBOX_DEFAULT
383 ? bbox->child_min_height : height_default;
384 ipad_x = bbox->child_ipad_x != GTK_BUTTONBOX_DEFAULT
385 ? bbox->child_ipad_x : ipad_x_default;
386 ipad_y = bbox->child_ipad_y != GTK_BUTTONBOX_DEFAULT
387 ? bbox->child_ipad_y : ipad_y_default;
391 children = GTK_BOX(bbox)->children;
392 needed_width = child_min_width;
393 needed_height = child_min_height;
399 child = children->data;
400 children = children->next;
402 if (GTK_WIDGET_VISIBLE (child->widget))
405 gtk_widget_size_request (child->widget, &child_requisition);
407 if (child_requisition.width + ipad_w > needed_width)
408 needed_width = child_requisition.width + ipad_w;
409 if (child_requisition.height + ipad_h > needed_height)
410 needed_height = child_requisition.height + ipad_h;
411 if (child->is_secondary)
417 *nvis_children = nchildren;
418 if (nvis_secondaries)
419 *nvis_secondaries = nsecondaries;
421 *width = needed_width;
423 *height = needed_height;
428 psppire_button_flags_get_type (void)
430 static GType ftype = 0;
433 static const GFlagsValue values[] =
435 { PSPPIRE_BUTTON_OK_MASK, "PSPPIRE_BUTTON_OK_MASK", N_("OK") },
436 { PSPPIRE_BUTTON_GOTO_MASK, "PSPPIRE_BUTTON_GOTO_MASK", N_("Go To") },
437 { PSPPIRE_BUTTON_CONTINUE_MASK,"PSPPIRE_BUTTON_CONTINUE_MASK", N_("Continue") },
438 { PSPPIRE_BUTTON_CANCEL_MASK, "PSPPIRE_BUTTON_CANCEL_MASK", N_("Cancel") },
439 { PSPPIRE_BUTTON_HELP_MASK, "PSPPIRE_BUTTON_HELP_MASK", N_("Help") },
440 { PSPPIRE_BUTTON_RESET_MASK, "PSPPIRE_BUTTON_RESET_MASK", N_("Reset") },
441 { PSPPIRE_BUTTON_PASTE_MASK, "PSPPIRE_BUTTON_PASTE_MASK", N_("Paste") },
445 ftype = g_flags_register_static
446 (g_intern_static_string ("PsppireButtonFlags"), values);