Ardour  9.0-pre0-384-ga76afae0e9
gtkpaned.h
Go to the documentation of this file.
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 
20 /*
21  * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
22  * file for a list of people on the GTK+ Team. See the ChangeLog
23  * files for a list of changes. These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
25  */
26 
27 #ifndef __GTK_PANED_H__
28 #define __GTK_PANED_H__
29 
30 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
31 #error "Only <gtk/gtk.h> can be included directly."
32 #endif
33 
34 #include <gtk/gtkcontainer.h>
35 
36 G_BEGIN_DECLS
37 
38 #define GTK_TYPE_PANED (gtk_paned_get_type ())
39 #define GTK_PANED(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PANED, GtkPaned))
40 #define GTK_PANED_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PANED, GtkPanedClass))
41 #define GTK_IS_PANED(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PANED))
42 #define GTK_IS_PANED_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PANED))
43 #define GTK_PANED_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PANED, GtkPanedClass))
44 
45 
46 typedef struct _GtkPaned GtkPaned;
47 typedef struct _GtkPanedClass GtkPanedClass;
48 typedef struct _GtkPanedPrivate GtkPanedPrivate;
49 
50 struct _GtkPaned
51 {
53 
54  GtkWidget *GSEAL (child1);
55  GtkWidget *GSEAL (child2);
56 
57  GdkWindow *GSEAL (handle);
58  GdkGC *GSEAL (xor_gc);
59  GdkCursorType GSEAL (cursor_type);
60 
61  /*< private >*/
62  GdkRectangle GSEAL (handle_pos);
63 
64  gint GSEAL (child1_size);
65  gint GSEAL (last_allocation);
66  gint GSEAL (min_position);
67  gint GSEAL (max_position);
68 
69  guint GSEAL (position_set) : 1;
70  guint GSEAL (in_drag) : 1;
71  guint GSEAL (child1_shrink) : 1;
72  guint GSEAL (child1_resize) : 1;
73  guint GSEAL (child2_shrink) : 1;
74  guint GSEAL (child2_resize) : 1;
75  guint GSEAL (orientation) : 1;
76  guint GSEAL (in_recursion) : 1;
77  guint GSEAL (handle_prelit) : 1;
78 
79  GtkWidget *GSEAL (last_child1_focus);
80  GtkWidget *GSEAL (last_child2_focus);
82 
83  gint GSEAL (drag_pos);
84  gint GSEAL (original_position);
85 };
86 
88 {
90 
91  gboolean (* cycle_child_focus) (GtkPaned *paned,
92  gboolean reverse);
93  gboolean (* toggle_handle_focus) (GtkPaned *paned);
94  gboolean (* move_handle) (GtkPaned *paned,
95  GtkScrollType scroll);
96  gboolean (* cycle_handle_focus) (GtkPaned *paned,
97  gboolean reverse);
98  gboolean (* accept_position) (GtkPaned *paned);
99  gboolean (* cancel_position) (GtkPaned *paned);
100 
101  /* Padding for future expansion */
102  void (*_gtk_reserved1) (void);
103  void (*_gtk_reserved2) (void);
104  void (*_gtk_reserved3) (void);
105  void (*_gtk_reserved4) (void);
106 };
107 
108 
109 GType gtk_paned_get_type (void) G_GNUC_CONST;
111  GtkWidget *child);
113  GtkWidget *child);
115  GtkWidget *child,
116  gboolean resize,
117  gboolean shrink);
119  GtkWidget *child,
120  gboolean resize,
121  gboolean shrink);
122 
125  gint position);
126 
129 
131 
132 #ifndef GTK_DISABLE_DEPRECATED
133 /* Internal function */
135  gint allocation,
136  gint child1_req,
137  gint child2_req);
138 #define gtk_paned_gutter_size(p,s) (void) 0
139 #define gtk_paned_set_gutter_size(p,s) (void) 0
140 #endif /* GTK_DISABLE_DEPRECATED */
141 
142 G_END_DECLS
143 
144 #endif /* __GTK_PANED_H__ */
GdkCursorType
Definition: gdkcursor.h:44
GtkScrollType
Definition: gtkenums.h:359
GtkWidget * gtk_paned_get_child2(GtkPaned *paned)
GdkWindow * gtk_paned_get_handle_window(GtkPaned *paned)
struct _GtkPanedPrivate GtkPanedPrivate
Definition: gtkpaned.h:48
void gtk_paned_pack1(GtkPaned *paned, GtkWidget *child, gboolean resize, gboolean shrink)
GtkWidget * gtk_paned_get_child1(GtkPaned *paned)
void gtk_paned_add1(GtkPaned *paned, GtkWidget *child)
gint gtk_paned_get_position(GtkPaned *paned)
void gtk_paned_compute_position(GtkPaned *paned, gint allocation, gint child1_req, gint child2_req)
void gtk_paned_set_position(GtkPaned *paned, gint position)
void gtk_paned_pack2(GtkPaned *paned, GtkWidget *child, gboolean resize, gboolean shrink)
GType gtk_paned_get_type(void) G_GNUC_CONST
void gtk_paned_add2(GtkPaned *paned, GtkWidget *child)
Definition: gdkgc.h:190
void(* _gtk_reserved3)(void)
Definition: gtkpaned.h:104
gboolean(* cycle_child_focus)(GtkPaned *paned, gboolean reverse)
Definition: gtkpaned.h:91
gboolean(* toggle_handle_focus)(GtkPaned *paned)
Definition: gtkpaned.h:93
void(* _gtk_reserved4)(void)
Definition: gtkpaned.h:105
gboolean(* cancel_position)(GtkPaned *paned)
Definition: gtkpaned.h:99
void(* _gtk_reserved2)(void)
Definition: gtkpaned.h:103
gboolean(* cycle_handle_focus)(GtkPaned *paned, gboolean reverse)
Definition: gtkpaned.h:96
GtkContainerClass parent_class
Definition: gtkpaned.h:89
void(* _gtk_reserved1)(void)
Definition: gtkpaned.h:102
gboolean(* move_handle)(GtkPaned *paned, GtkScrollType scroll)
Definition: gtkpaned.h:94
gboolean(* accept_position)(GtkPaned *paned)
Definition: gtkpaned.h:98
GtkWidget * GSEAL(last_child2_focus)
GtkContainer container
Definition: gtkpaned.h:52
GdkGC * GSEAL(xor_gc)
gint GSEAL(last_allocation)
GtkPanedPrivate * GSEAL(priv)
gint GSEAL(drag_pos)
GdkCursorType GSEAL(cursor_type)
GdkRectangle GSEAL(handle_pos)
gint GSEAL(max_position)
guint GSEAL(position_set) guint GSEAL(in_drag) guint GSEAL(child1_shrink) guint GSEAL(child1_resize) guint GSEAL(child2_shrink) guint GSEAL(child2_resize) guint GSEAL(orientation) guint GSEAL(in_recursion) guint GSEAL(handle_prelit) GtkWidget * GSEAL(last_child1_focus)
GtkWidget * GSEAL(child1)
GtkWidget * GSEAL(child2)
GdkWindow * GSEAL(handle)
gint GSEAL(min_position)
gint GSEAL(child1_size)
gint GSEAL(original_position)