##// END OF EJS Templates
Refactoring of catalogue display using a QTreeView and a custom model based on QTreeWidgetItem
Refactoring of catalogue display using a QTreeView and a custom model based on QTreeWidgetItem

File last commit:

r1195:800f227572ac
r1283:74c199fc287e
Show More
CatalogueActionManager.h
17 lines | 401 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueActionManager.h
#ifndef SCIQLOP_CATALOGUEACTIONMANAGER_H
#define SCIQLOP_CATALOGUEACTIONMANAGER_H
#include <Common/spimpl.h>
class CatalogueActionManager {
public:
CatalogueActionManager();
void installSelectionZoneActions();
private:
class CatalogueActionManagerPrivate;
spimpl::unique_impl_ptr<CatalogueActionManagerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEACTIONMANAGER_H