##// END OF EJS Templates
More GUI tests refactoring, this will allow more complex tests and ease sync graph tests...
More GUI tests refactoring, this will allow more complex tests and ease sync graph tests Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1294:eede5e75e31f
r1370:c3077e0c31af
Show More
CatalogueExplorer.h
43 lines | 1.0 KiB | 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;
Link with selection zone on event creation
r1294 class VisualizationSelectionZoneItem;
class DBEvent;
Retrieves zone names from the visualization
r1136
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;
Link with selection zone on event creation
r1294 void clearSelectionZones();
void addSelectionZoneItem(const std::shared_ptr<DBEvent> &event, const QString &productId,
VisualizationSelectionZoneItem *selectionZone);
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