]> SALOME platform Git repositories - modules/gui.git/blob - src/SUIT/SUIT_PreferenceMgr.h
Salome HOME
f6987252f134e3e5ba3546e712761589b022cf5b
[modules/gui.git] / src / SUIT / SUIT_PreferenceMgr.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 // File:      SUIT_PreferenceMgr.h
23 // Author:    Sergey TELKOV
24 //
25 #ifndef SUIT_PREFERENCEMGR_H
26 #define SUIT_PREFERENCEMGR_H
27
28 // This class is obsoleted.
29 // It was created for backward compatibility with ResourceEdit from Salome version 3.x.x
30
31 #include "SUIT.h"
32
33 #include "QtxPagePrefMgr.h"
34
35 class SUIT_EXPORT SUIT_PreferenceMgr : public QtxPagePrefMgr
36 {
37   Q_OBJECT
38
39 public:
40   typedef enum { Auto, Space, Bool, Color, String, Selector,
41                  DblSpin, IntSpin, Double, Integer,
42                  GroupBox, Tab, Frame, Font, DirList, File } PrefItemType;
43
44 public:
45   SUIT_PreferenceMgr( QtxResourceMgr*, QWidget* = 0 );
46   virtual ~SUIT_PreferenceMgr();
47
48   QIcon              itemIcon( const int ) const;
49   void               setItemIcon( const int, const QIcon& );
50
51   QVariant           itemProperty( const QString&, const int = -1 ) const;
52   void               setItemProperty( const QString&, const QVariant&, const int = -1 );
53
54   int                addItem( const QString&, const int pId = -1, const PrefItemType = Auto,
55                               const QString& = QString(), const QString& = QString() );
56
57 protected:
58   virtual QVariant   optionValue( const QString& ) const;
59   virtual void       setOptionValue( const QString&, const QVariant& );
60
61 private:
62   QtxPreferenceItem* myRoot;
63 };
64
65 #endif