]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkpaned.h
filechooserbutton: Emit 'selection-changed' when changing the selection programmatically
[~andy/gtk] / gtk / gtkpaned.h
index bbcc58dc27609bf2a84e709c6af053701439b44e..55ec32c2506ef6469adf7c0dc01667f702af3b9a 100644 (file)
@@ -1,5 +1,4 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/* GTK - The GTK+ Toolkit
+/* GTK - The GIMP Toolkit
  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
  *
  * This library is free software; you can redistribute it and/or
@@ -13,9 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  */
 
-#if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
-#error "Only <gtk/gtk.h> can be included directly."
-#endif
-
 #ifndef __GTK_PANED_H__
 #define __GTK_PANED_H__
 
+#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
+#error "Only <gtk/gtk.h> can be included directly."
+#endif
+
 #include <gtk/gtkcontainer.h>
 
 G_BEGIN_DECLS
@@ -52,37 +49,8 @@ struct _GtkPaned
 {
   GtkContainer container;
 
-  GtkWidget *GSEAL (child1);
-  GtkWidget *GSEAL (child2);
-
-  GdkWindow *GSEAL (handle);
-  GdkGC *GSEAL (xor_gc);
-  GdkCursorType GSEAL (cursor_type);
-
   /*< private >*/
-  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);
+  GtkPanedPrivate *priv;
 };
 
 struct _GtkPanedClass
@@ -107,37 +75,30 @@ struct _GtkPanedClass
 };
 
 
-GType   gtk_paned_get_type        (void) G_GNUC_CONST;
-void    gtk_paned_add1            (GtkPaned  *paned,
-                                  GtkWidget *child);
-void    gtk_paned_add2            (GtkPaned  *paned,
-                                  GtkWidget *child);
-void    gtk_paned_pack1           (GtkPaned  *paned,
-                                  GtkWidget *child,
-                                  gboolean   resize,
-                                  gboolean   shrink);
-void    gtk_paned_pack2           (GtkPaned  *paned,
-                                  GtkWidget *child,
-                                  gboolean   resize,
-                                  gboolean   shrink);
-gint    gtk_paned_get_position    (GtkPaned  *paned);
-void    gtk_paned_set_position    (GtkPaned  *paned,
-                                  gint       position);
-
-GtkWidget *gtk_paned_get_child1   (GtkPaned  *paned);
-GtkWidget *gtk_paned_get_child2   (GtkPaned  *paned);
-
-/* Internal function */
-#if !defined (GTK_DISABLE_DEPRECATED) || defined (GTK_COMPILATION)
-void    gtk_paned_compute_position (GtkPaned  *paned,
-                                   gint       allocation,
-                                   gint       child1_req,
-                                   gint       child2_req);
-#endif /* !GTK_DISABLE_DEPRECATED || GTK_COMPILATION */
-#ifndef GTK_DISABLE_DEPRECATED
-#define        gtk_paned_gutter_size(p,s)              (void) 0
-#define        gtk_paned_set_gutter_size(p,s)          (void) 0
-#endif /* GTK_DISABLE_DEPRECATED */
+GType       gtk_paned_get_type     (void) G_GNUC_CONST;
+GtkWidget * gtk_paned_new          (GtkOrientation orientation);
+void        gtk_paned_add1         (GtkPaned       *paned,
+                                    GtkWidget      *child);
+void        gtk_paned_add2         (GtkPaned       *paned,
+                                    GtkWidget      *child);
+void        gtk_paned_pack1        (GtkPaned       *paned,
+                                    GtkWidget      *child,
+                                    gboolean        resize,
+                                    gboolean        shrink);
+void        gtk_paned_pack2        (GtkPaned       *paned,
+                                    GtkWidget      *child,
+                                    gboolean        resize,
+                                    gboolean        shrink);
+
+gint        gtk_paned_get_position (GtkPaned       *paned);
+void        gtk_paned_set_position (GtkPaned       *paned,
+                                    gint            position);
+
+GtkWidget * gtk_paned_get_child1   (GtkPaned       *paned);
+GtkWidget * gtk_paned_get_child2   (GtkPaned       *paned);
+
+GdkWindow * gtk_paned_get_handle_window (GtkPaned  *paned);
+
 
 G_END_DECLS