]> git.sur5r.net Git - glabels/blob - src/stock.h
Imported Upstream version 2.2.8
[glabels] / src / stock.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2
3 /*
4  *  (GLABELS) Label and Business Card Creation program for GNOME
5  *
6  *  stock.h:  Stock image module header file
7  *
8  *  Copyright (C) 2001-2002  Jim Evins <evins@snaught.com>.
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23  */
24
25 #ifndef __STOCK_H__
26 #define __STOCK_H__
27
28 #include <glib/gmacros.h>
29
30 G_BEGIN_DECLS
31
32 /* Stock names */
33
34 #define GL_STOCK_ARROW         "gl_stock_arrow"
35 #define GL_STOCK_TEXT          "gl_stock_text"
36 #define GL_STOCK_LINE          "gl_stock_line"
37 #define GL_STOCK_BOX           "gl_stock_box"
38 #define GL_STOCK_ELLIPSE       "gl_stock_ellipse"
39 #define GL_STOCK_IMAGE         "gl_stock_image"
40 #define GL_STOCK_BARCODE       "gl_stock_barcode"
41 #define GL_STOCK_MERGE         "gl_stock_merge"
42 #define GL_STOCK_PROPERTIES    "gl_stock_properties"
43 #define GL_STOCK_ORDER_TOP     "gl_stock_order_top"
44 #define GL_STOCK_ORDER_BOTTOM  "gl_stock_order_bottom"
45 #define GL_STOCK_ROTATE_LEFT   "gl_stock_rotate_left"
46 #define GL_STOCK_ROTATE_RIGHT  "gl_stock_rotate_right"
47 #define GL_STOCK_FLIP_HORIZ    "gl_stock_flip_horiz"
48 #define GL_STOCK_FLIP_VERT     "gl_stock_flip_vert"
49 #define GL_STOCK_ALIGN_LEFT    "gl_stock_align_left"
50 #define GL_STOCK_ALIGN_RIGHT   "gl_stock_align_right"
51 #define GL_STOCK_ALIGN_HCENTER "gl_stock_align_hcenter"
52 #define GL_STOCK_ALIGN_TOP     "gl_stock_align_top"
53 #define GL_STOCK_ALIGN_BOTTOM  "gl_stock_align_bottom"
54 #define GL_STOCK_ALIGN_VCENTER "gl_stock_align_vcenter"
55 #define GL_STOCK_CENTER_HORIZ  "gl_stock_center_horiz"
56 #define GL_STOCK_CENTER_VERT   "gl_stock_center_vert"
57 #define GL_STOCK_BUCKET_FILL   "gl_stock_bucket_fill"
58 #define GL_STOCK_PENCIL        "gl_stock_pencil"
59 #define GL_STOCK_HCHAIN        "gl_stock_hchain"
60 #define GL_STOCK_HCHAIN_BROKEN "gl_stock_hchain_broken"
61 #define GL_STOCK_VCHAIN        "gl_stock_vchain"
62 #define GL_STOCK_VCHAIN_BROKEN "gl_stock_vchain_broken"
63
64 void gl_stock_init (void);
65
66 G_END_DECLS
67
68 #endif