]> SALOME platform Git repositories - modules/adao.git/blob - src/daSalome/daGUI/daGuiImpl/datassimGuiManager.py
Salome HOME
- Debut du GUI SALOME pour DATASSIM
[modules/adao.git] / src / daSalome / daGUI / daGuiImpl / datassimGuiManager.py
1 # -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2010 EDF R&D
3 #
4 #  This library is free software; you can redistribute it and/or
5 #  modify it under the terms of the GNU Lesser General Public
6 #  License as published by the Free Software Foundation; either
7 #  version 2.1 of the License.
8 #
9 #  This library is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 #  Lesser General Public License for more details.
13 #
14 #  You should have received a copy of the GNU Lesser General Public
15 #  License along with this library; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 """
22 This file centralizes the definitions and implementations of ui components used
23 in the GUI part of the module.
24 """
25
26 __author__ = "aribes/gboulant"
27
28 import traceback
29 from PyQt4.QtCore import QObject
30 import SalomePyQt
31 sgPyQt = SalomePyQt.SalomePyQt()
32
33 from daGuiImpl.enumerate import Enumerate
34 #
35 # ==============================================================================
36 # Classes to manage the building of UI components
37 # ==============================================================================
38 #
39 UI_ELT_IDS = Enumerate([
40         'DATASSIM_MENU_ID',
41         ],offset=950)
42
43 ACTIONS_MAP={
44 }
45
46 class DatassimGuiUiComponentBuilder:
47     """
48     The initialisation of this class creates the graphic components involved
49     in the GUI (menu, menu item, toolbar). A ui component builder should be
50     created for each opened study and associated to its context (see usage in OMAGUI.py).
51     """
52     def __init__(self):
53         self.initUiComponents()
54
55     def initUiComponents(self):
56         
57         objectTR = QObject()
58
59         # create top-level menu
60         mid = sgPyQt.createMenu( "DATASSIM", -1, UI_ELT_IDS.DATASSIM_MENU_ID, sgPyQt.defaultMenuGroup() )
61         # create toolbar
62         tid = sgPyQt.createTool( "DATASSIM" )
63