Salome HOME
31a45aee6d4eb9a5248c93213efe50f028c53141
[modules/gui.git] / src / QDS / QDS_ComboBox.h
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef QDS_COMBOBOX_H
24 #define QDS_COMBOBOX_H
25
26 #include "QDS_Datum.h"
27
28 #include <QMap>
29 #include <QPixmap>
30 #include <QStringList>
31
32 #include <Qtx.h>
33
34 class QtxComboBox;
35
36 #ifdef WIN32
37 #pragma warning( disable:4251 )
38 #endif
39
40 class QDS_EXPORT QDS_ComboBox : public QDS_Datum
41 {
42   Q_OBJECT
43
44 public:
45   QDS_ComboBox( const QString&, QWidget* = 0, const int = All, const QString& = QString() );
46   virtual ~QDS_ComboBox();
47
48   bool                       editable() const;
49   void                       setEditable( const bool );
50
51   int                        count( bool = false ) const;
52   void                       values( QList<int>&, bool = false ) const;
53
54   virtual int                integerValue() const;
55   virtual double             doubleValue() const;
56   virtual void               setIntegerValue( const int );
57   virtual void               setDoubleValue( const double );
58
59   bool                       state( const int ) const;
60   void                       setState( const bool, const int, const bool = true );
61   void                       setState( const bool, const QList<int>&, const bool = true );
62   void                       setValues( const QList<int>&, const QStringList& );
63   void                       setValues( const QStringList& );
64
65   virtual void               reset();
66
67   int                        stringToValue( const QString& ) const;
68   QString                    valueToString( const int ) const;
69
70 signals:
71   void                       activated( int );
72   void                       activated( const QString& );
73
74 protected slots:
75   virtual void               onActivated( int );
76   virtual void               onTextChanged( const QString& );
77
78 protected:
79   QtxComboBox*               comboBox() const;
80   virtual QWidget*           createControl( QWidget* );
81
82   virtual QString            getString() const;
83   virtual void               setString( const QString& );
84
85   virtual void               unitSystemChanged( const QString& );
86
87 private:
88   int                        getId( const int ) const;
89   int                        getId( const QString& ) const;
90   int                        getIndex( const int ) const;
91   int                        getIndex( const QString& ) const;
92
93   void                       updateComboBox();
94
95 private:
96   typedef QMap<int, QPixmap> IdIconsMap;
97   typedef QMap<int, QString> IdValueMap;
98   typedef QMap<int, bool>    IdStateMap;
99   typedef QMap<int, int>     IdIndexMap;
100
101 private:
102   IdValueMap                 myValue;
103   IdStateMap                 myState;
104   IdIndexMap                 myIndex;
105   IdIconsMap                 myIcons;
106
107   QIntList                   myDataIds;
108   QIntList                   myUserIds;
109   QStringList                myUserNames;
110 };
111
112 #ifdef WIN32
113 #pragma warning( default:4251 )
114 #endif
115
116 #endif