Salome HOME
Switch DEV version marker to 1
[samples/atomgen.git] / src / ATOMGENGUI / ATOMGENGUI.py
index e8b6fc332849c12826b10bc99f2b62c8e0f1ea65..09bb49b29e0b1ed53a2e7bc595fa4bcce1ba0353 100644 (file)
@@ -1,23 +1,21 @@
-#  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
 #
-#  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-#  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
 #
-#  This library is free software; you can redistribute it and/or
-#  modify it under the terms of the GNU Lesser General Public
-#  License as published by the Free Software Foundation; either
-#  version 2.1 of the License.
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
 #
-#  This library is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-#  Lesser General Public License for more details.
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 #
-#  You should have received a copy of the GNU Lesser General Public
-#  License along with this library; if not, write to the Free Software
-#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
-#  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
 
 from PyQt4.QtGui import *
 from PyQt4.QtCore import *
@@ -40,6 +38,7 @@ __MODULE_NAME__ = "ATOMGEN"
 __CMD_IMPORT_XML__ = 4000
 __CMD_EXPORT_XML__ = 4001
 __CMD_RUN_ALGO__   = 4002
+__CMD_RUN_ALGO1__  = 4010
 
 # study data
 __study_data_map__ = {}
@@ -258,7 +257,8 @@ def createPopupMenu( popup, context ):
         pass
     a = sgPyQt.action( __CMD_RUN_ALGO__ )
     if isOk and a and context == "ObjectBrowser":
-        a.addTo( popup )
+        popup.addAction(a)
+        #a.addTo( popup )
     pass
 
 def OnGUIEvent( commandId ):
@@ -279,9 +279,9 @@ def OnGUIEvent( commandId ):
 ################################################
 # GUI actions implementation
 
-import ui_rundlg
+from rundlg_ui import Ui_RunDlg
 
-class RunDlg(QDialog, ui_rundlg.Ui_RunDlg):
+class RunDlg(QDialog, Ui_RunDlg):
     """
     Run Algo simple dialog box
     """
@@ -348,7 +348,7 @@ class RunDlg(QDialog, ui_rundlg.Ui_RunDlg):
                 iter.Next()
             pass
         if not len( data ): return
-        if not _getEngine().processData( data ):
+        if not len(_getEngine().processData( data )):
             warning( "ALGO_ERROR" )
         else:
             sgPyQt.updateObjBrowser()
@@ -439,4 +439,5 @@ dict_command = {
     __CMD_IMPORT_XML__ : onImportXml,
     __CMD_EXPORT_XML__ : onExportXml,
     __CMD_RUN_ALGO__   : onRunAlgo,
+    __CMD_RUN_ALGO1__  : onRunAlgo,
     }