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 
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)
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  */
75  {
76  }
77  };
78  }
79  }
80  }
81 }
82 
83 #endif //__TERRALIB_QT_AF_EVENTS_INTERNAL_PROJECTEVENTS_H
It indicates that a new project was created.
Definition: ProjectEvents.h:47
Project * m_proj
Pointer to the new project.
Definition: ProjectEvents.h:60
A base class for application events.
Definition: Event.h:59
ProjectAdded(Project *proj)
Constructor.
Definition: ProjectEvents.h:54
URI C++ Library.
It indicates that the project has unsaved changes.
Definition: ProjectEvents.h:68
Enumerations for the TerraLib Application Framework.