pqDoubleRangeWidget.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: pqDoubleRangeWidget.h
5 
6  Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
7  All rights reserved.
8 
9  ParaView is a free software; you can redistribute it and/or modify it
10  under the terms of the ParaView license version 1.2.
11 
12  See License_v1.2.txt for the full ParaView license.
13  A copy of this license can be obtained by contacting
14  Kitware Inc.
15  28 Corporate Drive
16  Clifton Park, NY 12065
17  USA
18 
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
23 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 
31 =========================================================================*/
32 #ifndef pqDoubleRangeWidget_h
33 #define pqDoubleRangeWidget_h
34 
35 #include "pqDoubleSliderWidget.h"
36 #include "pqWidgetsModule.h"
37 #include "vtkSetGet.h" // for VTK_LEGACY
38 #include <QWidget>
39 
45 {
46  Q_OBJECT
47  Q_PROPERTY(double minimum READ minimum WRITE setMinimum)
48  Q_PROPERTY(double maximum READ maximum WRITE setMaximum)
49 #if !defined(VTK_LEGACY_REMOVE)
50  Q_PROPERTY(bool strictRange READ strictRange WRITE setStrictRange);
51 #endif
52  Q_PROPERTY(int resolution READ resolution WRITE setResolution)
53 
55 
56 public:
60  pqDoubleRangeWidget(QWidget* parent = NULL);
61  ~pqDoubleRangeWidget() override;
62 
63  // get the min range value
64  double minimum() const;
65  // get the max range value
66  double maximum() const;
67 
71  VTK_LEGACY(bool strictRange() const);
72 
73  // returns the resolution.
74  int resolution() const;
75 
76 public Q_SLOTS:
77  // set the min range value
78  void setMinimum(double);
79  // set the max range value
80  void setMaximum(double);
81 
82 #if !defined(VTK_LEGACY_REMOVE)
83 
86  void setStrictRange(bool);
87 #endif
88 
89  // set the resolution.
90  void setResolution(int);
91 
92 protected:
93  int valueToSliderPos(double val) override;
94  double sliderPosToValue(int pos) override;
95 
96 private Q_SLOTS:
97  void updateValidator();
98 
99 private:
100  int Resolution;
101  double Minimum;
102  double Maximum;
103 #if !defined(VTK_LEGACY_REMOVE)
104  bool StrictRange = false;
105 #endif
106 };
107 
108 #endif
#define VTK_LEGACY(method)
Definition: vtkLegacy.h:52
A widget with a tied slider and line edit for editing a double property.
#define PQWIDGETS_EXPORT
virtual int valueToSliderPos(double val)
Extends pqDoubleSliderWidget to use it with a range of doubles : provides control on min/max...
resolution
virtual double sliderPosToValue(int pos)