1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2011, 2012 Free Software Foundation, Inc.
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/>. */
19 #include "ui/gui/psppire-button-editable.h"
22 #define _(msgid) gettext (msgid)
23 #define N_(msgid) msgid
25 /* GtkCellEditable interface. */
26 static void gtk_cell_editable_interface_init (GtkCellEditableIface *iface);
27 static void button_editable_editing_done (GtkCellEditable *cell_editable);
28 static void button_editable_remove_widget (GtkCellEditable *cell_editable);
29 static void button_editable_start_editing (GtkCellEditable *cell_editable,
32 G_DEFINE_TYPE_EXTENDED (PsppireButtonEditable,
33 psppire_button_editable,
36 G_IMPLEMENT_INTERFACE (
37 GTK_TYPE_CELL_EDITABLE,
38 gtk_cell_editable_interface_init));
48 psppire_button_editable_set_property (GObject *object,
53 PsppireButtonEditable *obj = PSPPIRE_BUTTON_EDITABLE (object);
59 obj->path = g_value_dup_string (value);
62 case PROP_EDITING_CANCELED:
66 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
72 psppire_button_editable_get_property (GObject *object,
77 PsppireButtonEditable *obj = PSPPIRE_BUTTON_EDITABLE (object);
82 g_value_set_string (value, obj->path);
85 case PROP_EDITING_CANCELED:
86 g_value_set_boolean (value, FALSE);
90 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
96 psppire_button_editable_finalize (GObject *gobject)
98 PsppireButtonEditable *obj = PSPPIRE_BUTTON_EDITABLE (gobject);
102 G_OBJECT_CLASS (psppire_button_editable_parent_class)->finalize (gobject);
106 psppire_button_editable_button_release (GtkWidget *widget,
107 GdkEventButton *event)
109 if (event->button == 1)
111 g_signal_emit_by_name (widget, "released", event, NULL);
118 psppire_button_editable_class_init (PsppireButtonEditableClass *class)
120 GObjectClass *gobject_class;
121 GtkWidgetClass *widget_class;
123 gobject_class = G_OBJECT_CLASS (class);
124 widget_class = GTK_WIDGET_CLASS (class);
126 gobject_class->set_property = psppire_button_editable_set_property;
127 gobject_class->get_property = psppire_button_editable_get_property;
128 gobject_class->finalize = psppire_button_editable_finalize;
130 widget_class->button_release_event = psppire_button_editable_button_release;
132 g_object_class_install_property (gobject_class,
134 g_param_spec_string ("path",
136 _("The path to the row in the GtkTreeView, as a string"),
140 g_object_class_override_property (gobject_class,
141 PROP_EDITING_CANCELED,
146 psppire_button_editable_init (PsppireButtonEditable *obj)
148 obj->path = g_strdup ("");
151 PsppireButtonEditable *
152 psppire_button_editable_new (void)
154 return PSPPIRE_BUTTON_EDITABLE (g_object_new (PSPPIRE_TYPE_BUTTON_EDITABLE, NULL));
158 /* GtkCellEditable interface. */
161 gtk_cell_editable_interface_init (GtkCellEditableIface *iface)
163 g_return_if_fail (iface != NULL);
165 iface->editing_done = button_editable_editing_done;
166 iface->remove_widget = button_editable_remove_widget;
167 iface->start_editing = button_editable_start_editing;
171 button_editable_editing_done (GtkCellEditable *cell_editable)
176 button_editable_remove_widget (GtkCellEditable *cell_editable)
181 button_editable_start_editing (GtkCellEditable *cell_editable,