]> git.sur5r.net Git - glabels/blob - glabels2/src/rotate-label-button.h
2009-09-22 Jim Evins <evins@snaught.com>
[glabels] / glabels2 / src / rotate-label-button.h
1 /*
2  *  rotate-label-button.h
3  *  Copyright (C) 2001-2009  Jim Evins <evins@snaught.com>.
4  *
5  *  This file is part of gLabels.
6  *
7  *  gLabels is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  gLabels is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with gLabels.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #ifndef __ROTATE_LABEL_BUTTON_H__
22 #define __ROTATE_LABEL_BUTTON_H__
23
24 #include <gtk/gtk.h>
25
26 G_BEGIN_DECLS
27
28 #define GL_TYPE_ROTATE_LABEL_BUTTON (gl_rotate_label_button_get_type ())
29 #define GL_ROTATE_LABEL_BUTTON(obj) \
30         (G_TYPE_CHECK_INSTANCE_CAST((obj), GL_TYPE_ROTATE_LABEL_BUTTON, glRotateLabelButton ))
31 #define GL_ROTATE_LABEL_BUTTON_CLASS(klass) \
32         (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_ROTATE_LABEL_BUTTON, glRotateLabelButtonClass))
33 #define GL_IS_ROTATE_LABEL_BUTTON(obj) \
34         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_ROTATE_LABEL_BUTTON))
35 #define GL_IS_ROTATE_LABEL_BUTTON_CLASS(klass) \
36         (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_ROTATE_LABEL_BUTTON))
37
38
39 typedef struct _glRotateLabelButton         glRotateLabelButton;
40 typedef struct _glRotateLabelButtonClass    glRotateLabelButtonClass;
41
42 typedef struct _glRotateLabelButtonPrivate  glRotateLabelButtonPrivate;
43
44 struct _glRotateLabelButton {
45         GtkHBox                      parent_widget;
46
47         glRotateLabelButtonPrivate  *priv;
48 };
49
50 struct _glRotateLabelButtonClass {
51         GtkHBoxClass                 parent_class;
52
53         void (*changed) (glRotateLabelButton  *rotate_label_button,
54                          gpointer              user_data);
55 };
56
57
58 GType      gl_rotate_label_button_get_type          (void) G_GNUC_CONST;
59
60 GtkWidget *gl_rotate_label_button_new               (void);
61
62 gboolean   gl_rotate_label_button_get_state         (glRotateLabelButton *rotate_label);
63
64 void       gl_rotate_label_button_set_state         (glRotateLabelButton *rotate_label,
65                                                      gboolean             state);
66
67 void       gl_rotate_label_button_set_template_name (glRotateLabelButton *rotate_label,
68                                                      gchar               *name);
69
70 G_END_DECLS
71
72 #endif
73
74
75
76 /*
77  * Local Variables:       -- emacs
78  * mode: C                -- emacs
79  * c-basic-offset: 8      -- emacs
80  * tab-width: 8           -- emacs
81  * indent-tabs-mode: nil  -- emacs
82  * End:                   -- emacs
83  */