]> git.sur5r.net Git - glabels/blob - glabels2/src/label-barcode.h
61fde06b3e2834a8d040cc06e29d4b2319461772
[glabels] / glabels2 / src / label-barcode.h
1 /*
2  *  label-barcode.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_BARCODE_H__
22 #define __LABEL_BARCODE_H__
23
24 #include "bc.h"
25 #include "text-node.h"
26 #include "label-object.h"
27
28 G_BEGIN_DECLS
29
30
31 #define GL_TYPE_LABEL_BARCODE            (gl_label_barcode_get_type ())
32 #define GL_LABEL_BARCODE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_LABEL_BARCODE, glLabelBarcode))
33 #define GL_LABEL_BARCODE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_LABEL_BARCODE, glLabelBarcodeClass))
34 #define GL_IS_LABEL_BARCODE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_LABEL_BARCODE))
35 #define GL_IS_LABEL_BARCODE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_LABEL_BARCODE))
36
37 typedef struct _glLabelBarcode          glLabelBarcode;
38 typedef struct _glLabelBarcodeClass     glLabelBarcodeClass;
39
40 typedef struct _glLabelBarcodePrivate   glLabelBarcodePrivate;
41
42 struct _glLabelBarcode {
43         glLabelObject            object;
44
45         glLabelBarcodePrivate   *priv;
46 };
47
48 struct _glLabelBarcodeClass {
49         glLabelObjectClass       parent_class;
50 };
51
52
53 GType           gl_label_barcode_get_type  (void) G_GNUC_CONST;
54
55 GObject        *gl_label_barcode_new       (glLabel        *label);
56
57 void            gl_label_barcode_set_data  (glLabelBarcode *lbc,
58                                             glTextNode     *text_node);
59 void            gl_label_barcode_set_props (glLabelBarcode *lbc,
60                                             gchar          *id,
61                                             gboolean        text_flag,
62                                             gboolean        checksum_flag,
63                                             guint           format_digits);
64
65 glTextNode     *gl_label_barcode_get_data  (glLabelBarcode *lbc);
66 void            gl_label_barcode_get_props (glLabelBarcode *lbc,
67                                             gchar         **id,
68                                             gboolean       *text_flag,
69                                             gboolean       *checksum_flag,
70                                             guint          *format_digits);
71
72 G_END_DECLS
73
74 #endif /* __LABEL_BARCODE_H__ */
75
76
77
78
79 /*
80  * Local Variables:       -- emacs
81  * mode: C                -- emacs
82  * c-basic-offset: 8      -- emacs
83  * tab-width: 8           -- emacs
84  * indent-tabs-mode: nil  -- emacs
85  * End:                   -- emacs
86  */