]> SALOME platform Git repositories - modules/adao.git/blob - src/daSalome/daGUI/daGuiImpl/adaoGuiHelper.py
Salome HOME
User kernel service for study management
[modules/adao.git] / src / daSalome / daGUI / daGuiImpl / adaoGuiHelper.py
1 # -*- coding: utf-8 -*-
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 adaoModuleHelper
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 salome.sg.getActiveStudyId()
49
50 def refreshObjectBrowser():
51     """
52     Refresh the graphical representation of the SALOME study, in case where the
53     GUI is working.
54     """
55     if salome.sg is not None:
56         salome.sg.updateObjBrowser(0)
57
58 def selectItem(salomeStudyItem):
59   if salome.sg is not None:
60     salome.sg.ClearIObjects()
61     salome.sg.AddIObject(salomeStudyItem)
62
63 def getSelectedItem(salomeStudyId=-100):
64     """
65     Get the current selection. If more than one item are selected, the
66     only first is considered. The object is return (not the id).
67     The item can be of any type, no control is done in this function.
68     """
69     if salome.sg is None:
70         raise Exception("GuiHelper.getSelectedItem can't be used without the GUI context")
71
72     if salomeStudyId != -100:
73       studyEditor = salome.kernel.studyedit.getStudyEditor(salomeStudyId)
74     studyEditor = salome.kernel.studyedit.getStudyEditor()
75     item = None
76     listEntries=salome.sg.getAllSelected()
77     print listEntries
78     if len(listEntries) >= 1:
79         entry = listEntries[0]
80         print entry
81         item = studyEditor.study.FindObjectID( entry )
82     return item
83
84 def getAllSelected(salomeStudyId):
85     """
86     Returns all selected items in the specified study.
87     """
88     if salome.sg is None:
89         raise OmaException("getSelectedItem can't be used without the GUI context", OmaException.TYPES.DEVEL)
90
91     study = adaoModuleHelper.getStudyManager().GetStudyByID( salomeStudyId )
92     selcount = salome.sg.SelectedCount()
93     seltypes = {}
94     for i in range( selcount ):
95         __incObjToMap( seltypes, adaoModuleHelper.getObjectID( study, salome.sg.getSelected( i ) ) )
96         pass
97     return selcount, seltypes
98
99 def __incObjToMap( m, id ):
100     """
101     Increment object counter in the specified map.
102     Not to be used outside this module.
103     """
104     if id not in m: m[id] = 0
105     m[id] += 1
106     pass
107
108 def getDesktop():
109     """
110     Returns the active Desktop. Usefull to set the relative position of a dialog box
111     """
112     return __sgPyQt.getDesktop()
113
114 def warning(msg):
115     """
116     This function displays a message dialog box displaying the specified message.
117     """
118     gui_warning(getDesktop(),msg)