ProjectEvents.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 ProjectEvents.h
22
23
\brief Contains the list of the project events.
24
*/
25
#ifndef __TERRALIB_QT_AF_EVENTS_INTERNAL_PROJECTEVENTS_H
26
#define __TERRALIB_QT_AF_EVENTS_INTERNAL_PROJECTEVENTS_H
27
28
#include <
terralib/qt/af/events/Event.h
>
29
#include <
terralib/qt/af/events/Enums.h
>
30
31
namespace
te
32
{
33
namespace
qt
34
{
35
namespace
af
36
{
37
// Forward declarations
38
class
Project;
39
40
namespace
evt
41
{
42
/*!
43
\struct ProjectAdded
44
45
\brief It indicates that a new project was created.
46
*/
47
struct
ProjectAdded
:
public
Event
48
{
49
/*!
50
\brief Constructor.
51
52
\param proj The project to be added.
53
*/
54
ProjectAdded
(Project* proj)
55
:
Event
(
PROJECT_ADDED
),
56
m_proj
(proj)
57
{
58
}
59
60
Project*
m_proj
;
//!< Pointer to the new project.
61
};
62
63
/*!
64
\struct ProjectUnsaved
65
66
\brief It indicates that the project has unsaved changes.
67
*/
68
struct
ProjectUnsaved
:
public
Event
69
{
70
/*!
71
\brief Constructor.
72
*/
73
ProjectUnsaved
()
74
:
Event
(
PROJECT_UNSAVED
)
75
{
76
}
77
};
78
}
79
}
80
}
81
}
82
83
#endif //__TERRALIB_QT_AF_EVENTS_INTERNAL_PROJECTEVENTS_H
te
TerraLib.
Definition:
AddressGeocodingOp.h:52
te::qt::af::evt::PROJECT_UNSAVED
@ PROJECT_UNSAVED
Definition:
Enums.h:65
Event.h
Default events used with application framework.
Enums.h
Enumerations for the TerraLib Application Framework.
te::qt::af::evt::ProjectAdded::m_proj
Project * m_proj
Pointer to the new project.
Definition:
ProjectEvents.h:60
te::qt::af::evt::PROJECT_ADDED
@ PROJECT_ADDED
Definition:
Enums.h:64
te::qt::af::evt::ProjectUnsaved::ProjectUnsaved
ProjectUnsaved()
Constructor.
Definition:
ProjectEvents.h:73
te::qt::af::evt::ProjectAdded::ProjectAdded
ProjectAdded(Project *proj)
Constructor.
Definition:
ProjectEvents.h:54
te::qt::af::evt::Event
A base class for application events.
Definition:
Event.h:60
te::qt::af::evt::ProjectAdded
It indicates that a new project was created.
Definition:
ProjectEvents.h:48
te::qt::af::evt::ProjectUnsaved
It indicates that the project has unsaved changes.
Definition:
ProjectEvents.h:69
git_release
src
terraview
events
ProjectEvents.h
Generated on Fri Dec 4 2020 09:43:38 for TerraLib by
1.8.20