]> SALOME platform Git repositories - modules/gui.git/blob - src/QDS/QDS_Validator.h
Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / QDS / QDS_Validator.h
1 // Copyright (C) 2005  CEA/DEN, EDF R&D, OPEN CASCADE, PRINCIPIA R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef QDS_VALIDATOR_H
20 #define QDS_VALIDATOR_H
21
22 #include "QDS.h"
23
24 #include <qvalidator.h>
25
26 /*!
27     Class: QDS_IntegerValidator
28 */
29
30 class QDS_EXPORT QDS_IntegerValidator : public QIntValidator
31 {
32 public:
33   QDS_IntegerValidator( QObject* p = 0 );
34   QDS_IntegerValidator( const QString& f, QObject* p = 0 );
35   virtual ~QDS_IntegerValidator();
36
37   virtual State validate( QString&, int& ) const;
38
39 private:
40   QString myFilter;
41 };
42
43 /*!
44     Class: QDS_DoubleValidator
45 */
46
47 class QDS_DoubleValidator : public QDoubleValidator
48 {
49 public:
50   QDS_DoubleValidator( QObject* p = 0 );
51   QDS_DoubleValidator( const QString& f, QObject* p = 0 );
52   virtual ~QDS_DoubleValidator();
53
54   virtual State validate( QString&, int& ) const;
55
56 private:
57   QString myFilter;
58 };
59
60 /*!
61     Class: QDS_StringValidator
62 */
63
64 class QDS_EXPORT QDS_StringValidator : public QValidator
65 {
66 public:
67
68   QDS_StringValidator( QObject* p = 0 );
69   QDS_StringValidator( const QString& f, QObject* p = 0 );
70   QDS_StringValidator( const QString& ft, const QString& fg, QObject* p = 0 );
71   virtual ~QDS_StringValidator();
72
73   virtual State validate( QString&, int& ) const;
74
75   int           length() const;
76   void          setLength( const int );
77
78 private:
79   int           myLen;
80   QString       myFlags;
81   QString       myFilter;
82 };
83
84 #endif