]> Pileus Git - ~andy/gtk/blob - gtk/gtkscrolledwindow.h
this macro computes the spacing from klass->scrollbar_spacing now. adapted
[~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 Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18 #ifndef __GTK_SCROLLED_WINDOW_H__
19 #define __GTK_SCROLLED_WINDOW_H__
20
21
22 #include <gdk/gdk.h>
23 #include <gtk/gtkhscrollbar.h>
24 #include <gtk/gtkvscrollbar.h>
25 #include <gtk/gtkviewport.h>
26
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31
32
33 #define GTK_SCROLLED_WINDOW(obj)          GTK_CHECK_CAST (obj, gtk_scrolled_window_get_type (), GtkScrolledWindow)
34 #define GTK_SCROLLED_WINDOW_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_scrolled_window_get_type (), GtkScrolledWindowClass)
35 #define GTK_IS_SCROLLED_WINDOW(obj)       GTK_CHECK_TYPE (obj, gtk_scrolled_window_get_type ())
36
37
38 typedef struct _GtkScrolledWindow       GtkScrolledWindow;
39 typedef struct _GtkScrolledWindowClass  GtkScrolledWindowClass;
40
41 struct _GtkScrolledWindow
42 {
43   GtkContainer container;
44
45   GtkWidget *viewport;
46   GtkWidget *hscrollbar;
47   GtkWidget *vscrollbar;
48
49   guint8 hscrollbar_policy;
50   guint8 vscrollbar_policy;
51 };
52
53 struct _GtkScrolledWindowClass
54 {
55   GtkContainerClass parent_class;
56
57   gint scrollbar_spacing;
58 };
59
60
61 guint          gtk_scrolled_window_get_type        (void);
62 GtkWidget*     gtk_scrolled_window_new             (GtkAdjustment     *hadjustment,
63                                                     GtkAdjustment     *vadjustment);
64 GtkAdjustment* gtk_scrolled_window_get_hadjustment (GtkScrolledWindow *scrolled_window);
65 GtkAdjustment* gtk_scrolled_window_get_vadjustment (GtkScrolledWindow *scrolled_window);
66 void           gtk_scrolled_window_set_policy      (GtkScrolledWindow *scrolled_window,
67                                                     GtkPolicyType      hscrollbar_policy,
68                                                     GtkPolicyType      vscrollbar_policy);
69
70
71 #ifdef __cplusplus
72 }
73 #endif /* __cplusplus */
74
75
76 #endif /* __GTK_SCROLLED_WINDOW_H__ */