Salome HOME
Copyright update 2022
[modules/gui.git] / src / SUIT / SUIT_PreferenceMgr.h
1 // Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File:      SUIT_PreferenceMgr.h
21 // Author:    Sergey TELKOV
22 //
23 #ifndef SUIT_PREFERENCEMGR_H
24 #define SUIT_PREFERENCEMGR_H
25
26 // This class is obsoleted.
27 // It was created for backward compatibility with ResourceEdit from Salome version 3.x.x
28
29 #include "SUIT.h"
30
31 #include "QtxPagePrefMgr.h"
32
33 class SUIT_EXPORT SUIT_PreferenceMgr : public QtxPagePrefMgr
34 {
35   Q_OBJECT
36
37 public:
38   typedef enum { Auto, Space, Bool, Color, String, Selector,
39                  DblSpin, IntSpin, Double, Integer,
40                  GroupBox, Tab, Frame, Font, DirList, File,
41                  Slider, Shortcut, ShortcutTree, BiColor, Background,            
42                  UserDefined = 1000 } 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   QtxPreferenceItem* root() const;
61
62 private:
63   QtxPreferenceItem* myRoot;
64 };
65
66 #endif