Board 0.9.6
Globals.h
Go to the documentation of this file.
1/* -*- mode: c++ -*- */
26#ifndef BOARD_GLOBALS_H
27#define BOARD_GLOBALS_H
28
29namespace LibBoard
30{
31
35enum class Direction
36{
37 Top,
38 Right,
39 Bottom,
40 Left
41};
42
47{
52 Right
53};
54
58enum class PageSize
59{
60 BoundingBox = 0,
61 A0,
62 A1,
63 A2,
64 A3,
65 A4,
66 A5,
67 A6,
68 A7,
69 A8,
70 A9,
71 A10,
72 Letter,
73 Legal,
75};
76
80enum class Unit
81{
82 Point,
83 Inch,
86};
87
92{
95};
96
97} // namespace LibBoard
98
99#endif /* BOARD_GLOBALS_H */
Definition Board.h:55
Unit
Length units.
Definition Globals.h:81
PageSize
Page sizes.
Definition Globals.h:59
@ BoundingBox
No page size. The bounding box of the drawing will be used.
Direction
The Direction enum.
Definition Globals.h:36
Alignment
The Alignment enum.
Definition Globals.h:47
@ Bottom
Definition Globals.h:49
@ Center
Definition Globals.h:50
@ Top
Definition Globals.h:48
@ Right
Definition Globals.h:52
@ Left
Definition Globals.h:51
ColorSpecification
The ColorSpecification enum.
Definition Globals.h:92
Struct representing a 2D point.
Definition Point.h:42