diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-07-12 23:43:18 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-07-13 19:40:50 +0200 |
commit | 57d870ac5b48ed0d4c15eb046728431c84fc935a (patch) | |
tree | 98b0bd231257d3645118e2f75e5cc4e1390027f2 /gtk/gtkspinbutton.h | |
parent | d5c3fb5231cf1819d97335b3373a7c6207340192 (diff) | |
download | gtk+-57d870ac5b48ed0d4c15eb046728431c84fc935a.tar.gz |
gtkspinbutton: move public members to private structure
Diffstat (limited to 'gtk/gtkspinbutton.h')
-rw-r--r-- | gtk/gtkspinbutton.h | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/gtk/gtkspinbutton.h b/gtk/gtkspinbutton.h index 4f43a4a2a1..957682ff3f 100644 --- a/gtk/gtkspinbutton.h +++ b/gtk/gtkspinbutton.h @@ -69,6 +69,7 @@ typedef enum typedef struct _GtkSpinButton GtkSpinButton; +typedef struct _GtkSpinButtonPriv GtkSpinButtonPriv; typedef struct _GtkSpinButtonClass GtkSpinButtonClass; @@ -76,26 +77,8 @@ struct _GtkSpinButton { GtkEntry entry; - GtkAdjustment *GSEAL (adjustment); - - GdkWindow *GSEAL (panel); - - guint32 GSEAL (timer); - - gdouble GSEAL (climb_rate); - gdouble GSEAL (timer_step); - - GtkSpinButtonUpdatePolicy GSEAL (update_policy); - - guint GSEAL (in_child) : 2; - guint GSEAL (click_child) : 2; /* valid: GTK_ARROW_UP=0, GTK_ARROW_DOWN=1 or 2=NONE/BOTH */ - guint GSEAL (button) : 2; - guint GSEAL (need_timer) : 1; - guint GSEAL (timer_calls) : 3; - guint GSEAL (digits) : 10; - guint GSEAL (numeric) : 1; - guint GSEAL (wrap) : 1; - guint GSEAL (snap_to_ticks) : 1; + /* <private> */ + GtkSpinButtonPriv *priv; }; struct _GtkSpinButtonClass |