WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
GraphAttr.h
1#ifndef _WINC_GRAPHATTR
2#define _WINC_GRAPHATTR
3
4namespace WXP {
11 struct GraphAttr {
12 static const int HALIGN_NORMAL = 0;
13 static const int HALIGN_LEFT = 1;
14 static const int HALIGN_CENTER = 2;
15 static const int HALIGN_RIGHT = 3;
16
17 static const int VALIGN_NORMAL = 0;
18 static const int VALIGN_TOP = 1;
19 static const int VALIGN_CAP = 2;
20 static const int VALIGN_HALF = 3;
21 static const int VALIGN_BASE = 4;
22 static const int VALIGN_BOTTOM = 5;
23
25 static const int MARK_NONE = 0;
26 static const int MARK_POINT = 1;
27 static const int MARK_PLUS = 2;
28 static const int MARK_STAR = 3;
29 static const int MARK_O = 4;
30 static const int MARK_CIRCLE = 4;
31 static const int MARK_X = 5;
32 static const int MARK_SQUARE = 6;
33 static const int MARK_TRIANGLE = 7;
34 static const int MARK_DOT = 8;
35 static const int MARK_INVTRIANGLE = 9;
36 static const int MARK_LIGHT = 10;
37
38 static const int VIEW_HLEFT = 1;
39 static const int VIEW_HCENTER = 2;
40 static const int VIEW_HRIGHT = 3;
41
42 static const int VIEW_VBOTTOM = 1;
43 static const int VIEW_VCENTER = 2;
44 static const int VIEW_VTOP = 3;
45
46 static const int IMAGE_HLEFT = 1;
47 static const int IMAGE_HCENTER = 2;
48 static const int IMAGE_HRIGHT = 3;
49
50 static const int IMAGE_VBOTTOM = 1;
51 static const int IMAGE_VCENTER = 2;
52 static const int IMAGE_VTOP = 3;
53
54 static const int TRAN_MAX = 0;
55 static const int TRAN_PLOT = 1;
56
57 static const int CURSOR_X = 0;
58 static const int CURSOR_PTR = 1;
59 static const int CURSOR_MOVE = 2;
60 static const int CURSOR_LOOP = 3;
61 static const int CURSOR_STOP = 4;
62 static const int CURSOR_DRAW = 5;
63 static const int CURSOR_RECT = 6;
64 static const int CURSOR_PLUS = 6;
65 static const int CURSOR_TEXT = 7;
66 static const int CURSOR_WAIT = 8;
67 };
68}
69#endif
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This defines some basic graphics attributes.
Definition: GraphAttr.h:11
static const int MARK_NONE
Definition: GraphAttr.h:25