]> Pileus Git - ~andy/gtk/blob - gtk/gtkrange.h
Fix G_VALUE_NO_COPY_CONTENTS instead of G_SIGNAL_TYPE_STATIC_SCOPE
[~andy/gtk] / gtk / gtkrange.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 #ifndef __GTK_RANGE_H__
28 #define __GTK_RANGE_H__
29
30
31 #include <gdk/gdk.h>
32 #include <gtk/gtkadjustment.h>
33 #include <gtk/gtkwidget.h>
34
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif /* __cplusplus */
39
40
41 #define GTK_TYPE_RANGE            (gtk_range_get_type ())
42 #define GTK_RANGE(obj)            (GTK_CHECK_CAST ((obj), GTK_TYPE_RANGE, GtkRange))
43 #define GTK_RANGE_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_RANGE, GtkRangeClass))
44 #define GTK_IS_RANGE(obj)         (GTK_CHECK_TYPE ((obj), GTK_TYPE_RANGE))
45 #define GTK_IS_RANGE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_RANGE))
46 #define GTK_RANGE_GET_CLASS(obj)  (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_RANGE, GtkRangeClass))
47
48
49 typedef struct _GtkRange        GtkRange;
50 typedef struct _GtkRangeClass   GtkRangeClass;
51
52 struct _GtkRange
53 {
54   GtkWidget widget;
55
56   GdkWindow *trough;
57   GdkWindow *slider;
58   GdkWindow *step_forw;
59   GdkWindow *step_back;
60
61   gint16 x_click_point;
62   gint16 y_click_point;
63
64   guint8 button;
65   gint8 digits;
66   guint policy : 2;
67   guint scroll_type : 5;
68   guint in_child : 3;
69   guint click_child : 3;
70   guint need_timer : 1;
71   guint flippable : 1;
72   guint inverted : 1;
73   
74   guint32 timer;
75
76   gdouble old_value;
77   gdouble old_lower;
78   gdouble old_upper;
79   gdouble old_page_size;
80
81   GtkAdjustment *adjustment;
82 };
83
84 struct _GtkRangeClass
85 {
86   GtkWidgetClass parent_class;
87
88   gint min_slider_size;
89
90   guint8 trough;
91   guint8 slider;
92   guint8 step_forw;
93   guint8 step_back;
94
95   void (* draw_background)  (GtkRange *range);
96   void (* clear_background) (GtkRange *range);
97   void (* draw_trough)      (GtkRange *range);
98   void (* draw_slider)      (GtkRange *range);
99   void (* draw_step_forw)   (GtkRange *range);
100   void (* draw_step_back)   (GtkRange *range);
101   void (* slider_update)    (GtkRange *range);
102   gboolean (* trough_click) (GtkRange *range,
103                              gint      x,
104                              gint      y,
105                              gdouble  *jump_perc);
106   gboolean (* trough_keys)  (GtkRange      *range,
107                              GdkEventKey   *key,
108                              GtkScrollType *scroll,
109                              GtkTroughType *trough);
110   void (* motion)           (GtkRange *range,
111                              gint      xdelta,
112                              gint      ydelta);
113   gboolean (* timer)        (GtkRange *range);
114 };
115
116
117 GtkType        gtk_range_get_type               (void) G_GNUC_CONST;
118 GtkAdjustment* gtk_range_get_adjustment         (GtkRange      *range);
119 void           gtk_range_set_update_policy      (GtkRange      *range,
120                                                  GtkUpdateType  policy);
121 void           gtk_range_set_adjustment         (GtkRange      *range,
122                                                  GtkAdjustment *adjustment);
123
124 void           gtk_range_set_inverted           (GtkRange      *range,
125                                                  gboolean       setting);
126 gboolean       gtk_range_get_inverted           (GtkRange      *range);
127
128 void           _gtk_range_draw_background        (GtkRange      *range);
129 void           _gtk_range_clear_background       (GtkRange      *range);
130 void           _gtk_range_draw_trough            (GtkRange      *range);
131 void           _gtk_range_draw_slider            (GtkRange      *range);
132 void           _gtk_range_draw_step_forw         (GtkRange      *range);
133 void           _gtk_range_draw_step_back         (GtkRange      *range);
134 void           _gtk_range_slider_update          (GtkRange      *range);
135 gboolean       _gtk_range_trough_click           (GtkRange      *range,
136                                                   gint           x,
137                                                   gint           y,
138                                                   gdouble       *jump_perc);
139
140 void           _gtk_range_default_hslider_update (GtkRange      *range);
141 void           _gtk_range_default_vslider_update (GtkRange      *range);
142 gboolean       _gtk_range_default_htrough_click  (GtkRange      *range,
143                                                   gint           x,
144                                                   gint           y,
145                                                   gdouble       *jump_perc);
146 gboolean       _gtk_range_default_vtrough_click  (GtkRange      *range,
147                                                   gint           x,
148                                                   gint           y,
149                                                   gdouble       *jump_perc);
150 void           _gtk_range_default_hmotion        (GtkRange      *range,
151                                                   gint           xdelta,
152                                                   gint           ydelta);
153 void           _gtk_range_default_vmotion        (GtkRange      *range,
154                                                   gint           xdelta,
155                                                   gint           ydelta);
156
157 void _gtk_range_get_props (GtkRange *range,
158                            gint     *slider_width,
159                            gint     *trough_border,
160                            gint     *stepper_size,
161                            gint     *stepper_spacing);
162
163 #ifdef __cplusplus
164 }
165 #endif /* __cplusplus */
166
167
168 #endif /* __GTK_RANGE_H__ */