##// END OF EJS Templates
Refactoring of catalogue display using a QTreeView and a custom model based on QTreeWidgetItem
Refactoring of catalogue display using a QTreeView and a custom model based on QTreeWidgetItem

File last commit:

r1169:6897882500e5
r1283:74c199fc287e
Show More
CatalogueExplorer.h
29 lines | 622 B | text/x-c | CLexer
#ifndef SCIQLOP_CATALOGUEEXPLORER_H
#define SCIQLOP_CATALOGUEEXPLORER_H
#include <Common/spimpl.h>
#include <QDialog>
namespace Ui {
class CatalogueExplorer;
}
class VisualizationWidget;
class CatalogueExplorer : public QDialog {
Q_OBJECT
public:
explicit CatalogueExplorer(QWidget *parent = 0);
virtual ~CatalogueExplorer();
void setVisualizationWidget(VisualizationWidget *visualization);
private:
Ui::CatalogueExplorer *ui;
class CatalogueExplorerPrivate;
spimpl::unique_impl_ptr<CatalogueExplorerPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEEXPLORER_H