Laxkit
0.0.7.1
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
lax
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
33
enum
LaxCompositeOp
34
{
35
LAXOP_None=0,
36
LAXOP_Clear
,
37
LAXOP_Source
,
38
LAXOP_Over
,
39
LAXOP_In
,
40
LAXOP_Out
,
41
LAXOP_Atop
,
42
LAXOP_Dest
,
43
LAXOP_Dest_over
,
44
LAXOP_Dest_in
,
45
LAXOP_Dest_out
,
46
LAXOP_Dest_atop
,
47
LAXOP_Xor
,
48
LAXOP_Add
,
49
LAXOP_Saturate
,
50
LAXOP_Multiply
,
51
LAXOP_Screen
,
52
LAXOP_Overlay
,
53
LAXOP_Darken
,
54
LAXOP_Lighten
,
55
LAXOP_Color_dodge
,
56
LAXOP_Color_burn
,
57
LAXOP_Hard_light
,
58
LAXOP_Soft_light
,
59
LAXOP_Difference
,
60
LAXOP_Exclusion
,
61
LAXOP_Hsl_hue
,
62
LAXOP_Hsl_saturation
,
63
LAXOP_Hsl_color
,
64
LAXOP_Hsl_luminosity
,
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
88
enum
DrawThingTypes
{
89
THING_None,
90
THING_Circle,
91
THING_Circle_X
,
92
THING_Circle_Plus
,
93
THING_Square,
94
THING_Diamond
,
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,
102
THING_Eject
,
103
THING_Double_Triangle_Up,
104
THING_Double_Triangle_Down,
105
THING_Double_Triangle_Left
,
106
THING_Double_Triangle_Right,
107
THING_Arrow_Left,
108
THING_Arrow_Right,
109
THING_Arrow_Up,
110
THING_Arrow_Down,
111
THING_Double_Arrow_Horizontal
,
112
THING_Double_Arrow_Vertical,
113
THING_Pan_Arrows
,
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