##// END OF EJS Templates
Remove unused pending request of worker since it's already in the VC....
Remove unused pending request of worker since it's already in the VC. Fix bug with progress asynchrone computation

File last commit:

r1381:07b2554d7734
r1387:3f0567bfecb5 HEAD
Show More
CatalogueActionManager.h
20 lines | 509 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueActionManager.h
Zone actions to create a new event
r1195 #ifndef SCIQLOP_CATALOGUEACTIONMANAGER_H
#define SCIQLOP_CATALOGUEACTIONMANAGER_H
#include <Common/spimpl.h>
Updates model after an event has been created through the colored zone
r1286 class CatalogueExplorer;
Zone actions to create a new event
r1195 class CatalogueActionManager {
public:
Updates model after an event has been created through the colored zone
r1286 CatalogueActionManager(CatalogueExplorer *catalogueExplorer);
Zone actions to create a new event
r1195
void installSelectionZoneActions();
Refresh catalogue menu when the catalogue list changed
r1381 void refreshCreateInCatalogueAction();
Zone actions to create a new event
r1195
private:
class CatalogueActionManagerPrivate;
spimpl::unique_impl_ptr<CatalogueActionManagerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEACTIONMANAGER_H