/* # --------------------------------------------------------------------- # # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image # pour la Sant�) # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton # Previous Authors : Laurent Guigues, Jean-Pierre Roux # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil # # This software is governed by the CeCILL-B license under French law and # abiding by the rules of distribution of free software. You can use, # modify and/ or redistribute the software under the terms of the CeCILL-B # license as circulated by CEA, CNRS and INRIA at the following URL # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html # or in the file LICENSE.txt. # # As a counterpart to the access to the source code and rights to copy, # modify and redistribute granted by the license, users are provided only # with a limited warranty and the software's author, the holder of the # economic rights, and the successive licensors have only limited # liability. # # The fact that you are presently reading this means that you have had # knowledge of the CeCILL-B license and that you accept its terms. # ------------------------------------------------------------------------ */ /* * wxCDMProjectDescriptionPanel.cpp * * Created on: Nov 27, 2012 * Author: Daniel Felipe Gonzalez Obando */ #include "wxCDMProjectDescriptionPanel.h" #include "wxCDMMainFrame.h" #include "wxCDMNewPackageDialog.h" #include "creaDevManagerIds.h" #include "images/PrIcon64.xpm" BEGIN_EVENT_TABLE(wxCDMProjectDescriptionPanel, wxPanel) EVT_BUTTON(ID_BUTTON_GOTO_PACKAGE_MANAGER, wxCDMProjectDescriptionPanel::OnBtnManagePackages) EVT_BUTTON(ID_BUTTON_GOTO_LIB_MANAGER, wxCDMProjectDescriptionPanel::OnBtnManageLibraries) EVT_BUTTON(ID_BUTTON_GOTO_APPLI_MANAGER, wxCDMProjectDescriptionPanel::OnBtnManageApplications) EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMProjectDescriptionPanel::OnBtnEditCMakeLists) END_EVENT_TABLE() wxCDMProjectDescriptionPanel::wxCDMProjectDescriptionPanel( wxWindow* parent, modelCDMProject* project, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style ) { wxCDMProjectDescriptionPanel::Create(parent, project, id, caption, pos, size, style); } wxCDMProjectDescriptionPanel::~wxCDMProjectDescriptionPanel() { } bool wxCDMProjectDescriptionPanel::Create( wxWindow* parent, modelCDMProject* project, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style ) { wxPanel::Create(parent, id, pos, size, style); this->project = project; CreateControls(); return TRUE; } void wxCDMProjectDescriptionPanel::CreateControls() { wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL); //Welcome sizer->Add(new wxStaticText(this, -1, _("Project")),0, wxALIGN_CENTER, 0); //Image sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(PrIcon64)),0, wxALIGN_CENTER, 0); //Project Name sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->project->GetName())),0, wxALIGN_CENTER, 0); //----------------------------------Project Properties----------------------------------- //properties StaticBoxSizer wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, _T("&Properties")); //properties Panel wxPanel* propertiesPanel = new wxPanel(this); //properties Sizer wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL); //propertiesGrid Sizer wxFlexGridSizer* propertiesGridSizer = new wxFlexGridSizer(4, 2, 9, 15); //properties elements //labels wxStaticText* pVersion = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Version")); wxStaticText* pVersionDate = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Version Date")); wxStaticText* pSourceLocation = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Source Location")); wxStaticText* pBuildLocation = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Build Location")); //values // version wxBoxSizer* pVersionsz = new wxBoxSizer(wxHORIZONTAL); wxStaticText* pVersiontc = new wxStaticText(propertiesPanel, wxID_ANY, crea::std2wx(this->project->GetVersion())); wxButton* pVersionbt = new wxButton(propertiesPanel, ID_BUTTON_SET_VERSION, wxT("Set")); pVersionbt->SetToolTip(wxT("Update the version of the project.")); pVersionsz->Add(pVersiontc, 0, wxALIGN_CENTER_VERTICAL, 0); pVersionsz->Add(pVersionbt, 0, wxALIGN_CENTER | wxLEFT, 10); // versionDate wxStaticText* pVersionDatetc = new wxStaticText(propertiesPanel, -1, crea::std2wx(this->project->GetVersionDate())); // sourceLocation wxStaticText* pSourceLocationtc = new wxStaticText(propertiesPanel, -1, crea::std2wx(this->project->GetPath())); pSourceLocationtc->SetMaxSize(wxSize(350,-1)); // buildLocation wxBoxSizer* pBuildLocationsz = new wxBoxSizer(wxHORIZONTAL); wxStaticText* pBuildLocationtc = new wxStaticText(propertiesPanel, -1, crea::std2wx(this->project->GetBuildPath())); pBuildLocationtc->SetMaxSize(wxSize(350,-1)); wxButton* pBuildLocationbt = new wxButton(propertiesPanel, ID_BUTTON_SET_BUILD_PATH, wxT("Choose")); pBuildLocationbt->SetToolTip(wxT("Select a new location for compiling the project.")); pBuildLocationsz->Add(pBuildLocationtc, 0, wxALIGN_CENTER, 0); pBuildLocationsz->Add(pBuildLocationbt, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, 10); propertiesGridSizer->Add(pVersion, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); propertiesGridSizer->Add(pVersionsz, 1, wxEXPAND); propertiesGridSizer->Add(pVersionDate, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); propertiesGridSizer->Add(pVersionDatetc, 1, wxEXPAND); propertiesGridSizer->Add(pSourceLocation, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); propertiesGridSizer->Add(pSourceLocationtc, 1, wxEXPAND); propertiesGridSizer->Add(pBuildLocation, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); propertiesGridSizer->Add(pBuildLocationsz, 1, wxEXPAND); propertiesGridSizer->AddGrowableCol(1,1); propertiesPanelSizer-> Add(propertiesGridSizer, 0, wxALL | wxEXPAND, 5); //SetPanel sizer and box propertiesPanel->SetSizer(propertiesPanelSizer); propertiesPanelSizer->Fit(propertiesPanel); propertiesBox->Add(propertiesPanel, 1, wxEXPAND); sizer->Add(propertiesBox, 0, wxEXPAND | wxALL, 10); //----------------------------------Project Actions-------------------------------------- //actions StaticBoxSizer wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL,this, _T("&Actions")); //actions Panel wxPanel* actionsPanel = new wxPanel(this); //actions Sizer wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL); //buttons // package manager wxButton* packageMgrbt = new wxButton(actionsPanel, ID_BUTTON_GOTO_PACKAGE_MANAGER, _T("Package Manager")); packageMgrbt->SetToolTip(wxT("Find the current available packages into this project. You can also create new Packages in this section.")); actionsPanelSizer->Add(packageMgrbt, 0, wxALL, 5); // lib manager // show only if there is a lib folder if(this->project->GetLib() != NULL) { wxButton* libMgrbt = new wxButton(actionsPanel, ID_BUTTON_GOTO_LIB_MANAGER, _T("Library Manager")); libMgrbt->SetToolTip(wxT("Find the current available libraries into this project. You can also create new Libraries in this section as well as edit the lib folder's CMakeLists.txt file.")); actionsPanelSizer->Add(libMgrbt, 0, wxALL, 5); } // appli manager // show only if there is a appli folder if(this->project->GetAppli() != NULL) { wxButton* appliMgrbt = new wxButton(actionsPanel, ID_BUTTON_GOTO_APPLI_MANAGER, _T("Application Manager")); appliMgrbt->SetToolTip(wxT("Find the current available applications into this project. You can also create new Applications in this section as well as edit the appli folder's CMakeLists.txt file.")); actionsPanelSizer->Add(appliMgrbt, 0, wxALL, 5); } // edit CMakeLists file wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File")); editCMakebt->SetToolTip(wxT("Edit the CMakeLists.txt file of this project.")); actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5); //SetPanel sizer and box actionsPanel->SetSizer(actionsPanelSizer); actionsPanelSizer->Fit(actionsPanel); actionsBox->Add(actionsPanel, 1, wxEXPAND); sizer->Add(actionsBox, 0, wxEXPAND | wxALL, 10); //Assign sizer this->SetSizer(sizer); sizer->SetSizeHints(this); } void wxCDMProjectDescriptionPanel::OnBtnCreateLibrary(wxCommandEvent& event) { //get name wxString libraryName = wxGetTextFromUser( _T("Enter the new library name"), _T("New Library - creaDevManager"), _T("") ); //check name if(libraryName.Len() > 0) { std::string* result; //create library modelCDMIProjectTreeNode* library = this->project->CreateLibrary(crea::wx2std(libraryName),result); //check library created if(library == NULL) { wxMessageBox(crea::std2wx(*result),_T("New Library - Error!"),wxOK | wxICON_ERROR); event.Skip(); return; } wxMessageBox(crea::std2wx("Library successfully created."),_T("New Library - Success!"),wxOK | wxICON_INFORMATION); //refreshing tree and description //send event instead of calling parent to avoid crashing ((wxCDMMainFrame*)this->GetParent())->RefreshProject(); wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED); newEvent->SetInt(library->GetId()); wxPostEvent(this->GetParent(), *newEvent); event.Skip(); } } void wxCDMProjectDescriptionPanel::OnBtnCreateApplication(wxCommandEvent& event) { //get name wxString applicationName = wxGetTextFromUser( _T("Enter the new application name"), _T("New Application - creaDevManager"), _T("") ); //check name if(applicationName.Len() > 0) { std::string* result; //create library modelCDMIProjectTreeNode* application = this->project->CreateApplication(crea::wx2std(applicationName),result); //check library created if(application == NULL) { wxMessageBox(crea::std2wx(*result),_T("New Application - Error!"),wxOK | wxICON_ERROR); event.Skip(); return; } wxMessageBox(crea::std2wx("Application successfully created."),_T("New Application - Success!"),wxOK | wxICON_INFORMATION); //refreshing tree and description //send event instead of calling parent to avoid crashing ((wxCDMMainFrame*)this->GetParent())->RefreshProject(); wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED); newEvent->SetInt(application->GetId()); wxPostEvent(this->GetParent(), *newEvent); event.Skip(); } } void wxCDMProjectDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event) { //TODO: implement method std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl; event.Skip(); } void wxCDMProjectDescriptionPanel::OnBtnManagePackages(wxCommandEvent& event) { wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED); newEvent->SetId(1); newEvent->SetString(wxT("manage_packages")); newEvent->SetInt(this->project->GetId()); wxPostEvent(this->GetParent(), *newEvent); event.Skip(); } void wxCDMProjectDescriptionPanel::OnBtnManageLibraries(wxCommandEvent& event) { wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED); newEvent->SetId(1); newEvent->SetString(wxT("manage_libraries")); wxPostEvent(this->GetParent(), *newEvent); event.Skip(); } void wxCDMProjectDescriptionPanel::OnBtnManageApplications(wxCommandEvent& event) { wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED); newEvent->SetId(1); newEvent->SetString(wxT("manage_applications")); wxPostEvent(this->GetParent(), *newEvent); event.Skip(); }