mapnik/demo/viewer/layerwidget.hpp

55 lines
1.5 KiB
C++
Raw Permalink 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
*
2024-07-22 11:20:47 +02:00
* Copyright (C) 2024 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 LAYERWIDGET_HPP
#define LAYERWIDGET_HPP
#include <QTabWidget>
#include <QListView>
#include <QTreeView>
class LayerTab : public QListView
{
Q_OBJECT
2022-01-26 23:34:08 +01:00
public:
LayerTab(QWidget* parent = 0);
void paintEvent(QPaintEvent* e);
signals:
void update_mapwidget();
void layerSelected(int) const;
2022-01-26 23:34:08 +01:00
public slots:
void layerInfo();
void layerInfo2(QModelIndex const&);
2022-01-26 23:34:08 +01:00
protected slots:
void dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight, const QVector<int>& roles);
void selectionChanged(const QItemSelection& selected, const QItemSelection&);
2007-08-07 17:09:41 +02:00
};
class StyleTab : public QTreeView
{
Q_OBJECT
2022-01-26 23:34:08 +01:00
public:
StyleTab(QWidget* parent = 0);
protected:
void contextMenuEvent(QContextMenuEvent* event);
2007-08-07 17:09:41 +02:00
};
2011-10-23 16:09:12 +02:00
#endif