All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GridSettingsConfigProperties.h
Go to the documentation of this file.
1 /* Copyright (C) 2001-2014 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.h
22 
23  \brief
24 
25  \ingroup layout
26 */
27 
28 #ifndef __TERRALIB_LAYOUT_INTERNAL_GRID_SETTINGS_CONFIG_PROPERTIES_H
29 #define __TERRALIB_LAYOUT_INTERNAL_GRID_SETTINGS_CONFIG_PROPERTIES_H
30 
31 // STL
32 #include <string>
33 
34 namespace te
35 {
36  namespace layout
37  {
39  {
40  public:
41 
43 
44  std::string getName();
45  std::string getVisible();
46  std::string getLneHrzGap();
47  std::string getLneVrtGap();
48  std::string getInitialGridPointX();
49  std::string getInitialGridPointY();
50  std::string getStyle();
51  std::string getLineStyle();
52  std::string getLineColor();
53  std::string getLineWidth();
54  std::string getPointTextSize();
55  std::string getFontText();
56  std::string getTextColor();
57  std::string getVisibleAllTexts();
58  std::string getSuperscriptText();
59  std::string getLneVrtDisplacement();
60  std::string getLneHrzDisplacement();
61  std::string getBottomText();
62  std::string getLeftText();
63  std::string getRightText();
64  std::string getTopText();
65  std::string getBottomRotateText();
66  std::string getLeftRotateText();
67  std::string getRightRotateText();
68  std::string getTopRotateText();
69 
70  protected:
71 
72  std::string m_name;
73 
74  /* Grid */
75 
76  std::string m_visible;
77  std::string m_lneHrzGap;
78  std::string m_lneVrtGap;
79  std::string m_initialGridPointX;
80  std::string m_initialGridPointY;
81 
82  /* Just one is visible */
83  std::string m_style;
84 
85  /* Line */
86  std::string m_lineStyle;
87  std::string m_lineColor;
88  std::string m_lineWidth;
89 
90  /*Text: Basic Configuration*/
91  std::string m_pointTextSize;
92  std::string m_fontText;
93  std::string m_textColor;
94 
95  /*Text: Advanced configuration*/
96  std::string m_visibleAllTexts;
97  std::string m_superscriptText;
98  std::string m_lneVrtDisplacement;
99  std::string m_lneHrzDisplacement;
100  std::string m_bottomText;
101  std::string m_leftText;
102  std::string m_rightText;
103  std::string m_topText;
104  std::string m_bottomRotateText;
105  std::string m_leftRotateText;
106  std::string m_rightRotateText;
107  std::string m_topRotateText;
108  };
109  }
110 }
111 
112 #endif