]> SALOME platform Git repositories - modules/adao.git/blob - src/daSalome/daGUI/daGuiImpl/datassimGuiHelper.py
Salome HOME
Edit popup
[modules/adao.git] / src / daSalome / daGUI / daGuiImpl / datassimGuiHelper.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 __author__="aribes/gboulant"
22
23 import salome
24 # Get SALOME PyQt interface
25 import SalomePyQt
26 __sgPyQt = SalomePyQt.SalomePyQt()
27
28 import datassimModuleHelper
29 from PyQt4 import QtGui,QtCore
30
31 def waitCursor():
32     QtGui.QApplication.setOverrideCursor(QtGui.QCursor(QtCore.Qt.WaitCursor))
33
34 def restoreCursor():
35     QtGui.QApplication.restoreOverrideCursor()
36
37 def gui_warning(parent, msg="An error occurs" ):
38     """
39     This function displays a message dialog box displaying the specified message.
40     """
41     QtGui.QMessageBox.warning( parent, "Alerte", msg)
42
43 def getActiveStudyId():
44     """
45     This function returns the id of the active study. The concept of active study
46     makes sens only in the GUI context.
47     """
48     return __sgPyQt.getStudyId()
49
50
51 def getActiveStudy():
52     """
53     This function returns the active study reference. The concept of active study
54     makes sens only in the GUI context.
55     """
56     studyId = getActiveStudyId()()
57     study = datassimModuleHelper.getStudyManager().GetStudyByID( studyId )
58     return study
59
60 def refreshObjectBrowser():
61     """
62     Refresh the graphical representation of the SALOME study, in case where the
63     GUI is working.
64     """
65     if salome.sg is not None:
66         salome.sg.updateObjBrowser(0)
67
68 def getSelectedItem(salomeStudyId=getActiveStudyId()):
69     """
70     Get the current selection. If more than one item are selected, the
71     only first is considered. The object is return (not the id).
72     The item can be of any type, no control is done in this function.
73     """
74     if salome.sg is None:
75         raise Exception("GuiHelper.getSelectedItem can't be used without the GUI context")
76
77     salomeStudy = datassimModuleHelper.getStudyManager().GetStudyByID( salomeStudyId )
78
79     item = None
80     listEntries=salome.sg.getAllSelected()
81     if len(listEntries) >= 1:
82         entry = listEntries[0]
83         item = salomeStudy.FindObjectID( entry )
84
85     return item
86
87 def getAllSelected(salomeStudyId):
88     """
89     Returns all selected items in the specified study.
90     """
91     if salome.sg is None:
92         raise OmaException("getSelectedItem can't be used without the GUI context", OmaException.TYPES.DEVEL)
93
94     study = datassimModuleHelper.getStudyManager().GetStudyByID( salomeStudyId )
95     selcount = salome.sg.SelectedCount()
96     seltypes = {}
97     for i in range( selcount ):
98         __incObjToMap( seltypes, datassimModuleHelper.getObjectID( study, salome.sg.getSelected( i ) ) )
99         pass
100     return selcount, seltypes
101
102 def __incObjToMap( m, id ):
103     """
104     Increment object counter in the specified map.
105     Not to be used outside this module.
106     """
107     if id not in m: m[id] = 0
108     m[id] += 1
109     pass
110
111 def getDesktop():
112     """
113     Returns the active Desktop. Usefull to set the relative position of a dialog box
114     """
115     return __sgPyQt.getDesktop()
116
117 def warning(msg):
118     """
119     This function displays a message dialog box displaying the specified message.
120     """
121     gui_warning(getDesktop(),msg)