Version: 9.12.0
QDS_ComboBox.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2023 CEA, EDF, 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 
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:
107 
110  QStringList myUserNames;
111 };
112 
113 #ifdef WIN32
114 #pragma warning( default:4251 )
115 #endif
116 
117 #endif
#define QDS_EXPORT
Definition: QDS.h:33
QList< int > QIntList
list of int values
Definition: Qtx.h:55
Definition: QDS_ComboBox.h:41
IdValueMap myValue
Definition: QDS_ComboBox.h:103
QStringList myUserNames
Definition: QDS_ComboBox.h:110
QMap< int, QString > IdValueMap
Definition: QDS_ComboBox.h:98
QIntList myUserIds
Definition: QDS_ComboBox.h:109
QIntList myDataIds
Definition: QDS_ComboBox.h:108
QMap< int, bool > IdStateMap
Definition: QDS_ComboBox.h:99
IdIndexMap myIndex
Definition: QDS_ComboBox.h:105
void activated(int)
Emitted when the current item in the combo box is changed.
IdStateMap myState
Definition: QDS_ComboBox.h:104
void activated(const QString &)
Emitted when the current item in the combo box is changed.
QMap< int, int > IdIndexMap
Definition: QDS_ComboBox.h:100
IdIconsMap myIcons
Definition: QDS_ComboBox.h:106
QMap< int, QPixmap > IdIconsMap
Definition: QDS_ComboBox.h:97
Base class for all controls using the data dictionary.
Definition: QDS_Datum.h:41
virtual void setIntegerValue(const int)
Set datum value from integer data.
Definition: QDS_Datum.cxx:817
virtual int integerValue() const
Get the datum value as integer.
Definition: QDS_Datum.cxx:627
virtual void reset()
Reset datum state and set default value as current.
Definition: QDS_Datum.cxx:682
virtual QWidget * createControl(QWidget *)=0
Create QDS::Control widget.
virtual void unitSystemChanged(const QString &)
Process notification about active units system changing.
Definition: QDS_Datum.cxx:1425
virtual void setString(const QString &)=0
virtual double doubleValue() const
Get the datum value as double.
Definition: QDS_Datum.cxx:602
virtual QString getString() const =0
Get string value from datum.
virtual void setDoubleValue(const double)
Set datum value from double data.
Definition: QDS_Datum.cxx:789
Enhanced version of Qt combo box class.
Definition: QtxComboBox.h:39