]> Pileus Git - ~andy/gtk/blob - gtk/gtkprogressbar.h
always set hide_tooltip to TRUE if we are handling a leave notify event.
[~andy/gtk] / gtk / gtkprogressbar.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_PROGRESS_BAR_H__
28 #define __GTK_PROGRESS_BAR_H__
29
30
31 #include <gdk/gdk.h>
32 #include <gtk/gtkprogress.h>
33
34
35 G_BEGIN_DECLS
36
37 #define GTK_TYPE_PROGRESS_BAR            (gtk_progress_bar_get_type ())
38 #define GTK_PROGRESS_BAR(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PROGRESS_BAR, GtkProgressBar))
39 #define GTK_PROGRESS_BAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_PROGRESS_BAR, GtkProgressBarClass))
40 #define GTK_IS_PROGRESS_BAR(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PROGRESS_BAR))
41 #define GTK_IS_PROGRESS_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PROGRESS_BAR))
42 #define GTK_PROGRESS_BAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_PROGRESS_BAR, GtkProgressBarClass))
43
44
45 typedef struct _GtkProgressBar       GtkProgressBar;
46 typedef struct _GtkProgressBarClass  GtkProgressBarClass;
47
48 typedef enum
49 {
50   GTK_PROGRESS_CONTINUOUS,
51   GTK_PROGRESS_DISCRETE
52 } GtkProgressBarStyle;
53
54 typedef enum
55 {
56   GTK_PROGRESS_LEFT_TO_RIGHT,
57   GTK_PROGRESS_RIGHT_TO_LEFT,
58   GTK_PROGRESS_BOTTOM_TO_TOP,
59   GTK_PROGRESS_TOP_TO_BOTTOM
60 } GtkProgressBarOrientation;
61
62 struct _GtkProgressBar
63 {
64   GtkProgress progress;
65
66   GtkProgressBarStyle bar_style;
67   GtkProgressBarOrientation orientation;
68
69   guint blocks;
70   gint  in_block;
71
72   gint  activity_pos;
73   guint activity_step;
74   guint activity_blocks;
75
76   gdouble pulse_fraction;
77   
78   guint activity_dir : 1;
79   guint ellipsize : 3;
80   guint dirty : 1;
81 };
82
83 struct _GtkProgressBarClass
84 {
85   GtkProgressClass parent_class;
86
87   /* Padding for future expansion */
88   void (*_gtk_reserved1) (void);
89   void (*_gtk_reserved2) (void);
90   void (*_gtk_reserved3) (void);
91   void (*_gtk_reserved4) (void);
92 };
93
94
95 GType      gtk_progress_bar_get_type             (void) G_GNUC_CONST;
96 GtkWidget* gtk_progress_bar_new                  (void);
97
98 /*
99  * GtkProgress/GtkProgressBar had serious problems in GTK 1.2.
100  * 
101  *  - Only 3 or 4 functions are really needed for 95% of progress  
102  *    interfaces; GtkProgress[Bar] had about 25 functions, and 
103  *    didn't even include these 3 or 4.
104  *  - In activity mode, the API involves setting the adjustment 
105  *    to any random value, just to have the side effect of 
106  *    calling the progress bar update function - the adjustment
107  *    is totally ignored in activity mode
108  *  - You set the activity step as a pixel value, which means to 
109  *    set the activity step you basically need to connect to 
110  *    size_allocate
111  *  - There are ctree_set_expander_style()-functions, to randomly 
112  *    change look-and-feel for no good reason
113  *  - The split between GtkProgress and GtkProgressBar makes no sense 
114  *    to me whatsoever.
115  *  
116  * This was a big wart on GTK and made people waste lots of time,
117  * both learning and using the interface.
118  * 
119  * So, I have added what I feel is the correct API, and marked all the
120  * rest deprecated. However, the changes are 100% backward-compatible and
121  * should break no existing code.
122  *
123  * The following 9 functions are the new programming interface. 
124  */
125 void       gtk_progress_bar_pulse                (GtkProgressBar *pbar);
126 void       gtk_progress_bar_set_text             (GtkProgressBar *pbar,
127                                                   const gchar    *text);
128 void       gtk_progress_bar_set_fraction         (GtkProgressBar *pbar,
129                                                   gdouble         fraction);
130
131 void       gtk_progress_bar_set_pulse_step       (GtkProgressBar *pbar,
132                                                   gdouble         fraction);
133 void       gtk_progress_bar_set_orientation      (GtkProgressBar *pbar,
134                                                   GtkProgressBarOrientation orientation);
135
136 G_CONST_RETURN gchar* gtk_progress_bar_get_text       (GtkProgressBar *pbar);
137 gdouble               gtk_progress_bar_get_fraction   (GtkProgressBar *pbar);
138 gdouble               gtk_progress_bar_get_pulse_step (GtkProgressBar *pbar);
139
140 GtkProgressBarOrientation gtk_progress_bar_get_orientation (GtkProgressBar *pbar);
141 void               gtk_progress_bar_set_ellipsize (GtkProgressBar     *pbar,
142                                                    PangoEllipsizeMode  mode);
143 PangoEllipsizeMode gtk_progress_bar_get_ellipsize (GtkProgressBar     *pbar);
144
145
146 #ifndef GTK_DISABLE_DEPRECATED
147
148 /* Everything below here is deprecated */
149 GtkWidget* gtk_progress_bar_new_with_adjustment  (GtkAdjustment  *adjustment);
150 void       gtk_progress_bar_set_bar_style        (GtkProgressBar *pbar,
151                                                   GtkProgressBarStyle style);
152 void       gtk_progress_bar_set_discrete_blocks  (GtkProgressBar *pbar,
153                                                   guint           blocks);
154 /* set_activity_step() is not only deprecated, it doesn't even work.
155  * (Of course, it wasn't usable anyway, you had to set it from a size_allocate
156  * handler or something)
157  */
158 void       gtk_progress_bar_set_activity_step    (GtkProgressBar *pbar,
159                                                   guint           step);
160 void       gtk_progress_bar_set_activity_blocks  (GtkProgressBar *pbar,
161                                                   guint           blocks);
162 void       gtk_progress_bar_update               (GtkProgressBar *pbar,
163                                                   gdouble         percentage);
164
165 #endif /* GTK_DISABLE_DEPRECATED */
166
167 G_END_DECLS
168
169 #endif /* __GTK_PROGRESS_BAR_H__ */