All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GeodesicGridSettingsConfigProperties.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 GeodesicGridSettingsConfigProperties.h
22 
23  \brief
24 
25  \ingroup layout
26 */
27 
28 #ifndef __TERRALIB_LAYOUT_INTERNAL_GEODESIC_GRID_SETTINGS_CONFIG_PROPERTIES_H
29 #define __TERRALIB_LAYOUT_INTERNAL_GEODESIC_GRID_SETTINGS_CONFIG_PROPERTIES_H
30 
31 // TerraLib
33 
34 // STL
35 #include <string>
36 
37 namespace te
38 {
39  namespace layout
40  {
42  {
43  public:
44 
47 
48  std::string getPointTextSizeCorner();
49  std::string getFontTextCorner();
50  std::string getTextColorCorner();
51  std::string getDegreesText();
52  std::string getMinutesText();
53  std::string getSecondsText();
54  std::string getLneCornerHrzDisplacement();
55  std::string getLneCornerVrtDisplacement();
56  std::string getLowerRightCornerText();
57  std::string getUpperRightCornerText();
58  std::string getLowerLeftCornerText();
59  std::string getUpperLeftCornerText();
60  std::string getVisibleCornerTextsText();
61  std::string getDefineScale();
62  std::string getClip();
63  std::string getScale();
64  std::string getLneX1();
65  std::string getLneX2();
66  std::string getLneY1();
67  std::string getLneY2();
68  std::string getLneX3();
69  std::string getLneX4();
70  std::string getLneY3();
71  std::string getLneY4();
72 
73  protected:
74 
75  /* Geodesic */
76 
77  std::string m_pointTextSizeCorner;
78  std::string m_fontTextCorner;
79  std::string m_textColorCorner;
80 
81  std::string m_degreesText;
82  std::string m_minutesText;
83  std::string m_secondsText;
88  std::string m_lowerLeftCornerText;
89  std::string m_upperLeftCornerText;
91 
92  /* Geodesic: Topographic Map */
93 
94  std::string m_defineScale;
95  std::string m_clip;
96  std::string m_scale;
97  std::string m_lneX1;
98  std::string m_lneX2;
99  std::string m_lneY1;
100  std::string m_lneY2;
101  std::string m_lneX3;
102  std::string m_lneX4;
103  std::string m_lneY3;
104  std::string m_lneY4;
105  };
106  }
107 }
108 
109 #endif