##// END OF EJS Templates
Separate the initialization of the properties of the graph of the update of the units of the graph....
Separate the initialization of the properties of the graph of the update of the units of the graph. The initialization of the properties is carried out when adding a variable in the graph, the update of the units is carried out when loading the data of this variable

File last commit:

r1187:a8e66620b749
r1308:41b7c6aab8be
Show More
VisualizationMultiZoneSelectionDialog.h
30 lines | 912 B | text/x-c | CLexer
/ gui / include / Visualization / VisualizationMultiZoneSelectionDialog.h
#ifndef SCIQLOP_VISUALIZATIONMULTIZONESELECTIONDIALOG_H
#define SCIQLOP_VISUALIZATIONMULTIZONESELECTIONDIALOG_H
#include <Common/spimpl.h>
#include <QDialog>
namespace Ui {
class VisualizationMultiZoneSelectionDialog;
}
class VisualizationSelectionZoneItem;
class VisualizationMultiZoneSelectionDialog : public QDialog {
Q_OBJECT
public:
explicit VisualizationMultiZoneSelectionDialog(QWidget *parent = 0);
virtual ~VisualizationMultiZoneSelectionDialog();
void setZones(const QVector<VisualizationSelectionZoneItem *> &zones);
QMap<VisualizationSelectionZoneItem *, bool> selectedZones() const;
private:
Ui::VisualizationMultiZoneSelectionDialog *ui;
class VisualizationMultiZoneSelectionDialogPrivate;
spimpl::unique_impl_ptr<VisualizationMultiZoneSelectionDialogPrivate> impl;
};
#endif // SCIQLOP_VISUALIZATIONMULTIZONESELECTIONDIALOG_H