/usr/include/gofigure2/ctkDoubleSlider.h is in libgofigure-dev 0.9.0-3+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | /*=========================================================================
Library: CTK
Copyright (c) Kitware Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.commontk.org/LICENSE
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=========================================================================*/
#ifndef __ctkDoubleSlider_h
#define __ctkDoubleSlider_h
// Qt includes
#include <QSlider>
#include <QWidget>
// CTK includes
#include <ctkPimpl.h>
#include "ctkConfigure.h"
class ctkDoubleSliderPrivate;
/// ctkDoubleSlider is a QSlider that controls doubles instead of integers.
/// ctkDoubleSlider internally aggregates a QSlider
/// TODO: ctkDoubleSlider tries to represent a double value with integers. It's
/// of course non-optimal and can lead to errors, it would be better if
/// ctkDoubleSlider works like QDoubleSpinBox, where the value is a QVariant
/// and the conversion between double and integer is only done to convert
/// to/from screen coordinates.
/// \sa ctkRangeSlider, ctkDoubleRangeSlider, ctkRangeWidget
class ctk_EXPORT ctkDoubleSlider : public QWidget
{
Q_OBJECT
Q_PROPERTY(double value READ value WRITE setValue)
Q_PROPERTY(double sliderPosition READ sliderPosition WRITE setSliderPosition)
Q_PROPERTY(double singleStep READ singleStep WRITE setSingleStep)
Q_PROPERTY(double minimum READ minimum WRITE setMinimum)
Q_PROPERTY(double maximum READ maximum WRITE setMaximum)
Q_PROPERTY(double tickInterval READ tickInterval WRITE setTickInterval)
Q_PROPERTY(bool tracking READ hasTracking WRITE setTracking)
Q_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation)
public:
/// Superclass typedef
typedef QWidget Superclass;
/// Constructors, builds a slider whose default values are the same as
/// QSlider (vertical by default).
explicit ctkDoubleSlider(QWidget* parent = 0);
/// Constructors, builds a slider whose default values are the same as
/// QSlider (vertical by default).
explicit ctkDoubleSlider(Qt::Orientation orient, QWidget* parent = 0);
/// Destructor
virtual ~ctkDoubleSlider();
///
/// This property holds the sliders's minimum value.
/// When setting this property, the maximum is adjusted if necessary to
/// ensure that the range remains valid. Also the slider's current value
/// is adjusted to be within the new range.
void setMinimum(double min);
double minimum()const;
///
/// This property holds the slider's maximum value.
/// When setting this property, the minimum is adjusted if necessary to
/// ensure that the range remains valid. Also the slider's current value
/// is adjusted to be within the new range.
void setMaximum(double max);
double maximum()const;
///
/// Sets the slider's minimum to min and its maximum to max.
/// If max is smaller than min, min becomes the only legal value.
void setRange(double min, double max);
///
/// This property holds the slider's current value.
/// The slider forces the value to be within the legal range:
/// minimum <= value <= maximum.
/// Changing the value also changes the sliderPosition.
double value()const;
///
/// This property holds the single step.
/// The smaller of two natural steps that an abstract sliders provides and
/// typically corresponds to the user pressing an arrow key
void setSingleStep(double step);
double singleStep()const;
///
/// This property holds the interval between tickmarks.
/// This is a value interval, not a pixel interval. If it is 0, the slider
/// will choose between lineStep() and pageStep().
/// The default value is 0.
void setTickInterval(double ti);
double tickInterval()const;
///
/// This property holds the current slider position.
/// If tracking is enabled (the default), this is identical to value.
double sliderPosition()const;
void setSliderPosition(double);
///
/// This property holds whether slider tracking is enabled.
/// If tracking is enabled (the default), the slider emits the valueChanged()
/// signal while the slider is being dragged. If tracking is disabled, the
/// slider emits the valueChanged() signal only when the user releases the
/// slider.
void setTracking(bool enable);
bool hasTracking()const;
///
/// Triggers a slider action. Possible actions are SliderSingleStepAdd,
/// SliderSingleStepSub, SliderPageStepAdd, SliderPageStepSub,
/// SliderToMinimum, SliderToMaximum, and SliderMove.
void triggerAction(QAbstractSlider::SliderAction action);
///
/// This property holds the orientation of the slider.
/// The orientation must be Qt::Vertical (the default) or Qt::Horizontal.
Qt::Orientation orientation()const;
public slots:
///
/// This property holds the slider's current value.
/// The slider forces the value to be within the legal range:
/// minimum <= value <= maximum.
/// Changing the value also changes the sliderPosition.
void setValue(double value);
///
/// This property holds the orientation of the slider.
/// The orientation must be Qt::Vertical (the default) or Qt::Horizontal.
void setOrientation(Qt::Orientation orientation);
signals:
///
/// This signal is emitted when the slider value has changed, with the new
/// slider value as argument.
void valueChanged(double value);
///
/// This signal is emitted when sliderDown is true and the slider moves.
/// This usually happens when the user is dragging the slider. The value
/// is the new slider position.
/// This signal is emitted even when tracking is turned off.
void sliderMoved(double position);
///
/// This signal is emitted when the user presses the slider with the mouse,
/// or programmatically when setSliderDown(true) is called.
void sliderPressed();
///
/// This signal is emitted when the user releases the slider with the mouse,
/// or programmatically when setSliderDown(false) is called.
void sliderReleased();
///
/// This signal is emitted when the slider range has changed, with min being
/// the new minimum, and max being the new maximum.
/// Warning: don't confound with valuesChanged(double, double);
/// \sa QAbstractSlider::rangeChanged()
void rangeChanged(double min, double max);
protected slots:
void onValueChanged(int value);
void onSliderMoved(int position);
void onRangeChanged(int min, int max);
protected:
QScopedPointer<ctkDoubleSliderPrivate> d_ptr;
private:
Q_DECLARE_PRIVATE(ctkDoubleSlider);
Q_DISABLE_COPY(ctkDoubleSlider);
};
#endif
|