##// END OF EJS Templates
Adds the ability to force an acquisition pending for an operation (1)...
Adds the ability to force an acquisition pending for an operation (1) Creates struct that contains operation properties: - its weight - the flag to force acquisition waiting

File last commit:

r1169:6897882500e5
r1249:b9a47ff1b9cc
Show More
CatalogueExplorer.h
29 lines | 622 B | 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;
}
Retrieves zone names from the visualization
r1169 class VisualizationWidget;
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);
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