]> git.sur5r.net Git - glabels/blob - src/label-properties-dialog.h
Imported Upstream version 3.4.0
[glabels] / src / label-properties-dialog.h
1 /*
2  *  label-properties-dialog.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 __LABEL_PROPERTIES_DIALOG_H__
22 #define __LABEL_PROPERTIES_DIALOG_H__
23
24
25 #include <gtk/gtk.h>
26
27 #include "label.h"
28
29
30 G_BEGIN_DECLS
31
32 #define GL_RESPONSE_SELECT_OTHER 1
33
34 #define GL_TYPE_LABEL_PROPERTIES_DIALOG (gl_label_properties_dialog_get_type ())
35 #define GL_LABEL_PROPERTIES_DIALOG(obj) \
36         (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_LABEL_PROPERTIES_DIALOG, glLabelPropertiesDialog))
37 #define GL_LABEL_PROPERTIES_DIALOG_CLASS(klass) \
38         (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_LABEL_PROPERTIES_DIALOG, glLabelPropertiesDialogClass))
39 #define GL_IS_LABEL_PROPERTIES_DIALOG(obj) \
40         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_LABEL_PROPERTIES_DIALOG))
41 #define GL_IS_LABEL_PROPERTIES_DIALOG_CLASS(klass) \
42         (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_LABEL_PROPERTIES_DIALOG))
43 #define GL_LABEL_PROPERTIES_DIALOG_GET_CLASS(obj) \
44         (G_TYPE_INSTANCE_GET_CLASS ((obj), GL_TYPE_LABEL_PROPERTIES_DIALOG, glLabelPropertiesDialogClass))
45
46 typedef struct _glLabelPropertiesDialog         glLabelPropertiesDialog;
47 typedef struct _glLabelPropertiesDialogClass    glLabelPropertiesDialogClass;
48
49 typedef struct _glLabelPropertiesDialogPrivate  glLabelPropertiesDialogPrivate;
50
51 struct _glLabelPropertiesDialog
52 {
53         GtkDialog                       parent_instance;
54
55         glLabelPropertiesDialogPrivate *priv;
56 };
57
58 struct  _glLabelPropertiesDialogClass
59 {
60         GtkDialogClass                  parent_class;
61 };
62
63
64 GtkWidget *gl_label_properties_dialog_new (glLabel *label, GtkWindow *parent);
65
66 G_END_DECLS
67
68
69 #endif /* __LABEL_PROPERTIES_DIALOG_H__ */
70
71
72
73
74 /*
75  * Local Variables:       -- emacs
76  * mode: C                -- emacs
77  * c-basic-offset: 8      -- emacs
78  * tab-width: 8           -- emacs
79  * indent-tabs-mode: nil  -- emacs
80  * End:                   -- emacs
81  */