]> Pileus Git - ~andy/gtk/blob - gtk/gtkscrolledwindow.h
Clean up more includes
[~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_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 <gtk/gtkviewport.h>
36
37
38 G_BEGIN_DECLS
39
40
41 #define GTK_TYPE_SCROLLED_WINDOW            (gtk_scrolled_window_get_type ())
42 #define GTK_SCROLLED_WINDOW(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SCROLLED_WINDOW, GtkScrolledWindow))
43 #define GTK_SCROLLED_WINDOW_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_SCROLLED_WINDOW, GtkScrolledWindowClass))
44 #define GTK_IS_SCROLLED_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SCROLLED_WINDOW))
45 #define GTK_IS_SCROLLED_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SCROLLED_WINDOW))
46 #define GTK_SCROLLED_WINDOW_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SCROLLED_WINDOW, GtkScrolledWindowClass))
47
48
49 typedef struct _GtkScrolledWindow              GtkScrolledWindow;
50 typedef struct _GtkScrolledWindowPrivate       GtkScrolledWindowPrivate;
51 typedef struct _GtkScrolledWindowClass         GtkScrolledWindowClass;
52
53 struct _GtkScrolledWindow
54 {
55   GtkBin container;
56
57   GtkScrolledWindowPrivate *priv;
58 };
59
60 struct _GtkScrolledWindowClass
61 {
62   GtkBinClass parent_class;
63
64   gint scrollbar_spacing;
65
66   /* Action signals for keybindings. Do not connect to these signals
67    */
68
69   /* Unfortunately, GtkScrollType is deficient in that there is
70    * no horizontal/vertical variants for GTK_SCROLL_START/END,
71    * so we have to add an additional boolean flag.
72    */
73   gboolean (*scroll_child) (GtkScrolledWindow *scrolled_window,
74                             GtkScrollType      scroll,
75                             gboolean           horizontal);
76
77   void (* move_focus_out) (GtkScrolledWindow *scrolled_window,
78                            GtkDirectionType   direction);
79
80   /* Padding for future expansion */
81   void (*_gtk_reserved1) (void);
82   void (*_gtk_reserved2) (void);
83   void (*_gtk_reserved3) (void);
84   void (*_gtk_reserved4) (void);
85 };
86
87
88 GType          gtk_scrolled_window_get_type          (void) G_GNUC_CONST;
89 GtkWidget*     gtk_scrolled_window_new               (GtkAdjustment     *hadjustment,
90                                                       GtkAdjustment     *vadjustment);
91 void           gtk_scrolled_window_set_hadjustment   (GtkScrolledWindow *scrolled_window,
92                                                       GtkAdjustment     *hadjustment);
93 void           gtk_scrolled_window_set_vadjustment   (GtkScrolledWindow *scrolled_window,
94                                                       GtkAdjustment     *vadjustment);
95 GtkAdjustment* gtk_scrolled_window_get_hadjustment   (GtkScrolledWindow *scrolled_window);
96 GtkAdjustment* gtk_scrolled_window_get_vadjustment   (GtkScrolledWindow *scrolled_window);
97 GtkWidget*     gtk_scrolled_window_get_hscrollbar    (GtkScrolledWindow *scrolled_window);
98 GtkWidget*     gtk_scrolled_window_get_vscrollbar    (GtkScrolledWindow *scrolled_window);
99 void           gtk_scrolled_window_set_policy        (GtkScrolledWindow *scrolled_window,
100                                                       GtkPolicyType      hscrollbar_policy,
101                                                       GtkPolicyType      vscrollbar_policy);
102 void           gtk_scrolled_window_get_policy        (GtkScrolledWindow *scrolled_window,
103                                                       GtkPolicyType     *hscrollbar_policy,
104                                                       GtkPolicyType     *vscrollbar_policy);
105 void           gtk_scrolled_window_set_placement     (GtkScrolledWindow *scrolled_window,
106                                                       GtkCornerType      window_placement);
107 void           gtk_scrolled_window_unset_placement   (GtkScrolledWindow *scrolled_window);
108
109 GtkCornerType  gtk_scrolled_window_get_placement     (GtkScrolledWindow *scrolled_window);
110 void           gtk_scrolled_window_set_shadow_type   (GtkScrolledWindow *scrolled_window,
111                                                       GtkShadowType      type);
112 GtkShadowType  gtk_scrolled_window_get_shadow_type   (GtkScrolledWindow *scrolled_window);
113 void           gtk_scrolled_window_add_with_viewport (GtkScrolledWindow *scrolled_window,
114                                                       GtkWidget         *child);
115
116 gint           gtk_scrolled_window_get_min_content_width  (GtkScrolledWindow *scrolled_window);
117 void           gtk_scrolled_window_set_min_content_width  (GtkScrolledWindow *scrolled_window,
118                                                            gint               width);
119 gint           gtk_scrolled_window_get_min_content_height (GtkScrolledWindow *scrolled_window);
120 void           gtk_scrolled_window_set_min_content_height (GtkScrolledWindow *scrolled_window,
121                                                            gint               height);
122
123 gint _gtk_scrolled_window_get_scrollbar_spacing (GtkScrolledWindow *scrolled_window);
124
125
126 G_END_DECLS
127
128
129 #endif /* __GTK_SCROLLED_WINDOW_H__ */