Loading...
Searching...
No Matches
FolderLayer.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 terralib/maptools/FolderLayer.h
22
23 \brief A layer that can be used as a container for other kind of layers.
24*/
25
26#ifndef __TERRALIB_MAPTOOLS_INTERNAL_FOLDERLAYER_H
27#define __TERRALIB_MAPTOOLS_INTERNAL_FOLDERLAYER_H
28
29// TerraLib
30#include "AbstractLayer.h"
31
32namespace te
33{
34 namespace map
35 {
36 /*!
37 \class FolderLayer
38
39 \brief A layer that can be used as a container for other kind of layers.
40
41 \ingroup map
42
43 \sa AbstractLayer, QueryLayer, DataSetLayer, RasterLayer
44 */
46 {
47 public:
48
49 /*!
50 \brief It initializes a new layer.
51
52 \param parent The parent layer (NULL if it has no parent).
53 */
55
56 /*!
57 \brief It initializes a new layer.
58
59 \param id The layer id.
60 \param parent The parent layer (NULL if it has no parent).
61 */
62 FolderLayer(const std::string& id, AbstractLayer* parent = 0);
63
64 /*!
65 \brief It initializes a new Layer.
66
67 \param id The layer id.
68 \param title The title is a brief description about the layer.
69 \param parent The parent layer (NULL if it has no parent).
70 */
71 FolderLayer(const std::string& id, const std::string& title, AbstractLayer* parent = 0);
72
73 /*! \brief Destructor. */
75
77
79
81
82 std::unique_ptr<LayerSchema> getSchema() const;
83
84 std::unique_ptr<te::da::DataSet> getData(te::common::TraverseType travType = te::common::FORWARDONLY,
85 const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
86
87 std::unique_ptr<te::da::DataSet> getData(const std::string& propertyName,
88 const te::gm::Envelope* e,
91 const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
92
93 std::unique_ptr<te::da::DataSet> getData(const std::string& propertyName,
94 const te::gm::Geometry* g,
97 const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
98
99 std::unique_ptr<te::da::DataSet> getData(te::da::Expression* restriction,
101 const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
102
103 std::unique_ptr<te::da::DataSet> getData(const te::da::ObjectIdSet* oids,
105 const te::common::AccessPolicy accessPolicy = te::common::RAccess) const;
106
107 bool isValid() const;
108
109 void draw(Canvas* canvas, const te::gm::Envelope& bbox, int srid, const double& scale, bool* cancel) { }
110
111 /*!
112 \brief It returns the layer type: FOLDERLAYER.
113
114 \return The layer type: FOLDERLAYER.
115 */
116 const std::string& getType() const;
117
118 private:
119
120 static const std::string sm_type; //!< A static data member used in the implementation of getType method.
121 };
122
123 typedef boost::intrusive_ptr<FolderLayer> FolderLayerPtr;
124
125 } // end namespace map
126} // end namespace te
127
128#endif // __TERRALIB_MAPTOOLS_INTERNAL_FOLDERLAYER_H
129
This is the base class for Layers.
This is an abstract class that models a query expression.
Definition: Expression.h:48
This class represents a set of unique ids created in the same context. i.e. from the same data set.
Definition: ObjectIdSet.h:56
An Envelope defines a 2D rectangular region.
Definition: Envelope.h:52
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
Definition: Geometry.h:78
This is the base class for layers.
Definition: AbstractLayer.h:78
A canvas is an abstraction of a drawing area.
Definition: Canvas.h:93
A layer that can be used as a container for other kind of layers.
Definition: FolderLayer.h:46
std::unique_ptr< te::da::DataSet > getData(te::common::TraverseType travType=te::common::FORWARDONLY, const te::common::AccessPolicy accessPolicy=te::common::RAccess) const
It gets the dataset identified by the layer name.
FolderLayer(const std::string &id, const std::string &title, AbstractLayer *parent=0)
It initializes a new Layer.
AbstractLayer * clone()
It returns a clone of the object.
FolderLayer(AbstractLayer *parent=0)
It initializes a new layer.
FolderLayer(const std::string &id, AbstractLayer *parent=0)
It initializes a new layer.
std::unique_ptr< te::da::DataSet > getData(const te::da::ObjectIdSet *oids, te::common::TraverseType travType=te::common::FORWARDONLY, const te::common::AccessPolicy accessPolicy=te::common::RAccess) const
It gets the dataset from the given set of objects identification.
static const std::string sm_type
A static data member used in the implementation of getType method.
Definition: FolderLayer.h:120
void updateVisibility()
It updates the visibility of this layer.
const std::string & getType() const
It returns the layer type: FOLDERLAYER.
std::unique_ptr< te::da::DataSet > getData(const std::string &propertyName, const te::gm::Envelope *e, te::gm::SpatialRelation r=te::gm::INTERSECTS, te::common::TraverseType travType=te::common::FORWARDONLY, const te::common::AccessPolicy accessPolicy=te::common::RAccess) const
It gets the dataset identified by the layer name using a spatial filter over the specified property.
void setVisibility(Visibility v)
It sets the layer visibility.
void draw(Canvas *canvas, const te::gm::Envelope &bbox, int srid, const double &scale, bool *cancel)
It draws the layer geographic objects in the given canvas using the informed SRS.
Definition: FolderLayer.h:109
~FolderLayer()
Destructor.
std::unique_ptr< te::da::DataSet > getData(const std::string &propertyName, const te::gm::Geometry *g, te::gm::SpatialRelation r, te::common::TraverseType travType=te::common::FORWARDONLY, const te::common::AccessPolicy accessPolicy=te::common::RAccess) const
It gets the dataset identified by the layer name using a spatial filter over the given geometric prop...
std::unique_ptr< te::da::DataSet > getData(te::da::Expression *restriction, te::common::TraverseType travType=te::common::FORWARDONLY, const te::common::AccessPolicy accessPolicy=te::common::RAccess) const
It gets the dataset identified by the layer name using the given restriction.
std::unique_ptr< LayerSchema > getSchema() const
It returns the layer schema.
bool isValid() const
It returns true if the layer can be used for instance to draw, otherwise, it returns false.
TraverseType
A dataset can be traversed in two ways:
Definition: Enums.h:54
@ FORWARDONLY
Definition: Enums.h:55
AccessPolicy
Supported data access policies (can be used as bitfield).
Definition: Enums.h:41
@ RAccess
Definition: Enums.h:43
SpatialRelation
Spatial relations between geometric objects.
Definition: Enums.h:128
@ INTERSECTS
Definition: Enums.h:130
boost::intrusive_ptr< FolderLayer > FolderLayerPtr
Definition: FolderLayer.h:123
Visibility
Each layer can have three states of visibility.
Definition: Enums.h:140
TerraLib.
#define TEMAPEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:60