2006-11-14 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[hildon] / src / hildon-controlbar.h
1 /*
2  * This file is part of hildon-libs
3  *
4  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #ifndef __HILDON_CONTROLBAR_H__
26 #define __HILDON_CONTROLBAR_H__
27
28 #include <gtk/gtkscale.h>
29
30 G_BEGIN_DECLS
31 #define HILDON_TYPE_CONTROLBAR ( hildon_controlbar_get_type() )
32 #define HILDON_CONTROLBAR(obj) (GTK_CHECK_CAST (obj,\
33   HILDON_TYPE_CONTROLBAR, HildonControlbar))
34 #define HILDON_CONTROLBAR_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass),\
35   HILDON_TYPE_CONTROLBAR, HildonControlbarClass))
36 #define HILDON_IS_CONTROLBAR(obj) \
37   (GTK_CHECK_TYPE (obj, HILDON_TYPE_CONTROLBAR))
38 #define HILDON_IS_CONTROLBAR_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass),\
39   HILDON_TYPE_CONTROLBAR))
40
41 /**
42  * HildonControlbar:
43  *
44  * Contains gboolean variable named 'button_press' whether a button
45  * has been pressed.
46  */
47 typedef struct _HildonControlbar HildonControlbar;
48 typedef struct _HildonControlbarClass HildonControlbarClass;
49
50 struct _HildonControlbar {
51     GtkScale scale;
52 };
53
54 struct _HildonControlbarClass {
55     GtkScaleClass parent_class;
56     void (*end_reached) (HildonControlbar *controlbar, gboolean end);
57 };
58
59 GType hildon_controlbar_get_type(void);
60 GtkWidget *hildon_controlbar_new(void);
61 void hildon_controlbar_set_value(HildonControlbar * self, gint value);
62 gint hildon_controlbar_get_value(HildonControlbar * self);
63 gint hildon_controlbar_get_max(HildonControlbar * self);
64 gint hildon_controlbar_get_min(HildonControlbar * self);
65 void hildon_controlbar_set_max(HildonControlbar * self, gint max);
66 void hildon_controlbar_set_min(HildonControlbar * self, gint min);
67 void hildon_controlbar_set_range(HildonControlbar * self, gint min,
68                                  gint max);
69
70 G_END_DECLS
71 #endif /* __HILDON_CONTROLBAR_H__ */