Salome HOME
merge with master
[tools/sat.git] / data / templates / PythonComponent / src / Dialog / DialogEdit.py
diff --git a/data/templates/PythonComponent/src/Dialog/DialogEdit.py b/data/templates/PythonComponent/src/Dialog/DialogEdit.py
deleted file mode 100755 (executable)
index 0d2d884..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-from qtsalome import *
-
-class DialogEdit( QDialog ) :
-
-   def __init__( self, helpFile, controller, widgetDialogBox ) :
-       """Constructor"""
-
-       # Initializing parent widget
-       QDialog.__init__( self )
-
-       # Setting attributes
-       self.setObjectName( "Dialog" )
-       self.setWindowTitle( "Dialog data" )
-       self._helpFile = helpFile
-       self._controller = controller
-       self._widgetDialogBox = widgetDialogBox
-
-       # Setting layouts
-       self.mainLayout = QVBoxLayout( self )
-       self.h1 = QHBoxLayout( self )
-       self.h2 = QHBoxLayout( self )
-       self.mainLayout.addLayout( self.h1 )
-       self.mainLayout.addLayout( self.h2 )
-       self.v11 = QVBoxLayout( self)
-       self.v12 = QVBoxLayout( self )
-       self.h1.addLayout( self.v11 )
-       self.h1.addLayout( self.v12 )
-
-       # Filling layouts with standard widgets( common to all childre )
-       self.fillStandardWidgets()
-       # Adding special widgets to layouts( special to each child )
-       self.addSpecialWidgets()
-
-       # Connecting widgets to slots
-       self.connectSlots()
-       pass
-
-   def getController( self ) :
-       return self._controller
-
-   def fillStandardWidgets( self ) :
-
-       #Setting buttons
-       self.bOk = QPushButton( "OK", self )
-       self.h2.addWidget( self.bOk )
-       self.bCancel = QPushButton( "Cancel", self )
-       self.h2.addWidget( self.bCancel )
-       self.bHelp = QPushButton( "Help", self )
-       self.h2.addWidget( self.bHelp )
-       pass
-
-   def addSpecialWidgets( self ) :
-       print 'Virtual method'
-       pass
-
-   def connectSlots( self ) :
-       self.bOk.clicked.connect(self.apply)
-       self.bHelp.clicked.connect(self.help)
-       self.bCancel.clicked.connect(self.close)
-       pass
-
-   def apply( self ) :
-       self.retrieveUserEntries()
-       if not self.checkUserEntries() :
-          QMessageBox.warning( self, 'information faillure', self.errMessage )
-          return
-       self.execApply()
-       self.close()
-       return
-
-   def retrieveUserEntries( self ) :
-       print 'Virtual method'
-       pass
-
-   def checkUserEntries( self ) :
-       print 'Virtual method'
-       return True
-
-   def execApply( self ) :
-       print 'Virtual method'
-       pass
-
-   def help( self ) :
-       import os
-       os.system( 'firefox ' + self._helpFile + '&' )
-       pass
-
-   def close( self ) :
-       self._widgetDialogBox.close()
-       pass
-
-pass