Salome HOME
PyEditor: implement Find/Replace feature
[modules/gui.git] / tools / dlgfactory / __QDIALOG__.cxx
1 #include "__CLASSNAME__.h"
2 #include <QDebug>
3
4 __CLASSNAME__::__CLASSNAME__(QDialog* parent) : QDialog(parent)
5 {
6   ui.setupUi(this); // A faire en premier
7   
8   /*
9     Personnalisez vos widgets ici si nécessaire
10     Réalisez des connexions supplémentaires entre signaux et slots
11   */
12   
13   // The slots accept() and reject() are already connected to the
14   // buttonbox (inherited features) 
15 }
16
17 void __CLASSNAME__::accept() {
18   qDebug() << "accept() is not implemented yet";
19   QDialog::accept();
20 }