All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TextGridSettingsConfigProperties.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 TextGridSettingsConfigProperties.cpp
22 
23  \brief
24 
25  \ingroup layout
26 */
27 
28 // TerraLib
30 
31 
33  m_name("textgridsettings"),
34  m_title("textgrid_title"),
35  m_spacing("textgrid_spacing"),
36  m_padding("textgrid_padding"),
37  m_tableColor("textgrid_tablecolor"),
38  m_widthConstraints("textgrid_widthconstraints"),
39  m_width("textgrid_width"),
40  m_addRow("textgrid_addrow"),
41  m_rowNumber("textgrid_rownumber"),
42  m_evenRow("textgrid_evenrow"),
43  m_oddRow("textgrid_oddrow"),
44  m_addColumn("textgrid_addcolumn"),
45  m_columnNumber("textgrid_columnnumber"),
46  m_columnWidth("textgrid_columnwidth"),
47  m_columnWidthConstraints("textgrid_columnwidthconstraints"),
48  m_borderWidth("textgrid_borderwidth"),
49  m_borderGridColor("textgrid_bordergridcolor"),
50  m_borderStyle("textgrid_borderstyle"),
51  m_headerAlignment("textgrid_headeralignment"),
52  m_headerHorizontalColor("textgrid_headerhorizontalcolor"),
53  m_headerVerticalColor("textgrid_headerverticalcolor"),
54  m_cellAlignment("textgrid_cellalignment")
55 {
56 
57 }
58 
60 {
61 
62 }
63 
65 {
66  return m_name;
67 }
68 
70 {
71  return m_title;
72 }
73 
75 {
76  return m_spacing;
77 }
78 
80 {
81  return m_padding;
82 }
83 
85 {
86  return m_tableColor;
87 }
88 
90 {
91  return m_widthConstraints;
92 }
93 
95 {
96  return m_width;
97 }
98 
100 {
101  return m_addRow;
102 }
103 
105 {
106  return m_rowNumber;
107 }
108 
110 {
111  return m_evenRow;
112 }
113 
115 {
116  return m_oddRow;
117 }
118 
120 {
121  return m_addColumn;
122 }
123 
125 {
126  return m_columnNumber;
127 }
128 
130 {
131  return m_columnWidth;
132 }
133 
135 {
136  return m_columnWidthConstraints;
137 }
138 
140 {
141  return m_borderWidth;
142 }
143 
145 {
146  return m_borderGridColor;
147 }
148 
150 {
151  return m_borderStyle;
152 }
153 
155 {
156  return m_headerAlignment;
157 }
158 
160 {
161  return m_headerHorizontalColor;
162 }
163 
165 {
166  return m_headerVerticalColor;
167 }
168 
170 {
171  return m_cellAlignment;
172 }