Version: 9.15.0
SUIT_PreferenceMgr.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2025 CEA, EDF, 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, Directory,
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  void removeItem( const QString& );
57 
58 protected:
59  virtual QVariant optionValue( const QString& ) const;
60  virtual void setOptionValue( const QString&, const QVariant& );
61  QtxPreferenceItem* root() const;
62 
63 private:
65 };
66 
67 #endif
#define SUIT_EXPORT
Definition: SUIT.h:36
@ File
Definition: SalomePyQt.h:79
GUI implementation of the QtxPreferenceMgr class: preferences manager.
Definition: QtxPagePrefMgr.h:61
virtual QVariant optionValue(const QString &) const
Get preference item option value.
Definition: QtxPagePrefMgr.cxx:196
virtual void setOptionValue(const QString &, const QVariant &)
Set preference item option value.
Definition: QtxPagePrefMgr.cxx:210
Base class for implementing of all the preference items.
Definition: QtxPreferenceMgr.h:41
void removeItem(QtxPreferenceItem *)
Remove child preference item.
Definition: QtxPreferenceMgr.cxx:298
Application resources manager.
Definition: QtxResourceMgr.h:53
Definition: SUIT_PreferenceMgr.h:34
QtxPreferenceItem * myRoot
Definition: SUIT_PreferenceMgr.h:64
@ Auto
Definition: SUIT_PreferenceMgr.h:38
@ DirList
Definition: SUIT_PreferenceMgr.h:40
@ Background
Definition: SUIT_PreferenceMgr.h:41
@ DblSpin
Definition: SUIT_PreferenceMgr.h:39