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