summaryrefslogtreecommitdiff
path: root/gtk/gtkpaned.h
diff options
context:
space:
mode:
authorTim Janik <timj@src.gnome.org>2008-06-20 11:03:25 +0000
committerTim Janik <timj@src.gnome.org>2008-06-20 11:03:25 +0000
commite2b7eafd44de914ca8179c84b4eedbfa7972fb2c (patch)
tree7a2138f0809a688c0388e5edc7bf63d4e16bdf14 /gtk/gtkpaned.h
parent00dab379dab83265e90f0bf729e6f2ba32ee42e4 (diff)
downloadgtk+-e2b7eafd44de914ca8179c84b4eedbfa7972fb2c.tar.gz
Seal GtkPaned.
svn path=/trunk/; revision=20550
Diffstat (limited to 'gtk/gtkpaned.h')
-rw-r--r--gtk/gtkpaned.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/gtk/gtkpaned.h b/gtk/gtkpaned.h
index 7ca40e2530..2a50001553 100644
--- a/gtk/gtkpaned.h
+++ b/gtk/gtkpaned.h
@@ -52,37 +52,37 @@ struct _GtkPaned
{
GtkContainer container;
- GtkWidget *child1;
- GtkWidget *child2;
+ GtkWidget *GSEAL (child1);
+ GtkWidget *GSEAL (child2);
- GdkWindow *handle;
- GdkGC *xor_gc;
- GdkCursorType cursor_type;
+ GdkWindow *GSEAL (handle);
+ GdkGC *GSEAL (xor_gc);
+ GdkCursorType GSEAL (cursor_type);
/*< private >*/
- GdkRectangle handle_pos;
-
- gint child1_size;
- gint last_allocation;
- gint min_position;
- gint max_position;
-
- guint position_set : 1;
- guint in_drag : 1;
- guint child1_shrink : 1;
- guint child1_resize : 1;
- guint child2_shrink : 1;
- guint child2_resize : 1;
- guint orientation : 1;
- guint in_recursion : 1;
- guint handle_prelit : 1;
-
- GtkWidget *last_child1_focus;
- GtkWidget *last_child2_focus;
- GtkPanedPrivate *priv;
-
- gint drag_pos;
- gint original_position;
+ GdkRectangle GSEAL (handle_pos);
+
+ gint GSEAL (child1_size);
+ gint GSEAL (last_allocation);
+ gint GSEAL (min_position);
+ gint GSEAL (max_position);
+
+ guint GSEAL (position_set : 1);
+ guint GSEAL (in_drag : 1);
+ guint GSEAL (child1_shrink : 1);
+ guint GSEAL (child1_resize : 1);
+ guint GSEAL (child2_shrink : 1);
+ guint GSEAL (child2_resize : 1);
+ guint GSEAL (orientation : 1);
+ guint GSEAL (in_recursion : 1);
+ guint GSEAL (handle_prelit : 1);
+
+ GtkWidget *GSEAL (last_child1_focus);
+ GtkWidget *GSEAL (last_child2_focus);
+ GtkPanedPrivate *GSEAL (priv);
+
+ gint GSEAL (drag_pos);
+ gint GSEAL (original_position);
};
struct _GtkPanedClass