Version: 8.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SUIT_PreferenceMgr.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 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 
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:
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:
63 };
64 
65 #endif