##// 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:

r1348:eede5e75e31f
r1387:3f0567bfecb5 HEAD
Show More
CatalogueExplorer.h
43 lines | 1.0 KiB | text/x-c | CLexer
Adds the new CatalogueExplorer dialog
r1128 #ifndef SCIQLOP_CATALOGUEEXPLORER_H
#define SCIQLOP_CATALOGUEEXPLORER_H
Retrieves zone names from the visualization
r1169 #include <Common/spimpl.h>
Adds the new CatalogueExplorer dialog
r1128 #include <QDialog>
namespace Ui {
class CatalogueExplorer;
}
Updates model after an event has been created through the colored zone
r1286 class CatalogueEventsWidget;
class CatalogueSideBarWidget;
Retrieves zone names from the visualization
r1169 class VisualizationWidget;
Link with selection zone on event creation
r1348 class VisualizationSelectionZoneItem;
class DBEvent;
Retrieves zone names from the visualization
r1169
Adds the new CatalogueExplorer dialog
r1128 class CatalogueExplorer : public QDialog {
Q_OBJECT
public:
explicit CatalogueExplorer(QWidget *parent = 0);
virtual ~CatalogueExplorer();
Retrieves zone names from the visualization
r1169 void setVisualizationWidget(VisualizationWidget *visualization);
Updates model after an event has been created through the colored zone
r1286 CatalogueEventsWidget &eventsWidget() const;
CatalogueSideBarWidget &sideBarWidget() const;
Link with selection zone on event creation
r1348 void clearSelectionZones();
void addSelectionZoneItem(const std::shared_ptr<DBEvent> &event, const QString &productId,
VisualizationSelectionZoneItem *selectionZone);
Adds the new CatalogueExplorer dialog
r1128 private:
Ui::CatalogueExplorer *ui;
Retrieves zone names from the visualization
r1169
class CatalogueExplorerPrivate;
spimpl::unique_impl_ptr<CatalogueExplorerPrivate> impl;
Adds the new CatalogueExplorer dialog
r1128 };
#endif // SCIQLOP_CATALOGUEEXPLORER_H