QGIS API Documentation  3.14.0-Pi (9f7028fd23)
qgsbrowserguimodel.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsbrowserguimodel.h
3  ---------------------
4  begin : June 2019
5  copyright : (C) 2019 by Peter Petrik
6  email : zilolv at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 #ifndef QGSBROWSERGUIMODEL_H
16 #define QGSBROWSERGUIMODEL_H
17 
18 #include "qgis_gui.h"
19 #include "qgsdataitem.h"
20 #include "qgsbrowsermodel.h"
21 
23 class QgsMessageBar;
24 
37 class GUI_EXPORT QgsBrowserGuiModel : public QgsBrowserModel
38 {
39  Q_OBJECT
40 
41  public:
42 
50  explicit QgsBrowserGuiModel( QObject *parent = nullptr );
51 
52  Qt::ItemFlags flags( const QModelIndex &index ) const override;
53  bool dropMimeData( const QMimeData *data, Qt::DropAction action,
54  int row, int column, const QModelIndex &parent ) override;
55  bool setData( const QModelIndex &index, const QVariant &value, int role = Qt::EditRole ) override;
57  void setMessageBar( QgsMessageBar *bar );
58 
59  private:
60  QgsDataItemGuiContext createDataItemContext() const;
61  QgsMessageBar *mMessageBar = nullptr;
62 };
63 
64 #endif // QGSBROWSERGUIMODEL_H
QgsBrowserModel::dropMimeData
bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) override
Definition: qgsbrowsermodel.cpp:643
qgsdataitem.h
QgsMessageBar
Definition: qgsmessagebar.h:60
QgsDataItemGuiContext
Definition: qgsdataitemguiprovider.h:39
qgsbrowsermodel.h
QgsBrowserModel::setData
bool setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) override
Definition: qgsbrowsermodel.cpp:311
QgsBrowserModel::flags
Qt::ItemFlags flags(const QModelIndex &index) const override
Definition: qgsbrowsermodel.cpp:232
QgsBrowserGuiModel
Definition: qgsbrowserguimodel.h:37
QgsBrowserModel
Definition: qgsbrowsermodel.h:73