Version: 8.3.0
SuitWrapper.hxx
Go to the documentation of this file.
1 // Copyright (C) 2006-2016 CEA/DEN, EDF R&D
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 #ifndef _SUITWRAPPER_HXX_
21 #define _SUITWRAPPER_HXX_
22 
23 #include "SalomeWrapExport.hxx"
24 
25 #include <QAction>
26 #include <QString>
27 #include <QIcon>
28 #include <QObject>
29 #include <QWidget>
30 #include <QDockWidget>
31 #include <QGraphicsScene>
32 
33 namespace YACS
34 {
35  namespace HMI
36  {
38  // deriver idem SUIT_ViewManager et SUIT_ViewWindows
39 
41 
43  {
44 
45  public:
46  SuitWrapper(QObject* wrapped);
47  virtual ~SuitWrapper();
48 
49  QWidget* getNewWindow(QGraphicsScene *scene);
50  int AssociateViewToWindow(QGraphicsView* gView, QWidget* viewWindow);
51  int activeStudyId();
52  QDockWidget* objectBrowser();
53 
54  QAction* createAction(const int id,
55  const QString& toolTip,
56  const QIcon& icon,
57  const QString& menu,
58  const QString& status,
59  const int shortCut,
60  QObject* parent =0,
61  bool checkable = false,
62  QObject* receiver =0,
63  const char* member =0);
64 
65  int createMenu(const QString& subMenu,
66  const int parentMenuId,
67  const int menuId = -1,
68  const int groupId = -1,
69  const int index = -1);
70 
71  int createMenu(const QString& subMenu,
72  const QString& parentMenu,
73  const int menuId = -1,
74  const int groupId = -1,
75  const int index = -1);
76 
77  int createMenu(const int actionId,
78  const int menuId,
79  const int groupId = -1,
80  const int index = -1);
81 
82  int createMenu(const int actionId,
83  const QString& menu,
84  const int groupId = -1,
85  const int index = -1);
86 
87  int createMenu(QAction* action,
88  const int menuId,
89  const int actionId = -1,
90  const int groupId = -1,
91  const int index = -1);
92 
93  int createMenu(QAction* action,
94  const QString& menu,
95  const int actionId = -1,
96  const int groupId = -1,
97  const int index = -1);
98 
99  int createTool(const QString& title,
100  const QString& name = QString());
101 
102  int createTool(const int actionId,
103  const int toolbarId,
104  const int index = -1);
105 
106  int createTool(const int actionId,
107  const QString& toolbar,
108  const int index = -1);
109 
110  int createTool(QAction* action,
111  const int toolbarId,
112  const int actionId = -1,
113  const int index = -1);
114 
115  int createTool(QAction* action,
116  const QString& toolbar,
117  const int actionId = -1,
118  const int index = -1);
119 
120  static QAction* separator();
121 
122  void setMenuShown(QAction* act, bool show);
123  void setToolShown(QAction* act, bool show);
124 
125  void createNewSchema(const QString& schemaName,
126  QWidget* viewWindow);
127  bool renameSchema(const QString& oldName,
128  const QString& newName,
129  QWidget* viewWindow);
130  bool deleteSchema(QWidget* viewWindow);
131  void createNewRun(const QString& schemaName,
132  const QString& runName,
133  QWidget* refWindow,
134  QWidget* viewWindow);
135  QStringList getQuickDirList();
136  virtual void onHelpContextModule( const QString&, const QString&, const QString& = QString() );
137 
138  protected:
139  QObject* _wrapped; // SalomeApp_module or Standalone Application
140 
141  };
142  }
143 }
144 #endif