[gimp/gtk3-port: 37/226] app: port GimpScalComboBox to GTK+ 3.0
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 37/226] app: port GimpScalComboBox to GTK+ 3.0
- Date: Thu, 2 Jan 2014 19:21:34 +0000 (UTC)
commit be007c7c418683ba819189769cdf9f88055e9045
Author: Michael Natterer <mitch gimp org>
Date: Tue Oct 19 12:21:11 2010 +0200
app: port GimpScalComboBox to GTK+ 3.0
app/display/gimpscalecombobox.c | 1 +
app/display/gimpscalecombobox.h | 14 +++++++-------
2 files changed, 8 insertions(+), 7 deletions(-)
---
diff --git a/app/display/gimpscalecombobox.c b/app/display/gimpscalecombobox.c
index 40ca369..c93ddf1 100644
--- a/app/display/gimpscalecombobox.c
+++ b/app/display/gimpscalecombobox.c
@@ -145,6 +145,7 @@ gimp_scale_combo_box_constructed (GObject *object)
entry = gtk_bin_get_child (GTK_BIN (combo_box));
g_object_set (entry,
+ "has-entry", TRUE,
"xalign", 1.0,
"width-chars", 7,
"truncate-multiline", TRUE,
diff --git a/app/display/gimpscalecombobox.h b/app/display/gimpscalecombobox.h
index 144deee..a4500d9 100644
--- a/app/display/gimpscalecombobox.h
+++ b/app/display/gimpscalecombobox.h
@@ -32,13 +32,6 @@
typedef struct _GimpScaleComboBoxClass GimpScaleComboBoxClass;
-struct _GimpScaleComboBoxClass
-{
- GtkComboBoxClass parent_instance;
-
- void (* entry_activated) (GimpScaleComboBox *combo_box);
-};
-
struct _GimpScaleComboBox
{
GtkComboBox parent_instance;
@@ -48,6 +41,13 @@ struct _GimpScaleComboBox
GList *mru;
};
+struct _GimpScaleComboBoxClass
+{
+ GtkComboBoxClass parent_instance;
+
+ void (* entry_activated) (GimpScaleComboBox *combo_box);
+};
+
GType gimp_scale_combo_box_get_type (void) G_GNUC_CONST;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]