Salome HOME
Copyright update 2022
[modules/gui.git] / src / QDS / QDS_ComboBox.h
1 // Copyright (C) 2007-2022  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, or (at your option) any later version.
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 QString            getString() const;
66
67   virtual void               reset();
68
69   int                        stringToValue( const QString& ) const;
70   QString                    valueToString( const int ) const;
71
72 signals:
73   void                       activated( int );
74   void                       activated( const QString& );
75
76 protected slots:
77   virtual void               onActivated( int );
78   virtual void               onTextChanged( const QString& );
79
80 protected:
81   QtxComboBox*               comboBox() const;
82   virtual QWidget*           createControl( QWidget* );
83
84   virtual void               setString( const QString& );
85
86   virtual void               unitSystemChanged( const QString& );
87
88 private:
89   int                        getId( const int ) const;
90   int                        getId( const QString& ) const;
91   int                        getIndex( const int ) const;
92   int                        getIndex( const QString& ) const;
93
94   void                       updateComboBox();
95
96 private:
97   typedef QMap<int, QPixmap> IdIconsMap;
98   typedef QMap<int, QString> IdValueMap;
99   typedef QMap<int, bool>    IdStateMap;
100   typedef QMap<int, int>     IdIndexMap;
101
102 private:
103   IdValueMap                 myValue;
104   IdStateMap                 myState;
105   IdIndexMap                 myIndex;
106   IdIconsMap                 myIcons;
107
108   QIntList                   myDataIds;
109   QIntList                   myUserIds;
110   QStringList                myUserNames;
111 };
112
113 #ifdef WIN32
114 #pragma warning( default:4251 )
115 #endif
116
117 #endif