All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GridSettingsConfigProperties.cpp
Go to the documentation of this file.
1 /* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file GridSettingsConfigProperties.cpp
22 
23  \brief
24 
25  \ingroup layout
26 */
27 
28 // TerraLib
30 
32  m_name("grid_name"),
33  m_visible("grid_visible"),
34  m_lneHrzGap("grid_lneHrzGap"),
35  m_lneVrtGap("grid_lneVrtGap"),
36  m_initialGridPointX("grid_initialGridPointX"),
37  m_initialGridPointY("grid_initialGridPointY"),
38  m_style("grid_style"),
39  m_lineStyle("grid_lineStyle"),
40  m_lineColor("grid_lineColor"),
41  m_lineWidth("grid_lineWidth"),
42  m_pointTextSize("grid_pointTextSize"),
43  m_fontText("grid_fontText"),
44  m_textColor("grid_textColor"),
45  m_visibleAllTexts("grid_visibleAllTexts"),
46  m_superscriptText("grid_superscriptText"),
47  m_lneVrtDisplacement("grid_lneVrtDisplacement"),
48  m_lneHrzDisplacement("grid_lneHrzDisplacement"),
49  m_bottomText("grid_bottomText"),
50  m_leftText("grid_leftText"),
51  m_rightText("grid_rightText"),
52  m_topText("grid_topText"),
53  m_bottomRotateText("grid_bottomRotateText"),
54  m_leftRotateText("grid_leftRotateText"),
55  m_rightRotateText("grid_rightRotateText"),
56  m_topRotateText("grid_topRotateText")
57 {
58 
59 }
60 
62 {
63 
64 }
65 
67 {
68  return m_name;
69 }
70 
72 {
73  return m_visible;
74 }
75 
77 {
78  return m_lneHrzGap;
79 }
80 
82 {
83  return m_lneVrtGap;
84 }
85 
87 {
88  return m_initialGridPointX;
89 }
90 
92 {
93  return m_initialGridPointY;
94 }
95 
97 {
98  return m_style;
99 }
100 
102 {
103  return m_lineStyle;
104 }
105 
107 {
108  return m_lineColor;
109 }
110 
112 {
113  return m_lineWidth;
114 }
115 
117 {
118  return m_pointTextSize;
119 }
120 
122 {
123  return m_fontText;
124 }
125 
127 {
128  return m_textColor;
129 }
130 
132 {
133  return m_visibleAllTexts;
134 }
135 
137 {
138  return m_superscriptText;
139 }
140 
142 {
143  return m_lneVrtDisplacement;
144 }
145 
147 {
148  return m_lneHrzDisplacement;
149 }
150 
152 {
153  return m_bottomText;
154 }
155 
157 {
158  return m_leftText;
159 }
160 
162 {
163  return m_rightText;
164 }
165 
167 {
168  return m_topText;
169 }
170 
172 {
173  return m_bottomRotateText;
174 }
175 
177 {
178  return m_leftRotateText;
179 }
180 
182 {
183  return m_rightRotateText;
184 }
185 
187 {
188  return m_topRotateText;
189 }
190 
191 
192