Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / QDS / QDS_RadioBox.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_RADIOBOX_H
20 #define QDS_RADIOBOX_H
21
22 #include "QDS_Datum.h"
23
24 #include <Qtx.h>
25
26 #include <qmap.h>
27 #include <qpixmap.h>
28 #include <qstringlist.h>
29
30 #ifdef WNT
31 #pragma warning( disable:4251 )
32 #endif
33
34 class QButtonGroup;
35 class QRadioButton;
36
37 class QDS_EXPORT QDS_RadioBox : public QDS_Datum
38 {
39   Q_OBJECT
40
41 public:
42   QDS_RadioBox( const QString&, QWidget* = 0, const int = All, const QString& = QString::null );
43   virtual ~QDS_RadioBox();
44
45   int                        count( bool = false ) const;
46   void                       values( QValueList<int>&, bool = false ) const;
47
48   int                        columns() const;
49   void                       setColumns( const int );
50
51   bool                       state( const int ) const;
52   void                       setState( const bool, const int, const bool = true );
53   void                       setState( const bool, const QValueList<int>&, const bool = true );
54   void                       setValues( const QValueList<int>&, const QStringList& );
55   void                       setValues( const QStringList& );
56
57 signals:
58   void                       activated( int );
59
60 protected slots:
61   virtual void               onToggled( bool );
62
63 protected:
64   QButtonGroup*              buttonGroup() const;
65   virtual QWidget*           createControl( QWidget* );
66   void                       buttons( QPtrList<QRadioButton>& ) const;
67
68   virtual QString            getString() const;
69   virtual void               setString( const QString& );
70
71   virtual void               unitSystemChanged( const QString& );
72
73 private:
74   void                       updateRadioBox();
75
76 private:
77   typedef QMap<int, QString> IdValueMap;
78   typedef QMap<int, bool>    IdStateMap;
79
80 private:
81   IdValueMap                 myValue;
82   IdStateMap                 myState;
83
84   QIntList                   myDataIds;
85   QIntList                   myUserIds;
86   QStringList                myUserNames;
87 };
88
89 #ifdef WNT
90 #pragma warning( default:4251 )
91 #endif
92
93 #endif