]> Creatis software - crea.git/blob - appli/creaNewProject/creaNewProject.cpp
695b00d5fd45d9686065fa56b2d08d67a65f14c4
[crea.git] / appli / creaNewProject / creaNewProject.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 #else
36    std::string command("creaNewProject.sh ");
37 #endif
38    command += "\"" + crea::wx2std(dir) + "\" \"" + crea::wx2std(name) + "\"";
39    command1 += "\"" + crea::wx2std(dir)+"\\"+crea::wx2std(name)+"\\CMakeLists.txt.in\" " + "PROJECT_NAME " + crea::wx2std(name) + "> \"" + crea::wx2std(dir)+"\\"+crea::wx2std(name)+"\\CMakeLists.txt\"";
40    command2 += "\"" + crea::wx2std(dir)+"\\"+crea::wx2std(name)+"\\CMakeLists.txt.in\"";
41
42    if ( ! system ( command.c_str() ) )
43      {
44                  
45                  system ( command1.c_str() );
46                  system ( command2.c_str() );
47        wxMessageBox(_T("Done !"),_T("creaNewProject"),
48                     wxOK | wxICON_INFORMATION);
49      }
50    else 
51      {
52        wxString err(_T("An error occured while running '"));
53        err +=  crea::std2wx(command) + _T("'");
54        wxMessageBox(err,_T("creaNewProject"),wxOK | wxICON_ERROR);      
55      }
56
57    return false;
58 }
59