Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / QDS / QDS_ComboBox.h
1 //  Copyright (C) 2007-2008  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 #ifndef QDS_COMBOBOX_H
23 #define QDS_COMBOBOX_H
24
25 #include "QDS_Datum.h"
26
27 #include <QMap>
28 #include <QPixmap>
29 #include <QStringList>
30
31 #include <Qtx.h>
32
33 class QtxComboBox;
34
35 #ifdef WIN32
36 #pragma warning( disable:4251 )
37 #endif
38
39 class QDS_EXPORT QDS_ComboBox : public QDS_Datum
40 {
41   Q_OBJECT
42
43 public:
44   QDS_ComboBox( const QString&, QWidget* = 0, const int = All, const QString& = QString() );
45   virtual ~QDS_ComboBox();
46
47   bool                       editable() const;
48   void                       setEditable( const bool );
49
50   int                        count( bool = false ) const;
51   void                       values( QList<int>&, bool = false ) const;
52
53   virtual int                integerValue() const;
54   virtual double             doubleValue() const;
55   virtual void               setIntegerValue( const int );
56   virtual void               setDoubleValue( const double );
57
58   bool                       state( const int ) const;
59   void                       setState( const bool, const int, const bool = true );
60   void                       setState( const bool, const QList<int>&, const bool = true );
61   void                       setValues( const QList<int>&, const QStringList& );
62   void                       setValues( const QStringList& );
63
64   virtual void               reset();
65
66   int                        stringToValue( const QString& ) const;
67   QString                    valueToString( const int ) const;
68
69 signals:
70   void                       activated( int );
71   void                       activated( const QString& );
72
73 protected slots:
74   virtual void               onActivated( int );
75   virtual void               onTextChanged( const QString& );
76
77 protected:
78   QtxComboBox*               comboBox() const;
79   virtual QWidget*           createControl( QWidget* );
80
81   virtual QString            getString() const;
82   virtual void               setString( const QString& );
83
84   virtual void               unitSystemChanged( const QString& );
85
86 private:
87   int                        getId( const int ) const;
88   int                        getId( const QString& ) const;
89   int                        getIndex( const int ) const;
90   int                        getIndex( const QString& ) const;
91
92   void                       updateComboBox();
93
94 private:
95   typedef QMap<int, QPixmap> IdIconsMap;
96   typedef QMap<int, QString> IdValueMap;
97   typedef QMap<int, bool>    IdStateMap;
98   typedef QMap<int, int>     IdIndexMap;
99
100 private:
101   IdValueMap                 myValue;
102   IdStateMap                 myState;
103   IdIndexMap                 myIndex;
104   IdIconsMap                 myIcons;
105
106   QIntList                   myDataIds;
107   QIntList                   myUserIds;
108   QStringList                myUserNames;
109 };
110
111 #ifdef WIN32
112 #pragma warning( default:4251 )
113 #endif
114
115 #endif