15 #ifndef QGSBROWSERMODEL_H 16 #define QGSBROWSERMODEL_H 18 #include "qgis_core.h" 19 #include <QAbstractItemModel> 24 #include <QFutureWatcher> 44 void finished(
QgsDataItem *item,
const QVector <QgsDataItem *> &items );
84 PathRole = Qt::UserRole,
85 CommentRole = Qt::UserRole + 1,
90 Qt::ItemFlags flags(
const QModelIndex &index )
const override;
91 QVariant data(
const QModelIndex &index,
int role = Qt::DisplayRole )
const override;
92 bool setData(
const QModelIndex &index,
const QVariant &value,
int role = Qt::EditRole )
override;
93 QVariant headerData(
int section, Qt::Orientation orientation,
int role = Qt::DisplayRole )
const override;
94 int rowCount(
const QModelIndex &parent = QModelIndex() )
const override;
95 int columnCount(
const QModelIndex &parent = QModelIndex() )
const override;
96 QModelIndex index(
int row,
int column,
const QModelIndex &parent = QModelIndex() )
const override;
97 QModelIndex parent(
const QModelIndex &index )
const override;
98 QStringList mimeTypes()
const override;
99 QMimeData *mimeData(
const QModelIndexList &indexes )
const override;
100 bool dropMimeData(
const QMimeData *data, Qt::DropAction action,
int row,
int column,
const QModelIndex &parent )
override;
101 bool hasChildren(
const QModelIndex &parent = QModelIndex() )
const override;
102 bool canFetchMore(
const QModelIndex &parent )
const override;
103 void fetchMore(
const QModelIndex &parent )
override;
119 QgsDataItem *dataItem(
const QModelIndex &idx )
const;
122 void refresh(
const QString &path );
125 void refresh(
const QModelIndex &index = QModelIndex() );
134 QModelIndex findPath(
const QString &path, Qt::MatchFlag matchFlag = Qt::MatchExactly );
137 static QModelIndex findPath( QAbstractItemModel *model,
const QString &path, Qt::MatchFlag matchFlag = Qt::MatchExactly )
SIP_SKIP;
149 bool initialized()
const {
return mInitialized; }
159 void connectionsChanged();
171 void refreshDrives();
173 void beginInsertItems(
QgsDataItem *parent,
int first,
int last );
174 void endInsertItems();
175 void beginRemoveItems(
QgsDataItem *parent,
int first,
int last );
176 void endRemoveItems();
189 void addFavoriteDirectory(
const QString &directory,
const QString &name = QString() );
196 void removeFavorite(
const QModelIndex &index );
198 void updateProjectHome();
212 void removeRootItems();
219 bool mInitialized =
false;
220 QMap< QString, QgsDataItem * > mDriveItems;
226 friend class TestQgsBrowserModel;
227 friend class TestQgsBrowserProxyModel;
230 #endif // QGSBROWSERMODEL_H
QgsDataItem * item() const
QVector< QgsDataItem * > mRootItems
A directory: contains subdirectories and layers.
Base class for all items in the model.
Custom sort role, see QgsDataItem::sortKey()
Contains various Favorites directories.
A model for showing available data sources and other items in a structured tree.