summaryrefslogtreecommitdiff
path: root/gtk/gtkhandlebox.h
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-06-15 19:40:52 +0200
committerJavier Jardón <jjardon@gnome.org>2010-07-13 19:40:48 +0200
commit997c7b96a8af58bd34323be537cfb9875694147c (patch)
tree1f5e3e78f377d23168e64287892d6309de03515d /gtk/gtkhandlebox.h
parent817d1f93cd2dd66d3a1b47b3864c8ac09c34bdb7 (diff)
downloadgtk+-997c7b96a8af58bd34323be537cfb9875694147c.tar.gz
gtkhandlebox: move public members to private structure
Diffstat (limited to 'gtk/gtkhandlebox.h')
-rw-r--r--gtk/gtkhandlebox.h22
1 files changed, 3 insertions, 19 deletions
diff --git a/gtk/gtkhandlebox.h b/gtk/gtkhandlebox.h
index b914e962d7..0240e362b1 100644
--- a/gtk/gtkhandlebox.h
+++ b/gtk/gtkhandlebox.h
@@ -49,32 +49,16 @@ G_BEGIN_DECLS
#define GTK_IS_HANDLE_BOX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_HANDLE_BOX))
#define GTK_HANDLE_BOX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_HANDLE_BOX, GtkHandleBoxClass))
-
typedef struct _GtkHandleBox GtkHandleBox;
+typedef struct _GtkHandleBoxPriv GtkHandleBoxPriv;
typedef struct _GtkHandleBoxClass GtkHandleBoxClass;
struct _GtkHandleBox
{
GtkBin bin;
- GdkWindow *GSEAL (bin_window); /* parent window for children */
- GdkWindow *GSEAL (float_window);
- GtkShadowType GSEAL (shadow_type);
- guint GSEAL (handle_position) : 2;
- guint GSEAL (float_window_mapped) : 1;
- guint GSEAL (child_detached) : 1;
- guint GSEAL (in_drag) : 1;
- guint GSEAL (shrink_on_detach) : 1;
-
- signed int GSEAL (snap_edge : 3); /* -1 == unset */
-
- /* Variables used during a drag
- */
- gint GSEAL (deskoff_x); /* Offset between root relative coords */
- gint GSEAL (deskoff_y); /* and deskrelative coords */
-
- GtkAllocation GSEAL (attach_allocation);
- GtkAllocation GSEAL (float_allocation);
+ /* <private> */
+ GtkHandleBoxPriv *priv;
};
struct _GtkHandleBoxClass