##// END OF EJS Templates
Rebase fix CatalogueCatalogue
Rebase fix CatalogueCatalogue

File last commit:

r1231:073d4af7c849
r1269:66e1a8e9fbb1
Show More
CatalogueExplorer.h
35 lines | 789 B | text/x-c | CLexer
Adds the new CatalogueExplorer dialog
r1093 #ifndef SCIQLOP_CATALOGUEEXPLORER_H
#define SCIQLOP_CATALOGUEEXPLORER_H
Retrieves zone names from the visualization
r1136 #include <Common/spimpl.h>
Adds the new CatalogueExplorer dialog
r1093 #include <QDialog>
namespace Ui {
class CatalogueExplorer;
}
Updates model after an event has been created through the colored zone
r1231 class CatalogueEventsWidget;
class CatalogueSideBarWidget;
Retrieves zone names from the visualization
r1136 class VisualizationWidget;
Adds the new CatalogueExplorer dialog
r1093 class CatalogueExplorer : public QDialog {
Q_OBJECT
public:
explicit CatalogueExplorer(QWidget *parent = 0);
virtual ~CatalogueExplorer();
Retrieves zone names from the visualization
r1136 void setVisualizationWidget(VisualizationWidget *visualization);
Updates model after an event has been created through the colored zone
r1231 CatalogueEventsWidget &eventsWidget() const;
CatalogueSideBarWidget &sideBarWidget() const;
Adds the new CatalogueExplorer dialog
r1093 private:
Ui::CatalogueExplorer *ui;
Retrieves zone names from the visualization
r1136
class CatalogueExplorerPrivate;
spimpl::unique_impl_ptr<CatalogueExplorerPrivate> impl;
Adds the new CatalogueExplorer dialog
r1093 };
#endif // SCIQLOP_CATALOGUEEXPLORER_H