Home
last modified time | relevance | path

Searched refs:SortedDirModel (Results 1 – 19 of 19) sorted by relevance

/dports/graphics/gwenview/gwenview-21.12.3/lib/semanticinfo/
H A Dsorteddirmodel.cpp71 SortedDirModel::SortedDirModel(QObject *parent) in SortedDirModel() function in Gwenview::SortedDirModel
91 SortedDirModel::~SortedDirModel() in ~SortedDirModel()
96 MimeTypeUtils::Kinds SortedDirModel::kindFilter() const in kindFilter()
133 KDirLister *SortedDirModel::dirLister() const in dirLister()
138 void SortedDirModel::reload() in reload()
161 QUrl SortedDirModel::urlForIndex(const QModelIndex &index) const in urlForIndex()
185 QModelIndex SortedDirModel::indexForUrl(const QUrl &url) const in indexForUrl()
251 void SortedDirModel::applyFilters() in applyFilters()
256 void SortedDirModel::doApplyFilters() in doApplyFilters()
299 bool SortedDirModel::hasDocuments() const in hasDocuments()
[all …]
H A Dsorteddirmodel.h48 class SortedDirModel; variable
52 AbstractSortedDirModelFilter(SortedDirModel *model);
54 SortedDirModel *model() const in model()
67 QPointer<SortedDirModel> mModel;
74 class GWENVIEWLIB_EXPORT SortedDirModel : public KDirSortFilterProxyModel
78 explicit SortedDirModel(QObject *parent = nullptr);
79 ~SortedDirModel() override;
/dports/graphics/gwenview/gwenview-21.12.3/lib/
H A Dplacetreemodel.cpp63 Node(SortedDirModel *_model, const QUrl &_parentUrl) in Node()
69 SortedDirModel *model;
79 using NodeHashMap = QMap<SortedDirModel *, NodeHash *>;
84 QList<SortedDirModel *> mDirModels;
129 QModelIndex createIndexForPlace(SortedDirModel *dirModel) const in createIndexForPlace()
203 SortedDirModel *dirModel = d->mDirModels[row]; in index()
213 SortedDirModel *dirModel = parentNode.model; in index()
302 auto *dirModel = new SortedDirModel(this); in slotPlacesRowsInserted()
319 SortedDirModel *dirModel = d->mDirModels.takeAt(row); in slotPlacesRowsAboutToBeRemoved()
328 auto *dirModel = static_cast<SortedDirModel *>(sender()); in slotDirRowsAboutToBeInserted()
[all …]
H A Dcontextmanager.h37 class SortedDirModel; variable
49 ContextManager(SortedDirModel *, QObject *parent);
66 SortedDirModel *dirModel() const;
H A Dcontextmanager.cpp40 SortedDirModel *mDirModel;
87 ContextManager::ContextManager(SortedDirModel *dirModel, QObject *parent) in ContextManager()
97 …connect(d->mDirModel, &SortedDirModel::dataChanged, this, &ContextManager::slotDirModelDataChanged… in ContextManager()
114 …connect(d->mDirModel, &SortedDirModel::rowsAboutToBeRemoved, this, &ContextManager::slotRowsAboutT… in ContextManager()
116 connect(d->mDirModel, &SortedDirModel::rowsInserted, this, &ContextManager::slotRowsInserted); in ContextManager()
208 SortedDirModel *ContextManager::dirModel() const in dirModel()
/dports/graphics/gwenview/gwenview-21.12.3/app/
H A Dfiltercontroller.h57 class SortedDirModel; variable
69 NameFilter(SortedDirModel *model) in NameFilter()
115 NameFilterWidget(SortedDirModel *);
138 DateFilter(SortedDirModel *model) in DateFilter()
187 DateFilterWidget(SortedDirModel *);
212 RatingFilter(SortedDirModel *model) in RatingFilter()
258 RatingFilterWidget(SortedDirModel *);
277 TagFilter(SortedDirModel *model) in TagFilter()
322 TagFilterWidget(SortedDirModel *);
343 FilterController(QFrame *filterFrame, SortedDirModel *model);
[all …]
H A Ddocumentinfoprovider.h33 class SortedDirModel; variable
39 DocumentInfoProvider(SortedDirModel *model);
48 SortedDirModel *const mDirModel;
H A Dgvcore.h42 class SortedDirModel; variable
49 GvCore(MainWindow *mainWindow, SortedDirModel *);
61 SortedDirModel *sortedDirModel() const;
H A Dfiltercontroller.cpp55 NameFilterWidget::NameFilterWidget(SortedDirModel *model) in NameFilterWidget()
95 DateFilterWidget::DateFilterWidget(SortedDirModel *model) in DateFilterWidget()
130 RatingFilterWidget::RatingFilterWidget(SortedDirModel *model) in RatingFilterWidget()
171 TagFilterWidget::TagFilterWidget(SortedDirModel *model) in TagFilterWidget()
269 FilterController::FilterController(QFrame *frame, SortedDirModel *dirModel) in FilterController()
H A Dsemanticinfocontextmanageritem.cpp314 SortedDirModel *dirModel = contextManager()->dirModel(); in update()
392 SortedDirModel *dirModel = contextManager()->dirModel(); in slotRatingChanged()
408 SortedDirModel *dirModel = contextManager()->dirModel(); in storeDescription()
419 SortedDirModel *dirModel = contextManager()->dirModel(); in assignTag()
434 SortedDirModel *dirModel = contextManager()->dirModel(); in removeTag()
H A Dfolderviewcontextmanageritem.h38 #define MODEL_CLASS SortedDirModel
H A Dbrowsemainpage.cpp75 SortedDirModel *mDirModel;
331 …connect(d->mDirModel, &SortedDirModel::rowsInserted, this, &BrowseMainPage::slotDirModelRowsInsert… in BrowseMainPage()
332 …connect(d->mDirModel, &SortedDirModel::rowsAboutToBeRemoved, this, &BrowseMainPage::slotDirModelRo… in BrowseMainPage()
333 connect(d->mDirModel, &SortedDirModel::modelReset, this, &BrowseMainPage::slotDirModelReset); in BrowseMainPage()
H A Ddocumentinfoprovider.cpp35 DocumentInfoProvider::DocumentInfoProvider(SortedDirModel *model) in DocumentInfoProvider()
H A Dgvcore.cpp67 SortedDirModel *mDirModel;
315 GvCore::GvCore(MainWindow *mainWindow, SortedDirModel *dirModel) in GvCore()
360 SortedDirModel *GvCore::sortedDirModel() const in sortedDirModel()
H A Dkipiinterface.cpp407 const SortedDirModel *model = contextManager->dirModel(); in currentAlbum()
H A Dmainwindow.cpp228 SortedDirModel *mDirModel;
930 d->mDirModel = new SortedDirModel(this); in MainWindow()
H A Dviewmainpage.cpp387 SortedDirModel *dirModel = mGvCore->sortedDirModel(); in indexForView()
/dports/graphics/gwenview/gwenview-21.12.3/tests/auto/
H A Dcontextmanagertest.cpp51 SortedDirModel dirModel; in QTEST_MAIN()
108 SortedDirModel dirModel; in testInvalidDirUrl()
H A Dsorteddirmodeltest.cpp69 SortedDirModel model; in testHasDocuments()