1 /* PSPPIRE - a graphical user interface for PSPP.
2 Copyright (C) 2011, 2012, 2016 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
24 #define P_(STRING) STRING
26 /* GtkCellEditable interface. */
27 static void gtk_cell_editable_interface_init (GtkCellEditableIface *iface);
28 static void button_editable_editing_done (GtkCellEditable *cell_editable);
29 static void button_editable_remove_widget (GtkCellEditable *cell_editable);
30 static void button_editable_start_editing (GtkCellEditable *cell_editable,
33 G_DEFINE_TYPE_EXTENDED (PsppireButtonEditable,
34 psppire_button_editable,
37 G_IMPLEMENT_INTERFACE (
38 GTK_TYPE_CELL_EDITABLE,
39 gtk_cell_editable_interface_init));
49 psppire_button_editable_set_property (GObject *object,
54 PsppireButtonEditable *obj = PSPPIRE_BUTTON_EDITABLE (object);
60 obj->path = g_value_dup_string (value);
63 case PROP_EDITING_CANCELED:
67 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
73 psppire_button_editable_get_property (GObject *object,
78 PsppireButtonEditable *obj = PSPPIRE_BUTTON_EDITABLE (object);
83 g_value_set_string (value, obj->path);
86 case PROP_EDITING_CANCELED:
87 g_value_set_boolean (value, FALSE);
91 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
97 psppire_button_editable_finalize (GObject *gobject)
99 PsppireButtonEditable *obj = PSPPIRE_BUTTON_EDITABLE (gobject);
103 G_OBJECT_CLASS (psppire_button_editable_parent_class)->finalize (gobject);
107 psppire_button_editable_button_release (GtkWidget *widget,
108 GdkEventButton *event)
110 if (event->button == 1)
112 g_signal_emit_by_name (widget, "released", event, NULL);
119 psppire_button_editable_class_init (PsppireButtonEditableClass *class)
121 GObjectClass *gobject_class;
122 GtkWidgetClass *widget_class;
124 gobject_class = G_OBJECT_CLASS (class);
125 widget_class = GTK_WIDGET_CLASS (class);
127 gobject_class->set_property = psppire_button_editable_set_property;
128 gobject_class->get_property = psppire_button_editable_get_property;
129 gobject_class->finalize = psppire_button_editable_finalize;
131 widget_class->button_release_event = psppire_button_editable_button_release;
133 g_object_class_install_property (gobject_class,
135 g_param_spec_string ("path",
137 P_("The path to the row in the GtkTreeView, as a string"),
141 g_object_class_override_property (gobject_class,
142 PROP_EDITING_CANCELED,
147 psppire_button_editable_init (PsppireButtonEditable *obj)
149 obj->path = g_strdup ("");
152 PsppireButtonEditable *
153 psppire_button_editable_new (void)
155 return PSPPIRE_BUTTON_EDITABLE (g_object_new (PSPPIRE_TYPE_BUTTON_EDITABLE, NULL));
159 /* GtkCellEditable interface. */
162 gtk_cell_editable_interface_init (GtkCellEditableIface *iface)
164 g_return_if_fail (iface != NULL);
166 iface->editing_done = button_editable_editing_done;
167 iface->remove_widget = button_editable_remove_widget;
168 iface->start_editing = button_editable_start_editing;
172 button_editable_editing_done (GtkCellEditable *cell_editable)
177 button_editable_remove_widget (GtkCellEditable *cell_editable)
182 button_editable_start_editing (GtkCellEditable *cell_editable,