##// END OF EJS Templates
Minor fix...
Minor fix By default sets the management mode of the thresholds of a color scale to 'manual', to avoid the recalculation of the thresholds for scalars and vectors

File last commit:

r1105:342312d662e7
r1110:0e96e473601d
Show More
CatalogueInspectorWidget.h
32 lines | 754 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueInspectorWidget.h
Inspector
r1099 #ifndef SCIQLOP_CATALOGUEINSPECTORWIDGET_H
#define SCIQLOP_CATALOGUEINSPECTORWIDGET_H
Sub widget classes
r1095
#include <QWidget>
namespace Ui {
class CatalogueInspectorWidget;
}
class CatalogueInspectorWidget : public QWidget {
Q_OBJECT
public:
explicit CatalogueInspectorWidget(QWidget *parent = 0);
Inspector
r1099 virtual ~CatalogueInspectorWidget();
/// Enum matching the pages inside the stacked widget
enum class Page { Empty, CatalogueProperties, EventProperties };
Page currentPage() const;
Skeleton to fill the inspector with the selection
r1105 void setEvent(const QString &event);
void setCatalogue(const QString &catalogue);
Inspector
r1099 public slots:
void showPage(Page page);
Sub widget classes
r1095
private:
Ui::CatalogueInspectorWidget *ui;
};
Inspector
r1099 #endif // SCIQLOP_CATALOGUEINSPECTORWIDGET_H