Loading...
Searching...
No Matches
TableEvents.h
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 TableEvents.h
22
23 \brief Contains a list of the table events.
24*/
25
26#ifndef __TERRALIB_QT_AF_EVENTS_INTERNAL_TABLEEVENTS_H
27#define __TERRALIB_QT_AF_EVENTS_INTERNAL_TABLEEVENTS_H
28
31#include "Event.h"
32#include "Enums.h"
33
34namespace te
35{
36 namespace qt
37 {
38 namespace af
39 {
40 namespace evt
41 {
42 /*!
43 \struct TableAlternatingColorsChanged
44
45 \brief This event signals that table has alternating row colors.
46 */
48 {
49 /*!
50 \brief Constructor.
51
52 \param isAlternating If table has alternating row colors.
53 \param primaryColor Primary Color.
54 \param secondaryColor Secondary Color.
55 */
56 TableAlternatingColorsChanged(bool isAlternating, QColor primaryColor, QColor secondaryColor) :
58 m_isAlternating(isAlternating),
59 m_primaryColor(primaryColor),
60 m_secondaryColor(secondaryColor)
61 {
62 }
63
67 };
68
69 /*!
70 \struct AutoPanEnabled
71
72 \brief This event signals that table has auto pan enabled.
73 */
74 struct AutoPanEnabled : public Event
75 {
76 /*!
77 \brief Constructor.
78
79 \param isEnabled If enable auto pan or not.
80 */
81 AutoPanEnabled(bool isEnabled) :
83 m_isEnabled(isEnabled)
84 {
85 }
86
88 };
89 }
90 }
91 }
92}
93
94#endif //__TERRALIB_QT_AF_EVENTS_INTERNAL_TABLEEVENTS_H
This is the base class for Layers.
Declaration of enums for the MapTools module.
@ TABLE_AUTO_PAN_ENABLED
Definition Enums.h:69
@ TABLE_ALTERNATE_COLORS_CHANGED
Definition Enums.h:68
Namespace for the Qt Application Framework module of TerraLib.
Definition af.h:46
Namespace for the Qt module of TerraLib.
Definition Renderer.h:56
TerraLib.
Enumerations for the TerraLib Application Framework.
Default events used with application framework.
AutoPanEnabled(bool isEnabled)
Constructor.
Definition TableEvents.h:81
Event(const int &id)
Constructor.
Definition Event.h:65
TableAlternatingColorsChanged(bool isAlternating, QColor primaryColor, QColor secondaryColor)
Constructor.
Definition TableEvents.h:56