Home
last modified time | relevance | path

Searched refs:canCloseAllOther (Results 1 – 12 of 12) sorted by relevance

/dports/devel/okteta/okteta-0.26.6/libs/kasten/gui/system/
H A Dsingledocumentstrategy_p.hpp52 bool canCloseAllOther(AbstractDocument* document) const;
92 inline bool SingleDocumentStrategyPrivate::canCloseAllOther(AbstractDocument* document) const in canCloseAllOther() function in Kasten::SingleDocumentStrategyPrivate
94 return mDocumentManager->canCloseAllOther(document); in canCloseAllOther()
H A Dmultidocumentstrategy_p.hpp54 bool canCloseAllOther(AbstractDocument* document) const;
94 inline bool MultiDocumentStrategyPrivate::canCloseAllOther(AbstractDocument* document) const in canCloseAllOther() function in Kasten::MultiDocumentStrategyPrivate
96 return mDocumentManager->canCloseAllOther(document); in canCloseAllOther()
H A Dmultidocumentstrategy.cpp48 bool MultiDocumentStrategy::canCloseAllOther(AbstractDocument* document) const in canCloseAllOther() function in Kasten::MultiDocumentStrategy
52 return d->canCloseAllOther(document); in canCloseAllOther()
H A Dsingledocumentstrategy.cpp48 bool SingleDocumentStrategy::canCloseAllOther(AbstractDocument* document) const in canCloseAllOther() function in Kasten::SingleDocumentStrategy
52 return d->canCloseAllOther(document); in canCloseAllOther()
H A Dmultidocumentstrategy.hpp46 bool canCloseAllOther(AbstractDocument* document) const override;
H A Dsingledocumentstrategy.hpp46 bool canCloseAllOther(AbstractDocument* document) const override;
H A Dabstractdocumentstrategy.hpp61 virtual bool canCloseAllOther(AbstractDocument* document) const = 0;
/dports/devel/okteta/okteta-0.26.6/libs/kasten/core/system/
H A Ddocumentmanager.cpp111 bool DocumentManager::canCloseAllOther(AbstractDocument* keptDocument) const in canCloseAllOther() function in Kasten::DocumentManager
115 return d->canCloseAllOther(keptDocument); in canCloseAllOther()
H A Ddocumentmanager.hpp53 bool canCloseAllOther(AbstractDocument* document) const;
H A Ddocumentmanager_p.hpp46 bool canCloseAllOther(AbstractDocument* document) const;
H A Ddocumentmanager_p.cpp159 bool DocumentManagerPrivate::canCloseAllOther(AbstractDocument* keptDocument) const in canCloseAllOther() function in Kasten::DocumentManagerPrivate
/dports/devel/okteta/okteta-0.26.6/libs/kasten/controllers/documentsystem/close/
H A Dclosecontroller.cpp89 if (mDocumentStrategy->canCloseAllOther(mDocument)) { in closeAllOther()