X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvIntensityValueSlider.h;h=7de79cf3a40c46b78477a1b3d4c25dd1d3b5706e;hb=0083c3fb2c66812489631c7551709d121de51625;hp=4050de4ded33ef7dadcb06cfbf6a7b2307822376;hpb=c1370c27d5fc65b499d6be1c5dc49a96da0bb8cc;p=clitk.git diff --git a/vv/vvIntensityValueSlider.h b/vv/vvIntensityValueSlider.h index 4050de4..7de79cf 100644 --- a/vv/vvIntensityValueSlider.h +++ b/vv/vvIntensityValueSlider.h @@ -1,33 +1,5 @@ -/*========================================================================= - - Program: vv - Module: $RCSfile: vvIntensityValueSlider.h,v $ - Language: C++ - Date: $Date: 2010/02/05 09:06:46 $ - Version: $Revision: 1.2 $ - Author : David Sarrut (david.sarrut@creatis.insa-lyon.fr) - - Copyright (C) 2008 - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr - CREATIS-LRMN http://www.creatis.insa-lyon.fr - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 3 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - - =========================================================================*/ - #ifndef VVINTENSITYVALUESLIDER_H #define VVINTENSITYVALUESLIDER_H - #include #include @@ -50,13 +22,16 @@ class vvIntensityValueSlider: double GetValue() const { return mValue; } void SetValue(double d); void SetMaximum(double max); - void SetMinimum(double min); + void SetMinimum(double min); + void SetSingleStep(double step); void resetMinimum() { SetMinimum(mMin); } void resetMaximum() { SetMaximum(mMax); } public slots: void valueChangedFromSpinBox(double v); void valueChangedFromSlider(int v); + void SingleStepPlusClicked(); + void SingleStepMinusClicked(); signals: void valueChanged(double); @@ -64,10 +39,12 @@ class vvIntensityValueSlider: protected: Ui::vvIntensityValueSlider ui; vvImage * mImage; + double mMin; + double mMax; + double mWidth; double mSliderFactor; double mValue; - double mMax; - double mMin; + bool mIsInteger; }; // end class vvIntensityValueSlider //------------------------------------------------------------------------------