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() );
135 QModelIndex findPath(
const QString &path, Qt::MatchFlag matchFlag = Qt::MatchExactly );
138 static QModelIndex findPath( QAbstractItemModel *model,
const QString &path, Qt::MatchFlag matchFlag = Qt::MatchExactly )
SIP_SKIP;
149 QModelIndex findUri(
const QString &uri, QModelIndex index = QModelIndex() );
171 QMap<QString, QgsDirectoryItem *> driveItems()
const;
182 void connectionsChanged();
194 void refreshDrives();
196 void beginInsertItems(
QgsDataItem *parent,
int first,
int last );
197 void endInsertItems();
198 void beginRemoveItems(
QgsDataItem *parent,
int first,
int last );
199 void endRemoveItems();
212 void addFavoriteDirectory(
const QString &directory,
const QString &name = QString() );
219 void removeFavorite(
const QModelIndex &index );
227 void removeFavorite( QgsFavoriteItem *favorite )
SIP_SKIP;
229 void updateProjectHome();
244 void removeRootItems();
251 bool mInitialized =
false;
252 QMap< QString, QgsDirectoryItem * > mDriveItems;
258 friend class TestQgsBrowserModel;
259 friend class TestQgsBrowserProxyModel;
262 #endif // QGSBROWSERMODEL_H
bool initialized() const
Returns true if the model has been initialized.
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.