mapnik/demo/viewer/layerlistmodel.hpp

52 lines
1.7 KiB
C++
Raw Normal View History

2007-08-07 17:09:41 +02:00
/* This file is part of Mapnik (c++ mapping toolkit)
2011-10-23 16:09:12 +02:00
*
2015-06-16 12:49:16 +02:00
* Copyright (C) 2015 Artem Pavlenko
2007-08-07 17:09:41 +02:00
*
* Mapnik is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
2016-01-26 10:54:42 +01:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2007-08-07 17:09:41 +02:00
*/
#ifndef LAYER_LIST_MODEL_HPP
#define LAYER_LIST_MODEL_HPP
#include <QAbstractListModel>
#include <QModelIndex>
#include <QVariant>
2012-04-18 13:15:50 +02:00
#ifndef Q_MOC_RUN
2007-08-07 17:09:41 +02:00
#include <mapnik/map.hpp>
2012-04-18 13:15:50 +02:00
#endif
#include <boost/optional/optional.hpp>
2007-08-07 17:09:41 +02:00
class LayerListModel : public QAbstractListModel
{
Q_OBJECT
public:
LayerListModel(std::shared_ptr<mapnik::Map> map, QObject * parent = 0);
2007-08-07 17:09:41 +02:00
int rowCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role) const;
QVariant headerData(int section, Qt::Orientation orientation,
2011-10-23 16:09:12 +02:00
int role = Qt::DisplayRole) const;
2007-08-07 17:09:41 +02:00
bool setData(const QModelIndex &index, const QVariant &value,
int role = Qt::EditRole);
2011-10-23 16:09:12 +02:00
Qt::ItemFlags flags(QModelIndex const& index) const;
2009-12-16 21:02:06 +01:00
boost::optional<mapnik::layer&> map_layer(int i);
2007-08-07 17:09:41 +02:00
private:
std::shared_ptr<mapnik::Map> map_;
2007-08-07 17:09:41 +02:00
};
#endif //LAYER_LIST_MODEL_HPP