]> Creatis software - creaImageIO.git/blob - appli/TestWxGimmickDialog/main.cxx
Feature #1764
[creaImageIO.git] / appli / TestWxGimmickDialog / main.cxx
1 /*
2         # ---------------------------------------------------------------------
3         #
4         # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5         #                        pour la Santé)
6         # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7         # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8         # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9         #
10         #  This software is governed by the CeCILL-B license under French law and 
11         #  abiding by the rules of distribution of free software. You can  use, 
12         #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13         #  license as circulated by CEA, CNRS and INRIA at the following URL 
14         #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15         #  or in the file LICENSE.txt.
16         #
17         #  As a counterpart to the access to the source code and  rights to copy,
18         #  modify and redistribute granted by the license, users are provided only
19         #  with a limited warranty  and the software's author,  the holder of the
20         #  economic rights,  and the successive licensors  have only  limited
21         #  liability. 
22         #
23         #  The fact that you are presently reading this means that you have had
24         #  knowledge of the CeCILL-B license and that you accept its terms.
25         # ------------------------------------------------------------------------
26 */
27 #include <creaImageIOSystem.h>
28 #include <creaWx.h>
29 #include <creaImageIOWxGimmickDialog.h>
30 #include <creaVtkBasicSlicer.h>
31
32 class myApp : public wxApp
33 {
34 public:
35   bool OnInit( );
36   int  OnExit() { return true; }
37 };
38
39 IMPLEMENT_APP(myApp);
40
41 CREA_WXMAIN_WITH_CONSOLE
42
43 bool myApp::OnInit( )
44 {        
45   wxApp::OnInit();
46 #ifdef __WXGTK__
47   //See http://www.wxwindows.org/faqgtk.htm#locale
48   setlocale(LC_NUMERIC, "C");
49 #endif
50    wxInitAllImageHandlers();
51
52    int image_type = GIMMICK_3D_IMAGE_SELECTION;
53    int threads = 1;
54
55    creaImageIO::WxGimmickDialog w(0,
56                                   -1,
57                                   _T("Select image(s)        - Gimmick! (c) CREATIS-LRMN 2008"),
58                                   wxDefaultPosition,
59                                   wxSize(1200,800),
60                                   image_type,
61                                   threads);
62    w.ShowModal();
63    
64    if (w.GetReturnCode() == wxID_OK)
65      {
66
67        std::cout << "$$$$ main : user clicked 'OK' $$$$"<<std::endl;
68        std::cout << "$$$$ selected files : "<<std::endl;
69        std::vector<std::string> s;
70        w.GetSelectedFiles(s);
71        std::vector<std::string>::iterator i;
72        for (i=s.begin();i!=s.end();++i) 
73          {
74            std::cout << *i << std::endl;
75          }
76        std::cout << "$$$$ "<<std::endl;
77
78        std::vector<vtkImageData*> images;
79        w.GetSelectedImages(images);
80        crea::VtkBasicSlicer(images.front());
81        images.front()->Delete();
82    
83      }
84    else if (w.GetReturnCode() == wxID_CANCEL)
85      {
86        std::cout << "$$$$ main : user clicked 'CANCEL' $$$$"<<std::endl;
87      }
88    else 
89      {
90         std::cout << "$$$$ main : dialog ended without return code ! $$$$"
91                   <<std::endl;
92       
93      }
94   
95    //   std::cout << "$$$$ main : deleting dialog"<<std::endl;
96    //   delete w;
97    std::cout << "$$$$$$$$$$$$$$$$$$$$ main ended "<<std::endl;
98    return false;
99 }
100
101