Salome HOME
Remove unnecessary includes
[modules/med.git] / src / MEDCalc / gui / dialogs / dlgTester.cxx
1 // Copyright (C) 2012-2015  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //
21 // This program can be used for unit test of dialog box.
22 // You just have to include the interface file (*.h) and
23 // use the dialog class as illustrated in the functions TEST_*.
24 // (gboulant - 12/10/2010)
25 //
26 #include <QApplication>
27
28 #include "DlgAlias.hxx"
29
30 #include <iostream>
31 using std::cout;
32 using std::endl;
33 #define LOG(msg) cout << "[XMED - dlgTester]::"<< msg << endl;
34
35
36
37 void TEST_dlgAlias_show(int argc, char *argv[]) { 
38   QApplication app(argc,argv);
39
40   DlgAlias dialog;
41   dialog.setAlias("vitesse");
42   dialog.show();
43
44   app.exec();
45 }
46
47 void TEST_dlgAlias_exec(int argc, char *argv[]) {
48   QApplication app(argc,argv);
49
50   DlgAlias dialog;
51   QString alias = "vitesse";
52   dialog.setAlias(alias);
53   int choice = dialog.exec();
54   if ( choice == QDialog::Accepted ) {
55     LOG("Clic on OK");
56   }
57   else {
58     LOG("Clic on Cancel");
59   }
60
61   //app.exec();
62 }
63
64
65 int main(int argc, char *argv[])
66 {
67   
68   //TEST_dlgAlias_show(argc, argv);
69   TEST_dlgAlias_exec(argc, argv);
70   
71 }