[gtk+/font-selection-new: 42/73] GtkFontSelection: Initial support for deprecated functions
- From: Alberto Ruiz <aruiz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/font-selection-new: 42/73] GtkFontSelection: Initial support for deprecated functions
- Date: Sat, 7 May 2011 18:15:45 +0000 (UTC)
commit 173668272eff39addc62f331ad51e51473f3d2f2
Author: Alberto Ruiz <aruiz gnome org>
Date: Wed Apr 27 00:37:29 2011 +0100
GtkFontSelection: Initial support for deprecated functions
gtk/gtkfontsel.c | 22 ++++++++++++++++++----
1 files changed, 18 insertions(+), 4 deletions(-)
---
diff --git a/gtk/gtkfontsel.c b/gtk/gtkfontsel.c
index e1bed16..e0f3572 100644
--- a/gtk/gtkfontsel.c
+++ b/gtk/gtkfontsel.c
@@ -100,6 +100,15 @@ struct _GtkFontSelectionPrivate
PangoFontFamily *family;
gboolean ignore_slider;
+
+ /*FIXME: Remove these widgets after deprecation removal */
+ GtkWidget *size_list;
+ GtkWidget *font_list;
+ GtkWidget *face_list;
+
+ GtkListStore *_size_model;
+ GtkListStore *_font_model;
+ GtkListStore *_face_model;
};
@@ -510,15 +519,20 @@ gtk_font_selection_init (GtkFontSelection *fontsel)
GtkWidget *alignment;
GtkWidget *preview_and_size;
GtkWidget *size_controls;
-#if 0
- GList *focus_chain = NULL;
- AtkObject *atk_obj;
-#endif
fontsel->priv = G_TYPE_INSTANCE_GET_PRIVATE (fontsel,
GTK_TYPE_FONT_SELECTION,
GtkFontSelectionPrivate);
+
priv = fontsel->priv;
+ priv->size_list = NULL;
+ priv->font_list = NULL;
+ priv->face_list = NULL;
+
+ priv->_size_model = NULL;
+ priv->_font_model = NULL;
+ priv->_face_model = NULL;
+
gtk_widget_push_composite_child ();
/* Creating fundamental widgets for the private struct */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]