]> Creatis software - crea.git/blob - appli/creaNewProject/NewProject/appli/template_wx_appli/winApp.cpp
34be51aa88d08741ec92ee072f0fc317335078a5
[crea.git] / appli / creaNewProject / NewProject / appli / template_wx_appli / winApp.cpp
1 #include <creaWx.h>
2 #include <wx/dirdlg.h>
3 class myApp : public wxApp
4 {
5 public:
6   bool OnInit( ); 
7   int  OnExit() { return true; }
8 };
9
10 IMPLEMENT_APP(myApp);
11 CREA_WXMAIN_WITH_CONSOLE
12
13 bool myApp::OnInit( )
14 {        
15   wxApp::OnInit();
16 #ifdef __WXGTK__
17   //See http://www.wxwindows.org/faqgtk.htm#locale
18   setlocale(LC_NUMERIC, "C");
19 #endif
20    wxInitAllImageHandlers();
21
22    wxString dir = wxDirSelector(_T("Select directory in which to create the project"), _T(""), wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST );
23
24    if (dir.IsEmpty()) return false;
25
26    wxString name = wxGetTextFromUser(_T("Enter project name"),
27                                      _T("creaNewProject"),
28                                      _T("New"));
29    if (name.IsEmpty()) return false;
30    
31 #if(_WIN32)
32         std::string command("creaNewProject.bat ");
33         std::string command1("creaSed.exe ");
34         std::string command2("del ");
35         
36         command  += "\"" + crea::wx2std(dir) + "\" \"" + crea::wx2std(name) + "\"";
37         command1 += "\"" + crea::wx2std(dir)+"\\"+crea::wx2std(name)+"\\CMakeLists.txt.in\" " + "NameOfTheProject " + crea::wx2std(name) + "> \"" + crea::wx2std(dir)+"\\"+crea::wx2std(name)+"\\CMakeLists.txt\"";
38         command2 += "\"" + crea::wx2std(dir)+"\\"+crea::wx2std(name)+"\\CMakeLists.txt.in\"";
39         if ( ! system ( command.c_str() ) )
40         {
41                 system ( command1.c_str() );
42                 system ( command2.c_str() );
43                 wxMessageBox(_T("Done !"),_T("creaNewProject"),
44                                 wxOK | wxICON_INFORMATION);
45         }
46         else 
47         {
48                 wxString err(_T("An error occured while running '"));
49                 err +=  crea::std2wx(command) + _T("'");
50                 wxMessageBox(err,_T("creaNewProject"),wxOK | wxICON_ERROR);      
51         }       
52 #else
53         std::string command("creaNewProject.sh ");
54         command += "\"" + crea::wx2std(dir) + "\"" +" " + crea::wx2std(name);
55         if ( ! system ( command.c_str() ) )
56         {
57                 wxMessageBox(_T("Done !"),_T("creaNewProject"),
58                                         wxOK | wxICON_INFORMATION);
59         }
60         else 
61         {
62                 wxString err(_T("An error occured while running '"));
63                 err +=  crea::std2wx(command) + _T("'");
64                 wxMessageBox(err,_T("creaNewProject"),wxOK | wxICON_ERROR);      
65         }
66         
67 #endif
68
69
70    return false;
71 }
72