]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/elements/text-alignment.hxx
Fix a Clang warning in Shiva.
[flightgear.git] / src / Canvas / elements / text-alignment.hxx
1 // Mapping between strings and osg text alignment flags
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19 #ifndef ENUM_MAPPING
20 # error "Only include with ENUM_MAPPING defined!"
21 #endif
22
23 ENUM_MAPPING(LEFT_TOP,      "left-top")
24 ENUM_MAPPING(LEFT_CENTER,   "left-center")
25 ENUM_MAPPING(LEFT_BOTTOM,   "left-bottom")
26
27 ENUM_MAPPING(CENTER_TOP,    "center-top")
28 ENUM_MAPPING(CENTER_CENTER, "center-center")
29 ENUM_MAPPING(CENTER_BOTTOM, "center-bottom")
30
31 ENUM_MAPPING(RIGHT_TOP,     "right-top")
32 ENUM_MAPPING(RIGHT_CENTER,  "right-center")
33 ENUM_MAPPING(RIGHT_BOTTOM,  "right-bottom")
34
35 ENUM_MAPPING(LEFT_BASE_LINE,    "left-baseline")
36 ENUM_MAPPING(CENTER_BASE_LINE,  "center-baseline")
37 ENUM_MAPPING(RIGHT_BASE_LINE,   "right-baseline")
38
39 ENUM_MAPPING(LEFT_BOTTOM_BASE_LINE,     "left-bottom-baseline")
40 ENUM_MAPPING(CENTER_BOTTOM_BASE_LINE,   "center-bottom-baseline")
41 ENUM_MAPPING(RIGHT_BOTTOM_BASE_LINE,    "right-bottom-baseline")