##// 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
#ifndef SCIQLOP_CATALOGUEEXPLORER_H
#define SCIQLOP_CATALOGUEEXPLORER_H
#include <Common/spimpl.h>
#include <QDialog>
namespace Ui {
class CatalogueExplorer;
}
class CatalogueEventsWidget;
class CatalogueSideBarWidget;
class VisualizationWidget;
class VisualizationSelectionZoneItem;
class DBEvent;
class CatalogueExplorer : public QDialog {
Q_OBJECT
public:
explicit CatalogueExplorer(QWidget *parent = 0);
virtual ~CatalogueExplorer();
void setVisualizationWidget(VisualizationWidget *visualization);
CatalogueEventsWidget &eventsWidget() const;
CatalogueSideBarWidget &sideBarWidget() const;
void clearSelectionZones();
void addSelectionZoneItem(const std::shared_ptr<DBEvent> &event, const QString &productId,
VisualizationSelectionZoneItem *selectionZone);
private:
Ui::CatalogueExplorer *ui;
class CatalogueExplorerPrivate;
spimpl::unique_impl_ptr<CatalogueExplorerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEEXPLORER_H