summaryrefslogtreecommitdiff
path: root/gtk/gtkfontsel.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-01-29 20:53:17 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-01-29 20:53:17 +0000
commit833b99fca20b8097d4fe0f9c3ac436d7bec0c548 (patch)
tree0a41e1a01ee553e269367662b98bdbdca812e31a /gtk/gtkfontsel.h
parent53ca71377d0a812b0aa81346f7001d680e5f135a (diff)
downloadgtk+-833b99fca20b8097d4fe0f9c3ac436d7bec0c548.tar.gz
Switch over to GtkTreeView from GtkCList. Remove the entries above the
Tue Jan 29 15:24:59 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkfontsel.[ch]: Switch over to GtkTreeView from GtkCList. Remove the entries above the font/face lists since they were a little confusing. (Not sure about this change, so the code is still there the entries are just hidden.) (#68890) * gtk/gtkfilesel.c: Switch over to GtkTreeView from GtkCList. Add mnemonics for fileops. Allow Control/Shift Tab to focus out. * gtk/gtkfilesel.c: Make fileop dialogs transient-for the fileselector. (#69336, patch from Melvin Hadasht) * gtk/gtkgamma.c (button_clicked_callback): Fix handling of gamma dialog a bit. (#69336, Matthias Clasen.)
Diffstat (limited to 'gtk/gtkfontsel.h')
-rw-r--r--gtk/gtkfontsel.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/gtk/gtkfontsel.h b/gtk/gtkfontsel.h
index e6a20cfe0f..1acadb3b99 100644
--- a/gtk/gtkfontsel.h
+++ b/gtk/gtkfontsel.h
@@ -66,22 +66,18 @@ struct _GtkFontSelection
{
GtkVBox parent_instance;
- GtkWidget *font_label;
GtkWidget *font_entry;
- GtkWidget *font_clist;
+ GtkWidget *family_list;
GtkWidget *font_style_entry;
- GtkWidget *font_style_clist;
+ GtkWidget *face_list;
GtkWidget *size_entry;
- GtkWidget *size_clist;
+ GtkWidget *size_list;
GtkWidget *pixels_button;
GtkWidget *points_button;
GtkWidget *filter_button;
GtkWidget *preview_entry;
- PangoFontFamily **families;
PangoFontFamily *family; /* Current family */
-
- PangoFontFace **faces;
PangoFontFace *face; /* Current face */
gint size;