Laxkit  0.0.7.1
drawingdefs.h
1 //
2 //
3 // The Laxkit, a windowing toolkit
4 // Please consult http://laxkit.sourceforge.net about where to send any
5 // correspondence about this software.
6 //
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Library General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
11 //
12 // This library 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 GNU
15 // Library General Public License for more details.
16 //
17 // You should have received a copy of the GNU Library General Public
18 // License along with this library; if not, write to the Free Software
19 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 //
21 // Copyright (C) 2004-2012 by Tom Lechner
22 //
23 #ifndef _LAX_DRAWINGDEFS_H
24 #define _LAX_DRAWINGDEFS_H
25 
26 
27 namespace Laxkit {
28 
30 
34 {
35  LAXOP_None=0,
65 
66  LAXOP_MAX
67 };
68 
69 enum LaxCapStyle
70 {
71  LAXCAP_Butt=1,
72  LAXCAP_Round,
73  LAXCAP_Projecting,
74 
75  LAXCAP_MAX
76 };
77 
78 enum LaxJoinStyle
79 {
80  LAXJOIN_Miter=1,
81  LAXJOIN_Round,
82  LAXJOIN_CurveMiter,
83  LAXJOIN_Bevel,
84 
85  LAXJOIN_MAX
86 };
87 
89  THING_None,
90  THING_Circle,
93  THING_Square,
95  THING_Triangle_Up,
96  THING_Triangle_Down,
97  THING_Triangle_Left,
98  THING_Triangle_Right,
99  THING_Plus,
100  THING_X,
101  THING_Asterix,
103  THING_Double_Triangle_Up,
104  THING_Double_Triangle_Down,
106  THING_Double_Triangle_Right,
107  THING_Arrow_Left,
108  THING_Arrow_Right,
109  THING_Arrow_Up,
110  THING_Arrow_Down,
112  THING_Double_Arrow_Vertical,
114  THING_Check,
115  THING_Locked,
116  THING_Unlocked,
117  THING_Open_Eye,
118  THING_Closed_Eye,
119  THING_Octagon,
120 
121  THING_MAX
122 };
123 
124 
125 } //namespace Laxkit
126 
127 
128 #endif
129 

Mon Feb 17 2014 11:52:56, Laxkit