summaryrefslogtreecommitdiff
path: root/mate-dictionary/libgdict
diff options
context:
space:
mode:
authormonsta <[email protected]>2016-01-22 15:10:28 +0300
committermonsta <[email protected]>2016-01-22 15:10:28 +0300
commit3967123299f476612b6d546b0b31c9293b3d5f26 (patch)
treed7d0e771cdbd38702cfebf0aa37a7f28826a7b30 /mate-dictionary/libgdict
parent61fc4065c4cdcb49aeab3a38a9da95a043260f50 (diff)
downloadmate-utils-3967123299f476612b6d546b0b31c9293b3d5f26.tar.bz2
mate-utils-3967123299f476612b6d546b0b31c9293b3d5f26.tar.xz
[GTK+3] dictionary: (almost) fix deprecated usage of Gtk{H,V}Box
Diffstat (limited to 'mate-dictionary/libgdict')
-rw-r--r--mate-dictionary/libgdict/gdict-database-chooser.c7
-rw-r--r--mate-dictionary/libgdict/gdict-database-chooser.h4
-rw-r--r--mate-dictionary/libgdict/gdict-defbox.c15
-rw-r--r--mate-dictionary/libgdict/gdict-defbox.h4
-rw-r--r--mate-dictionary/libgdict/gdict-source-chooser.c7
-rw-r--r--mate-dictionary/libgdict/gdict-source-chooser.h4
-rw-r--r--mate-dictionary/libgdict/gdict-speller.c11
-rw-r--r--mate-dictionary/libgdict/gdict-speller.h4
-rw-r--r--mate-dictionary/libgdict/gdict-strategy-chooser.c7
-rw-r--r--mate-dictionary/libgdict/gdict-strategy-chooser.h4
10 files changed, 50 insertions, 17 deletions
diff --git a/mate-dictionary/libgdict/gdict-database-chooser.c b/mate-dictionary/libgdict/gdict-database-chooser.c
index aac4e41c..2a4eb73f 100644
--- a/mate-dictionary/libgdict/gdict-database-chooser.c
+++ b/mate-dictionary/libgdict/gdict-database-chooser.c
@@ -111,7 +111,7 @@ static guint db_chooser_signals[LAST_SIGNAL] = { 0 };
G_DEFINE_TYPE (GdictDatabaseChooser,
gdict_database_chooser,
- GTK_TYPE_VBOX);
+ GTK_TYPE_BOX);
static void
@@ -370,7 +370,11 @@ gdict_database_chooser_constructor (GType type,
gtk_container_add (GTK_CONTAINER (sw), priv->treeview);
gtk_widget_show (priv->treeview);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
+#else
hbox = gtk_hbox_new (FALSE, 0);
+#endif
priv->buttons_box = hbox;
priv->refresh_button = gtk_button_new ();
@@ -493,6 +497,7 @@ gdict_database_chooser_init (GdictDatabaseChooser *chooser)
{
GdictDatabaseChooserPrivate *priv;
+ gtk_orientable_set_orientation (GTK_ORIENTABLE (chooser), GTK_ORIENTATION_VERTICAL);
chooser->priv = priv = GDICT_DATABASE_CHOOSER_GET_PRIVATE (chooser);
priv->results = -1;
diff --git a/mate-dictionary/libgdict/gdict-database-chooser.h b/mate-dictionary/libgdict/gdict-database-chooser.h
index 809e2d6b..c1d7316f 100644
--- a/mate-dictionary/libgdict/gdict-database-chooser.h
+++ b/mate-dictionary/libgdict/gdict-database-chooser.h
@@ -44,7 +44,7 @@ typedef struct _GdictDatabaseChooserClass GdictDatabaseChooserClass;
struct _GdictDatabaseChooser
{
/*< private >*/
- GtkVBox parent_instance;
+ GtkBox parent_instance;
GdictDatabaseChooserPrivate *priv;
};
@@ -52,7 +52,7 @@ struct _GdictDatabaseChooser
struct _GdictDatabaseChooserClass
{
/*< private >*/
- GtkVBoxClass parent_class;
+ GtkBoxClass parent_class;
/*< public >*/
void (*database_activated) (GdictDatabaseChooser *chooser,
diff --git a/mate-dictionary/libgdict/gdict-defbox.c b/mate-dictionary/libgdict/gdict-defbox.c
index acef2f96..c85efdd2 100644
--- a/mate-dictionary/libgdict/gdict-defbox.c
+++ b/mate-dictionary/libgdict/gdict-defbox.c
@@ -133,7 +133,7 @@ static GdkColor default_link_color = { 0, 0, 0, 0xeeee };
static GdkColor default_visited_link_color = { 0, 0x5555, 0x1a1a, 0x8b8b };
-G_DEFINE_TYPE (GdictDefbox, gdict_defbox, GTK_TYPE_VBOX);
+G_DEFINE_TYPE (GdictDefbox, gdict_defbox, GTK_TYPE_BOX);
static Definition *
@@ -1303,10 +1303,18 @@ create_find_pane (GdictDefbox *defbox)
priv = defbox->priv;
+#if GTK_CHECK_VERSION (3, 0, 0)
+ find_pane = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
+#else
find_pane = gtk_hbox_new (FALSE, 0);
+#endif
gtk_container_set_border_width (GTK_CONTAINER (find_pane), 0);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ hbox1 = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
+#else
hbox1 = gtk_hbox_new (FALSE, 6);
+#endif
gtk_box_pack_start (GTK_BOX (find_pane), hbox1, TRUE, TRUE, 0);
gtk_widget_show (hbox1);
@@ -1320,7 +1328,11 @@ create_find_pane (GdictDefbox *defbox)
gtk_box_pack_start (GTK_BOX (hbox1), button, FALSE, FALSE, 0);
gtk_widget_show (button);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ hbox2 = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
+#else
hbox2 = gtk_hbox_new (FALSE, 12);
+#endif
gtk_box_pack_start (GTK_BOX (hbox1), hbox2, TRUE, TRUE, 0);
gtk_widget_show (hbox2);
@@ -1920,6 +1932,7 @@ gdict_defbox_init (GdictDefbox *defbox)
{
GdictDefboxPrivate *priv;
+ gtk_orientable_set_orientation (GTK_ORIENTABLE (defbox), GTK_ORIENTATION_VERTICAL);
gtk_box_set_spacing (GTK_BOX (defbox), 6);
priv = GDICT_DEFBOX_GET_PRIVATE (defbox);
diff --git a/mate-dictionary/libgdict/gdict-defbox.h b/mate-dictionary/libgdict/gdict-defbox.h
index afe9241f..b9f773e1 100644
--- a/mate-dictionary/libgdict/gdict-defbox.h
+++ b/mate-dictionary/libgdict/gdict-defbox.h
@@ -39,14 +39,14 @@ typedef struct _GdictDefboxPrivate GdictDefboxPrivate;
struct _GdictDefbox
{
/*< private >*/
- GtkVBox parent_instance;
+ GtkBox parent_instance;
GdictDefboxPrivate *priv;
};
struct _GdictDefboxClass
{
- GtkVBoxClass parent_class;
+ GtkBoxClass parent_class;
/* these are all RUN_ACTION signals for key bindings */
void (*show_find) (GdictDefbox *defbox);
diff --git a/mate-dictionary/libgdict/gdict-source-chooser.c b/mate-dictionary/libgdict/gdict-source-chooser.c
index 32379d47..4990ae2f 100644
--- a/mate-dictionary/libgdict/gdict-source-chooser.c
+++ b/mate-dictionary/libgdict/gdict-source-chooser.c
@@ -96,7 +96,7 @@ enum
static guint source_chooser_signals[LAST_SIGNAL] = { 0, };
-G_DEFINE_TYPE (GdictSourceChooser, gdict_source_chooser, GTK_TYPE_VBOX);
+G_DEFINE_TYPE (GdictSourceChooser, gdict_source_chooser, GTK_TYPE_BOX);
static void
gdict_source_chooser_finalize (GObject *gobject)
@@ -287,7 +287,11 @@ gdict_source_chooser_constructor (GType gtype,
gtk_container_add (GTK_CONTAINER (sw), priv->treeview);
gtk_widget_show (priv->treeview);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
+#else
hbox = gtk_hbox_new (FALSE, 6);
+#endif
priv->buttons_box = hbox;
priv->refresh_button = gtk_button_new ();
@@ -400,6 +404,7 @@ gdict_source_chooser_init (GdictSourceChooser *chooser)
{
GdictSourceChooserPrivate *priv;
+ gtk_orientable_set_orientation (GTK_ORIENTABLE (chooser), GTK_ORIENTATION_VERTICAL);
chooser->priv = priv = GDICT_SOURCE_CHOOSER_GET_PRIVATE (chooser);
priv->store = gtk_list_store_new (SOURCE_N_COLUMNS,
diff --git a/mate-dictionary/libgdict/gdict-source-chooser.h b/mate-dictionary/libgdict/gdict-source-chooser.h
index 291e0a0c..eebcff28 100644
--- a/mate-dictionary/libgdict/gdict-source-chooser.h
+++ b/mate-dictionary/libgdict/gdict-source-chooser.h
@@ -39,7 +39,7 @@ typedef struct _GdictSourceChooserClass GdictSourceChooserClass;
struct _GdictSourceChooser
{
/*< private >*/
- GtkVBox parent_instance;
+ GtkBox parent_instance;
GdictSourceChooserPrivate *priv;
};
@@ -47,7 +47,7 @@ struct _GdictSourceChooser
struct _GdictSourceChooserClass
{
/*< private >*/
- GtkVBoxClass parent_class;
+ GtkBoxClass parent_class;
/*< public >*/
void (*source_activated) (GdictSourceChooser *chooser,
diff --git a/mate-dictionary/libgdict/gdict-speller.c b/mate-dictionary/libgdict/gdict-speller.c
index fc16112a..9b151994 100644
--- a/mate-dictionary/libgdict/gdict-speller.c
+++ b/mate-dictionary/libgdict/gdict-speller.c
@@ -108,7 +108,7 @@ enum
static guint speller_signals[LAST_SIGNAL] = { 0 };
-G_DEFINE_TYPE (GdictSpeller, gdict_speller, GTK_TYPE_VBOX);
+G_DEFINE_TYPE (GdictSpeller, gdict_speller, GTK_TYPE_BOX);
static void
@@ -343,7 +343,11 @@ gdict_speller_constructor (GType type,
gtk_container_add (GTK_CONTAINER (sw), priv->treeview);
gtk_widget_show (priv->treeview);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
+#else
hbox = gtk_hbox_new (FALSE, 0);
+#endif
priv->clear_button = gtk_button_new ();
gtk_button_set_image (GTK_BUTTON (priv->clear_button),
@@ -416,6 +420,7 @@ gdict_speller_init (GdictSpeller *speller)
{
GdictSpellerPrivate *priv;
+ gtk_orientable_set_orientation (GTK_ORIENTABLE (speller), GTK_ORIENTATION_VERTICAL);
speller->priv = priv = GDICT_SPELLER_GET_PRIVATE (speller);
priv->database = NULL;
@@ -467,8 +472,8 @@ gdict_speller_new_with_context (GdictContext *context)
g_return_val_if_fail (GDICT_IS_CONTEXT (context), NULL);
return g_object_new (GDICT_TYPE_SPELLER,
- "context", context,
- NULL);
+ "context", context,
+ NULL);
}
/**
diff --git a/mate-dictionary/libgdict/gdict-speller.h b/mate-dictionary/libgdict/gdict-speller.h
index 91b79207..51c46aad 100644
--- a/mate-dictionary/libgdict/gdict-speller.h
+++ b/mate-dictionary/libgdict/gdict-speller.h
@@ -38,7 +38,7 @@ typedef struct _GdictSpellerClass GdictSpellerClass;
struct _GdictSpeller
{
- GtkVBox parent_instance;
+ GtkBox parent_instance;
/*< private >*/
GdictSpellerPrivate *priv;
@@ -46,7 +46,7 @@ struct _GdictSpeller
struct _GdictSpellerClass
{
- GtkVBoxClass parent_class;
+ GtkBoxClass parent_class;
void (*word_activated) (GdictSpeller *speller,
const gchar *word,
diff --git a/mate-dictionary/libgdict/gdict-strategy-chooser.c b/mate-dictionary/libgdict/gdict-strategy-chooser.c
index 98467a77..d78ef1b4 100644
--- a/mate-dictionary/libgdict/gdict-strategy-chooser.c
+++ b/mate-dictionary/libgdict/gdict-strategy-chooser.c
@@ -108,7 +108,7 @@ static guint db_chooser_signals[LAST_SIGNAL] = { 0 };
G_DEFINE_TYPE (GdictStrategyChooser,
gdict_strategy_chooser,
- GTK_TYPE_VBOX);
+ GTK_TYPE_BOX);
static void
@@ -354,7 +354,11 @@ gdict_strategy_chooser_constructor (GType type,
gtk_container_add (GTK_CONTAINER (sw), priv->treeview);
gtk_widget_show (priv->treeview);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
+#else
hbox = gtk_hbox_new (FALSE, 0);
+#endif
priv->refresh_button = gtk_button_new ();
gtk_button_set_image (GTK_BUTTON (priv->refresh_button),
@@ -441,6 +445,7 @@ gdict_strategy_chooser_init (GdictStrategyChooser *chooser)
{
GdictStrategyChooserPrivate *priv;
+ gtk_orientable_set_orientation (GTK_ORIENTABLE (chooser), GTK_ORIENTATION_VERTICAL);
chooser->priv = priv = GDICT_STRATEGY_CHOOSER_GET_PRIVATE (chooser);
priv->results = -1;
diff --git a/mate-dictionary/libgdict/gdict-strategy-chooser.h b/mate-dictionary/libgdict/gdict-strategy-chooser.h
index 64df74f3..522a9b44 100644
--- a/mate-dictionary/libgdict/gdict-strategy-chooser.h
+++ b/mate-dictionary/libgdict/gdict-strategy-chooser.h
@@ -43,14 +43,14 @@ typedef struct _GdictStrategyChooserClass GdictStrategyChooserClass;
struct _GdictStrategyChooser
{
- GtkVBox parent_instance;
+ GtkBox parent_instance;
GdictStrategyChooserPrivate *priv;
};
struct _GdictStrategyChooserClass
{
- GtkVBoxClass parent_class;
+ GtkBoxClass parent_class;
void (*strategy_activated) (GdictStrategyChooser *chooser,
const gchar *name,