Optika GUI Toolik  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Optika_ValidatorApplier.hpp
Go to the documentation of this file.
1 // @HEADER
2 // ***********************************************************************
3 //
4 // Optika: A Tool For Developing Parameter Obtaining GUIs
5 // Copyright (2009) Sandia Corporation
6 //
7 // Under terms of Contract DE-AC04-94AL85000, with Sandia Corporation, the
8 // U.S. Government retains certain rights in this software.
9 //
10 // Redistribution and use in source and binary forms, with or without
11 // modification, are permitted provided that the following conditions are
12 // met:
13 //
14 // 1. Redistributions of source code must retain the above copyright
15 // notice, this list of conditions and the following disclaimer.
16 //
17 // 2. Redistributions in binary form must reproduce the above copyright
18 // notice, this list of conditions and the following disclaimer in the
19 // documentation and/or other materials provided with the distribution.
20 //
21 // 3. Neither the name of the Corporation nor the names of the
22 // contributors may be used to endorse or promote products derived from
23 // this software without specific prior written permission.
24 //
25 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 //
37 // Questions? Contact Kurtis Nusbaum (klnusbaum@gmail.com)
38 //
39 // ***********************************************************************
40 // @HEADER
41 #ifndef OPTIKA_VALIDATORAPPLIER_HPP_
42 #define OPTIKA_VALIDATORAPPLIER_HPP_
43 #include <QSpinBox>
44 #include <QDoubleSpinBox>
45 #include <QIntValidator>
46 #include <QDoubleValidator>
47 #include "Optika_ConfigDefs.hpp"
48 #include <QLineEdit>
49 
56 namespace Optika{
57 
63 template<class S> class ValidatorApplier{
64 public:
66 
67 
76  static void applyToSpinBox(RCP<const EnhancedNumberValidator<S> > validator, QSpinBox *spinBox){
77  if(!is_null(validator)){
78  spinBox->setMinimum(validator->getMin());
79  spinBox->setMaximum(validator->getMax());
80  spinBox->setSingleStep(validator->getStep());
81  }
82  else{
83  spinBox->setMinimum(EnhancedNumberTraits<S>::min());
84  spinBox->setMaximum(EnhancedNumberTraits<S>::max());
85  spinBox->setSingleStep(EnhancedNumberTraits<S>::defaultStep());
86  }
87  }
88 
89  static void applyToLineEdit(RCP<const EnhancedNumberValidator<S> > validator, QLineEdit *lineEdit){
90  QIntValidator* qvalidator = new QIntValidator(lineEdit);
91  if(!is_null(validator)){
92  qvalidator->setRange(validator->getMin(), validator->getMax());
93  }
94  else{
96  }
97  lineEdit->setValidator(qvalidator);
98  }
99 
101 
102 };
103 
108 template<>
109 class ValidatorApplier<double>{
110 public:
111 
113 
114 
121  static void applyToSpinBox(RCP<const EnhancedNumberValidator<double> > validator, QDoubleSpinBox *spinBox){
122  if(!is_null(validator)){
123  spinBox->setMinimum(validator->getMin());
124  spinBox->setMaximum(validator->getMax());
125  spinBox->setSingleStep(validator->getStep());
126  spinBox->setDecimals(validator->getPrecision());
127  }
128  else{
129  spinBox->setMinimum(EnhancedNumberTraits<double>::min());
130  spinBox->setMaximum(EnhancedNumberTraits<double>::max());
131  spinBox->setSingleStep(EnhancedNumberTraits<double>::defaultStep());
132  spinBox->setDecimals(EnhancedNumberTraits<double>::defaultPrecision());
133  }
134  }
135 
136  static void applyToLineEdit(RCP<const EnhancedNumberValidator<double> > validator, QLineEdit *lineEdit){
137  QDoubleValidator* qvalidator = new QDoubleValidator(lineEdit);
138  if(!is_null(validator)){
139  qvalidator->setRange(validator->getMin(), validator->getMax());
140  qvalidator->setDecimals(validator->getPrecision());
141  }
142  else{
144  qvalidator->setDecimals(EnhancedNumberTraits<double>::defaultPrecision());
145  }
146  lineEdit->setValidator(qvalidator);
147  }
148 
150 };
151 
156 template<>
157 class ValidatorApplier<float>{
158 public:
159 
161 
162 
169  static void applyToSpinBox(RCP<const EnhancedNumberValidator<float> > validator, QDoubleSpinBox *spinBox){
170  if(!is_null(validator)){
171  spinBox->setMinimum(validator->getMin());
172  spinBox->setMaximum(validator->getMax());
173  spinBox->setSingleStep(validator->getStep());
174  spinBox->setDecimals(validator->getPrecision());
175  }
176  else{
177  spinBox->setMinimum(EnhancedNumberTraits<float>::min());
178  spinBox->setMaximum(EnhancedNumberTraits<float>::max());
179  spinBox->setSingleStep(EnhancedNumberTraits<float>::defaultStep());
180  spinBox->setDecimals(EnhancedNumberTraits<float>::defaultPrecision());
181  }
182  }
183 
184  static void applyToLineEdit(RCP<const EnhancedNumberValidator<float> > validator, QLineEdit *lineEdit){
185  QDoubleValidator* qvalidator = new QDoubleValidator(lineEdit);
186  if(!is_null(validator)){
187  qvalidator->setRange(validator->getMin(), validator->getMax());
188  qvalidator->setDecimals(validator->getPrecision());
189  }
190  else{
192  qvalidator->setDecimals(EnhancedNumberTraits<float>::defaultPrecision());
193  }
194  lineEdit->setValidator(qvalidator);
195  }
196 
198 };
199 
200 }
201 #endif // OPTIKA_VALIDATORAPPLIER_HPP_
static void applyToSpinBox(RCP< const EnhancedNumberValidator< float > > validator, QDoubleSpinBox *spinBox)
Applies an EnhancedNumberValidator of type float to a QDoubleSpinBox.
bool is_null(const boost::shared_ptr< T > &p)
static void applyToSpinBox(RCP< const EnhancedNumberValidator< double > > validator, QDoubleSpinBox *spinBox)
Applies an EnhancedNumberValidator of type double to a QDoubleSpinBox.
static void applyToLineEdit(RCP< const EnhancedNumberValidator< double > > validator, QLineEdit *lineEdit)
A Header file that includes some of the commonly used includes throughtout Optika as well as some ove...
static void applyToLineEdit(RCP< const EnhancedNumberValidator< float > > validator, QLineEdit *lineEdit)
A templated class that applies the minimum, maximum and step specified in an EnhancedNumberValidator ...
static void applyToSpinBox(RCP< const EnhancedNumberValidator< S > > validator, QSpinBox *spinBox)
Applied attributes of the validator to the spin box.
static void applyToLineEdit(RCP< const EnhancedNumberValidator< S > > validator, QLineEdit *lineEdit)