]> Pileus Git - ~andy/gtk/blob - gtk/gtkscrolledwindow.h
Switch to "guint GSEAL (foo) : width;" when packing fields in guints.
[~andy/gtk] / gtk / gtkscrolledwindow.h
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 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28 #error "Only <gtk/gtk.h> can be included directly."
29 #endif
30
31 #ifndef __GTK_SCROLLED_WINDOW_H__
32 #define __GTK_SCROLLED_WINDOW_H__
33
34
35 #include <gdk/gdk.h>
36 #include <gtk/gtkhscrollbar.h>
37 #include <gtk/gtkvscrollbar.h>
38 #include <gtk/gtkviewport.h>
39
40
41 G_BEGIN_DECLS
42
43
44 #define GTK_TYPE_SCROLLED_WINDOW            (gtk_scrolled_window_get_type ())
45 #define GTK_SCROLLED_WINDOW(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SCROLLED_WINDOW, GtkScrolledWindow))
46 #define GTK_SCROLLED_WINDOW_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_SCROLLED_WINDOW, GtkScrolledWindowClass))
47 #define GTK_IS_SCROLLED_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SCROLLED_WINDOW))
48 #define GTK_IS_SCROLLED_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SCROLLED_WINDOW))
49 #define GTK_SCROLLED_WINDOW_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SCROLLED_WINDOW, GtkScrolledWindowClass))
50
51
52
53 typedef struct _GtkScrolledWindow       GtkScrolledWindow;
54 typedef struct _GtkScrolledWindowClass  GtkScrolledWindowClass;
55
56 struct _GtkScrolledWindow
57 {
58   GtkBin container;
59
60   /*< public >*/
61   GtkWidget *GSEAL (hscrollbar);
62   GtkWidget *GSEAL (vscrollbar);
63
64   /*< private >*/
65   guint GSEAL (hscrollbar_policy)      : 2;
66   guint GSEAL (vscrollbar_policy)      : 2;
67   guint GSEAL (hscrollbar_visible)     : 1;
68   guint GSEAL (vscrollbar_visible)     : 1;
69   guint GSEAL (window_placement)       : 2;
70   guint GSEAL (focus_out)              : 1;     /* Flag used by ::move-focus-out implementation */
71
72   guint16 GSEAL (shadow_type);
73 };
74
75 struct _GtkScrolledWindowClass
76 {
77   GtkBinClass parent_class;
78
79   gint scrollbar_spacing;
80
81   /* Action signals for keybindings. Do not connect to these signals
82    */
83
84   /* Unfortunately, GtkScrollType is deficient in that there is
85    * no horizontal/vertical variants for GTK_SCROLL_START/END,
86    * so we have to add an additional boolean flag.
87    */
88   gboolean (*scroll_child) (GtkScrolledWindow *scrolled_window,
89                             GtkScrollType      scroll,
90                             gboolean           horizontal);
91
92   void (* move_focus_out) (GtkScrolledWindow *scrolled_window,
93                            GtkDirectionType   direction);
94
95   /* Padding for future expansion */
96   void (*_gtk_reserved1) (void);
97   void (*_gtk_reserved2) (void);
98   void (*_gtk_reserved3) (void);
99   void (*_gtk_reserved4) (void);
100 };
101
102
103 GType          gtk_scrolled_window_get_type          (void) G_GNUC_CONST;
104 GtkWidget*     gtk_scrolled_window_new               (GtkAdjustment     *hadjustment,
105                                                       GtkAdjustment     *vadjustment);
106 void           gtk_scrolled_window_set_hadjustment   (GtkScrolledWindow *scrolled_window,
107                                                       GtkAdjustment     *hadjustment);
108 void           gtk_scrolled_window_set_vadjustment   (GtkScrolledWindow *scrolled_window,
109                                                       GtkAdjustment     *vadjustment);
110 GtkAdjustment* gtk_scrolled_window_get_hadjustment   (GtkScrolledWindow *scrolled_window);
111 GtkAdjustment* gtk_scrolled_window_get_vadjustment   (GtkScrolledWindow *scrolled_window);
112 GtkWidget*     gtk_scrolled_window_get_hscrollbar    (GtkScrolledWindow *scrolled_window);
113 GtkWidget*     gtk_scrolled_window_get_vscrollbar    (GtkScrolledWindow *scrolled_window);
114 void           gtk_scrolled_window_set_policy        (GtkScrolledWindow *scrolled_window,
115                                                       GtkPolicyType      hscrollbar_policy,
116                                                       GtkPolicyType      vscrollbar_policy);
117 void           gtk_scrolled_window_get_policy        (GtkScrolledWindow *scrolled_window,
118                                                       GtkPolicyType     *hscrollbar_policy,
119                                                       GtkPolicyType     *vscrollbar_policy);
120 void           gtk_scrolled_window_set_placement     (GtkScrolledWindow *scrolled_window,
121                                                       GtkCornerType      window_placement);
122 void           gtk_scrolled_window_unset_placement   (GtkScrolledWindow *scrolled_window);
123
124 GtkCornerType  gtk_scrolled_window_get_placement     (GtkScrolledWindow *scrolled_window);
125 void           gtk_scrolled_window_set_shadow_type   (GtkScrolledWindow *scrolled_window,
126                                                       GtkShadowType      type);
127 GtkShadowType  gtk_scrolled_window_get_shadow_type   (GtkScrolledWindow *scrolled_window);
128 void           gtk_scrolled_window_add_with_viewport (GtkScrolledWindow *scrolled_window,
129                                                       GtkWidget         *child);
130
131 gint _gtk_scrolled_window_get_scrollbar_spacing (GtkScrolledWindow *scrolled_window);
132
133
134 G_END_DECLS
135
136
137 #endif /* __GTK_SCROLLED_WINDOW_H__ */