]> SALOME platform Git repositories - modules/gui.git/blob - src/QDS/QDS.h
Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / QDS / QDS.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_H
23 #define QDS_H
24
25 #ifdef WIN32
26 #ifdef QDS_EXPORTS
27 #define QDS_EXPORT __declspec(dllexport)
28 #else
29 #define QDS_EXPORT __declspec(dllimport)
30 #endif
31 #else
32 #define QDS_EXPORT
33 #endif
34
35 #if defined WIN32
36 #pragma warning ( disable:4251 )
37 #pragma warning ( disable:4786 )
38 #endif
39
40 #include <QString>
41 #include <QList>
42
43 #include <TCollection_ExtendedString.hxx>
44
45 class QDS_Datum;
46 class Handle(TCollection_HAsciiString);
47 class Handle(TCollection_HExtendedString);
48
49 class QDS_EXPORT QDS
50 {
51 public:
52   //! Enum describes bit flags of the Qt datum view and behaviour
53   typedef enum
54   {
55     None = 0x00,                   //!< Non specified any flags (Default behaviour)
56     Label = 0x01,                  //!< Create subwidget for datum label
57     Control = 0x02,                //!< Create subwidget for datum input control
58     Units = 0x04,                  //!< Create subwidget for datum units of measure
59     NotFormat = 0x08,              //!< Don't format initial value
60     NotAccel = 0x10,               //!< Not support accelerators in datum label
61     UnitsWithLabel = 0x20,         //!< Display units of measure in label like "<label_text> (<units_text>) instead separate text"
62     All = Label | Control | Units  //!< Create all subwidgets
63   } DatumFlags;
64
65 public:
66   static bool                       load( const QString& );
67
68   static QString                    unitSystemLabel( const QString&,
69                                                      const QString& = QString() );
70   static QString                    activeUnitSystem( const QString& = QString() );
71   static void                       setActiveUnitSystem( const QString&,
72                                                          const QString& = QString() );
73
74   static QString                    toQString( const TCollection_AsciiString& );
75   static QString                    toQString( const TCollection_ExtendedString& );
76   static QString                    toQString( const Handle(TCollection_HAsciiString)& );
77   static QString                    toQString( const Handle(TCollection_HExtendedString)& );
78
79   static TCollection_AsciiString    toAsciiString( const QString& );
80   static TCollection_AsciiString    toAsciiString( const TCollection_ExtendedString& );
81   static TCollection_AsciiString    toAsciiString( const Handle(TCollection_HExtendedString)& );
82
83   static TCollection_ExtendedString toExtString( const QString& );
84   static TCollection_ExtendedString toExtString( const TCollection_AsciiString& );
85
86 protected:
87   static void                       insertDatum( QDS_Datum* );
88   static void                       removeDatum( QDS_Datum* );
89
90 private:
91   static QList<QDS_Datum*>          _datumList;
92 };
93
94 #endif