Salome HOME
fix conflict
[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 #include <QtGui>
28
29 #include "DlgAlias.hxx"
30
31 #include <iostream>
32 using std::cout;
33 using std::endl;
34 #define LOG(msg) cout << "[XMED - dlgTester]::"<< msg << endl;
35
36
37
38 void TEST_dlgAlias_show(int argc, char *argv[]) { 
39   QApplication app(argc,argv);
40
41   DlgAlias dialog;
42   dialog.setAlias("vitesse");
43   dialog.show();
44
45   app.exec();
46 }
47
48 void TEST_dlgAlias_exec(int argc, char *argv[]) {
49   QApplication app(argc,argv);
50
51   DlgAlias dialog;
52   QString alias = "vitesse";
53   dialog.setAlias(alias);
54   int choice = dialog.exec();
55   if ( choice == QDialog::Accepted ) {
56     LOG("Clic on OK");
57   }
58   else {
59     LOG("Clic on Cancel");
60   }
61
62   //app.exec();
63 }
64
65
66 int main(int argc, char *argv[])
67 {
68   
69   //TEST_dlgAlias_show(argc, argv);
70   TEST_dlgAlias_exec(argc, argv);
71   
72 }