1 /*
2  * Copyright (C) 2009, 2010 Hermann Meyer, James Warden, Andreas Degert
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program 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
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #ifndef __GX_HSLIDER_H__
20 #define __GX_HSLIDER_H__
21 
22 
23 #include "GxRegler.h"
24 
25 G_BEGIN_DECLS
26 
27 #define GX_TYPE_HSLIDER          (gx_hslider_get_type())
28 #define GX_HSLIDER(obj)          (G_TYPE_CHECK_INSTANCE_CAST ((obj), GX_TYPE_HSLIDER, GxHSlider))
29 #define GX_HSLIDER_CLASS(klass)  (G_TYPE_CHECK_CLASS_CAST ((klass),  GX_TYPE_HSLIDER, GxHSliderClass))
30 #define GX_IS_HSLIDER(obj)       (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GX_TYPE_HSLIDER))
31 #define GX_IS_HSLIDER_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((klass),  GX_TYPE_HSLIDER))
32 #define GX_HSLIDER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GX_TYPE_HSLIDER, GxHSliderClass))
33 
34 typedef struct _GxHSlider GxHSlider;
35 typedef struct _GxHSliderClass GxHSliderClass;
36 
37 struct _GxHSlider {
38 	GxRegler parent;
39     GdkPixbuf *image;
40     int slider_width;
41     int width;
42     int height;
43     int hover;
44     GdkRectangle image_rect;
45 };
46 
47 struct _GxHSliderClass {
48 	GxReglerClass parent_class;
49 	const gchar *stock_id;
50 	gfloat mouse_scale_factor;
51 };
52 
53 GType gx_hslider_get_type(void);
54 
55 G_END_DECLS
56 
57 #endif /* __GX_HSLIDER_H__ */
58