]> git.sur5r.net Git - glabels/blob - glabels2/src/stock.h
2009-09-22 Jim Evins <evins@snaught.com>
[glabels] / glabels2 / src / stock.h
1 /*
2  *  stock.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 __STOCK_H__
22 #define __STOCK_H__
23
24 #include <glib.h>
25
26 G_BEGIN_DECLS
27
28 /* Stock names */
29
30 #define GL_STOCK_ARROW         "gl_stock_arrow"
31 #define GL_STOCK_TEXT          "gl_stock_text"
32 #define GL_STOCK_LINE          "gl_stock_line"
33 #define GL_STOCK_BOX           "gl_stock_box"
34 #define GL_STOCK_ELLIPSE       "gl_stock_ellipse"
35 #define GL_STOCK_IMAGE         "gl_stock_image"
36 #define GL_STOCK_BARCODE       "gl_stock_barcode"
37 #define GL_STOCK_MERGE         "gl_stock_merge"
38 #define GL_STOCK_PROPERTIES    "gl_stock_properties"
39 #define GL_STOCK_ORDER_TOP     "gl_stock_order_top"
40 #define GL_STOCK_ORDER_BOTTOM  "gl_stock_order_bottom"
41 #define GL_STOCK_ROTATE_LEFT   "gl_stock_rotate_left"
42 #define GL_STOCK_ROTATE_RIGHT  "gl_stock_rotate_right"
43 #define GL_STOCK_FLIP_HORIZ    "gl_stock_flip_horiz"
44 #define GL_STOCK_FLIP_VERT     "gl_stock_flip_vert"
45 #define GL_STOCK_ALIGN_LEFT    "gl_stock_align_left"
46 #define GL_STOCK_ALIGN_RIGHT   "gl_stock_align_right"
47 #define GL_STOCK_ALIGN_HCENTER "gl_stock_align_hcenter"
48 #define GL_STOCK_ALIGN_TOP     "gl_stock_align_top"
49 #define GL_STOCK_ALIGN_BOTTOM  "gl_stock_align_bottom"
50 #define GL_STOCK_ALIGN_VCENTER "gl_stock_align_vcenter"
51 #define GL_STOCK_CENTER_HORIZ  "gl_stock_center_horiz"
52 #define GL_STOCK_CENTER_VERT   "gl_stock_center_vert"
53 #define GL_STOCK_BUCKET_FILL   "gl_stock_bucket_fill"
54 #define GL_STOCK_PENCIL        "gl_stock_pencil"
55 #define GL_STOCK_HCHAIN        "gl_stock_hchain"
56 #define GL_STOCK_HCHAIN_BROKEN "gl_stock_hchain_broken"
57 #define GL_STOCK_VCHAIN        "gl_stock_vchain"
58 #define GL_STOCK_VCHAIN_BROKEN "gl_stock_vchain_broken"
59
60 void gl_stock_init (void);
61
62 G_END_DECLS
63
64 #endif
65
66
67
68 /*
69  * Local Variables:       -- emacs
70  * mode: C                -- emacs
71  * c-basic-offset: 8      -- emacs
72  * tab-width: 8           -- emacs
73  * indent-tabs-mode: nil  -- emacs
74  * End:                   -- emacs
75  */