Mercurial > hg > svgui
diff layer/Colour3DPlotLayer.h @ 373:0895517bb2d1 1.2-stable
* merge from trunk (1.2 ended up being tracked from trunk, but we may want
this branch for fixes later)
author | Chris Cannam |
---|---|
date | Wed, 27 Feb 2008 10:32:45 +0000 |
parents | c0b9eec70639 |
children |
line wrap: on
line diff
--- a/layer/Colour3DPlotLayer.h Thu Nov 29 10:43:54 2007 +0000 +++ b/layer/Colour3DPlotLayer.h Wed Feb 27 10:32:45 2008 +0000 @@ -75,6 +75,7 @@ virtual PropertyList getProperties() const; virtual PropertyType getPropertyType(const PropertyName &) const; virtual QString getPropertyLabel(const PropertyName &) const; + virtual QString getPropertyIconName(const PropertyName &) const; virtual QString getPropertyGroupName(const PropertyName &) const; virtual int getPropertyRangeAndValue(const PropertyName &, int *min, int *max, int *deflt) const; @@ -97,6 +98,9 @@ void setNormalizeVisibleArea(bool n); bool getNormalizeVisibleArea() const; + void setInvertVertical(bool i); + bool getInvertVertical() const; + virtual const Model *getSliceableModel() const { return m_model; } virtual void toXml(QTextStream &stream, QString indent = "", @@ -116,6 +120,7 @@ int m_colourMap; bool m_normalizeColumns; bool m_normalizeVisibleArea; + bool m_invertVertical; void getColumn(size_t col, DenseThreeDimensionalModel::Column &) const;