]> Creatis software - creaContours.git/blob - appli/wxContourGUIExample/wxContourGUIExample.cxx
Clean code
[creaContours.git] / appli / wxContourGUIExample / wxContourGUIExample.cxx
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 //----------------------------------------------------------------------------------------------------------------
27 // Class definition include
28 //----------------------------------------------------------------------------------------------------------------
29
30 #include "wxContourGUIExample.h"
31 #include "wxContourMainFrame.h"
32 #include <creaImageIOWxSimpleDlg.h>
33 #include <creaImageIOSystem.h>
34 #include <creaVtkBasicSlicer.h>
35 #include "vtkMetaImageReader.h"
36 #include <map>
37 #include "vtkImageData.h"
38 #include "wx/artprov.h"
39 #include <wx/filedlg.h>
40
41 #ifndef PATH_MAX // If not defined yet : do it
42 #  define PATH_MAX 2048
43 #endif
44 #if defined(WIN32)
45   #include <direct.h>
46 #else
47    #include <dirent.h>
48 #endif
49 #include <stdlib.h>
50
51 wxContourMainFrame* wxTheApplication::frame = 0;
52
53 //----------------------------------------------------------------------------------------------------------------
54 // This macro implements the entry point (main function) for the application
55 //----------------------------------------------------------------------------------------------------------------
56
57 //=========================================================================
58 //=========================================================================
59 IMPLEMENT_APP( wxTheApplication );
60 /*
61 wxContourGUIExample :: wxContourGUIExample(const wxString& title, const wxPoint& pos, const wxSize& size)
62 : wxFrame((wxFrame *) NULL, -1, title, pos, size)
63 {
64 }
65 */
66
67 #ifdef _DEBUG
68 //void wxAppConsole::OnAssert(char const *,int,char const *,char const *)
69 //{
70 //}
71
72 //void wxAppConsole::OnAssertFailure(char const *,int,char const *,char const *,char const *)
73 //{
74 //}
75 #endif
76
77
78 bool wxTheApplication::OnInit()
79 {
80
81         vtkOutputWindowCreaContour *outputWindowCreaContour= vtkOutputWindowCreaContour::New();
82         vtkOutputWindow::SetInstance( outputWindowCreaContour );
83         outputWindowCreaContour->Delete();
84         wxString infoImage;
85         wxInitAllImageHandlers();
86
87 //EED01Juin2010 int min_image_type = GIMMICK_2D_IMAGE_SELECTION;
88 //EED01Juin2010 int max_image_type = GIMMICK_3D_IMAGE_SELECTION;
89 //EED01Juin2010 int output_dim = NATIVE;
90 //EED01Juin2010 int threads = 1;
91
92 //EED 1Juin2010
93       creaImageIO::WxSimpleDlg w(0,_T("Select your image"),"creaContours_Descriptor.dscp","creatisContours DB");
94       w.ShowModal();
95
96         std::vector<vtkImageData*> images;
97 //EED 1Juin2010
98 //      creaImageIO::WxGimmickReaderDialog w(0,
99 //                                                                              -1,
100 //                                                                              "creaContours_Descriptor.dscp",
101 //                                                                              "creatisContours DB",
102 //                                                                              _T("WxGimmickDialog test"),
103 //                                                                              wxDefaultPosition,wxSize(1200,800)
104 //                                                                              ,min_image_type,
105 //                                                                              max_image_type,
106 //                                                                              output_dim,
107 //                                                                              threads);
108 //      w.ShowModal();
109
110 //JCP
111         //std::string datadir(  crea::wx2std(GetExecutablePath()) );
112         std::string datadir(  crea::System::GetExecutablePath() );
113         
114 //JCP
115             #ifdef LINUX /* assume this is OSX */
116                    datadir=datadir+"/../share/creaContours";
117             #endif // MACOSX
118                 #ifdef MACOSX /* assume this is OSX */
119                         datadir=datadir+"/../../../../share/creaContours";
120                 #endif // MACOSX
121                 if(w.GetReturnCode() == wxID_OK)
122                 {
123                         std::vector<std::string> s;
124                         images    = w.getImagesSelected();
125                         infoImage = w.getInfoImage();
126                 } else if (w.GetReturnCode() == wxID_CANCEL)
127                 {
128                         vtkMetaImageReader *reader = vtkMetaImageReader::New();
129                         std::string filename= datadir + "/data/hola.mhd";
130                         infoImage=_T("DEFAULT-Image:")+crea::std2wx(filename);
131                         reader->SetFileName( filename.c_str() );
132                         reader->Update();
133                         images.push_back(reader->GetOutput());
134                 } else {
135                         return -1;
136                 }
137         wxFrame* frame1 = new wxFrame(NULL, wxID_ANY, wxT("Creatis- ROI Application- Evaluation version,01 Agost 2010 ")+infoImage, wxPoint(400,50), wxSize(800, 600) );
138         //frame = new wxContourMainFrame( frame1, wxID_ANY, wxString(_T("")), wxPoint(50,50), wxSize(800, 600), images );
139         frame = wxContourMainFrame::getInstance(frame1, wxID_ANY, wxString(_T("")), wxPoint(200,50), wxSize(800, 600), images,  wxDEFAULT_FRAME_STYLE | wxSUNKEN_BORDER,datadir );
140         frame1->CreateStatusBar();
141         frame1->Show(TRUE);
142     frame->RefreshInterface();
143         return TRUE;
144 }
145
146 #if(WIN32)
147 int main(int argc, char* argv[])
148   {  
149         char buffer[500];
150         wcstombs(buffer, ::GetCommandLine(), 500);
151     return WinMain(::GetModuleHandle(NULL), NULL, buffer, SW_SHOWNORMAL);
152 //    return WinMain(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), SW_SHOWNORMAL);
153   }
154 #else
155 #endif
156