X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FwxCDMProjectDescriptionPanel.cpp;h=844d8cb1bf70dbec010dc2ec10f307a4b37e508b;hb=9877d27eb9a1339d97bc8e13ec5f1f75a5dc9e3f;hp=2d8b0c1a5c1d2588903f2cbe95edfa63895b5622;hpb=f57f98a24c774785361ae5053f1510106da19052;p=crea.git diff --git a/lib/creaDevManagerLib/wxCDMProjectDescriptionPanel.cpp b/lib/creaDevManagerLib/wxCDMProjectDescriptionPanel.cpp index 2d8b0c1..844d8cb 100644 --- a/lib/creaDevManagerLib/wxCDMProjectDescriptionPanel.cpp +++ b/lib/creaDevManagerLib/wxCDMProjectDescriptionPanel.cpp @@ -35,17 +35,22 @@ #include "wxCDMProjectDescriptionPanel.h" #include "wxCDMMainFrame.h" +#include "wxCDMNewPackageDialog.h" + +#include "wxCDMProjectHelpDialog.h" #include "creaDevManagerIds.h" #include "images/PrIcon64.xpm" +#include "CDMUtilities.h" BEGIN_EVENT_TABLE(wxCDMProjectDescriptionPanel, wxPanel) -EVT_BUTTON(ID_BUTTON_CREATE_PACKAGE, wxCDMProjectDescriptionPanel::OnBtnCreatePackage) -EVT_BUTTON(ID_BUTTON_CREATE_BLACKBOX, wxCDMProjectDescriptionPanel::OnBtnCreateBlackBox) -EVT_BUTTON(ID_BUTTON_CREATE_LIBRARY, wxCDMProjectDescriptionPanel::OnBtnCreateLibrary) -EVT_BUTTON(ID_BUTTON_CREATE_APPLICATION, wxCDMProjectDescriptionPanel::OnBtnCreateApplication) +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) -EVT_COMMAND(wxID_ANY, wxEVT_DISPLAY_CHANGED, wxCDMProjectDescriptionPanel::OnCreationComplete) +EVT_BUTTON(ID_BUTTON_SET_BUILD_PATH, wxCDMProjectDescriptionPanel::OnBtnSetBuildPath) +EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMProjectDescriptionPanel::OnBtnOpenFolder) +EVT_BUTTON(ID_BUTTON_SET_VERSION, wxCDMProjectDescriptionPanel::OnBtnSetVersion) END_EVENT_TABLE() wxCDMProjectDescriptionPanel::wxCDMProjectDescriptionPanel( @@ -78,6 +83,9 @@ bool wxCDMProjectDescriptionPanel::Create( wxPanel::Create(parent, id, pos, size, style); this->project = project; CreateControls(); + // this part makes the scrollbars show up + this->FitInside(); // ask the sizer about the needed size + this->SetScrollRate(5, 5); return TRUE; } @@ -85,127 +93,340 @@ void wxCDMProjectDescriptionPanel::CreateControls() { wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL); - //Welcome - sizer->Add(new wxStaticText(this, -1, _("Project")),0, wxALIGN_CENTER, 0); + //Header + wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL); + { + //Image + headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(PrIcon64)),0, wxALIGN_CENTER, 0); + wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL); + //Title + textSizer->Add(new wxStaticText(this, -1, _("Project")),0, wxALIGN_LEFT, 0); + //Project Name + textSizer->Add(new wxStaticText(this, -1, crea::std2wx(this->project->GetName())),0, wxALIGN_LEFT, 0); + headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5); + } + sizer->Add(headerSizer, 0, wxALIGN_CENTER); + + + + + //----------------------------------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); + this->versiontc = 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(this->versiontc, 1, wxALIGN_CENTER, 1); + pVersionsz->Add(pVersionbt, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, 10); + // versionDate + this->versionDatetc = new wxStaticText(propertiesPanel, -1, crea::std2wx(this->project->GetVersionDate())); + // sourceLocation + wxBoxSizer* pSourceLocationsz = new wxBoxSizer(wxHORIZONTAL); + wxStaticText* pSourceLocationtc = new wxStaticText(propertiesPanel, -1, crea::std2wx(this->project->GetPath())); + pSourceLocationtc->SetMaxSize(wxSize(200,-1)); + wxButton* pSourceLocationbt = new wxButton(propertiesPanel, ID_BUTTON_OPEN_FOLDER, wxT("Open")); + pSourceLocationbt->SetToolTip(wxT("Open the source folder in the file explorer.")); + pSourceLocationsz->Add(pSourceLocationtc, 1, wxALIGN_CENTER, 1); + pSourceLocationsz->Add(pSourceLocationbt, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, 10); + // buildLocation + wxBoxSizer* pBuildLocationsz = new wxBoxSizer(wxHORIZONTAL); + this->buildPathtc = new wxStaticText(propertiesPanel, -1, crea::std2wx(this->project->GetBuildPath())); + this->buildPathtc->SetMaxSize(wxSize(200,-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(this->buildPathtc, 1, wxALIGN_CENTER, 1); + 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(this->versionDatetc, 1, wxEXPAND); + propertiesGridSizer->Add(pSourceLocation, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); + propertiesGridSizer->Add(pSourceLocationsz, 1, wxEXPAND); + propertiesGridSizer->Add(pBuildLocation, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); + propertiesGridSizer->Add(pBuildLocationsz, 1, wxEXPAND); + + propertiesGridSizer->AddGrowableCol(1,1); + + propertiesPanelSizer-> Add(propertiesGridSizer, 1, wxALL | wxEXPAND, 5); + + //SetPanel sizer and box + propertiesPanel->SetSizer(propertiesPanelSizer); + propertiesPanelSizer->Fit(propertiesPanel); + propertiesBox->Add(propertiesPanel, 1, wxEXPAND); + sizer->Add(propertiesBox, 0, wxEXPAND | wxLEFT | wxRIGHT, 10); + + //----------------------------------Project Actions-------------------------------------- + //actions StaticBoxSizer + wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL,this, _T("&Actions")); + actionsBox->GetStaticBox()->SetToolTip(wxT("Go to any of the content managers of the project or edit the project's CMakeLists.txt file by selecting any of the available actions.")); + //actions Panel + wxPanel* actionsPanel = new wxPanel(this); + //actions Sizer + wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL); + + //actionsGrid Sizer + wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(2, 2, 9, 15); + //buttons + // 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("A. 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.")); + libMgrbt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMProjectDescriptionPanel::OnLibMouseEnter,NULL,this); + libMgrbt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMProjectDescriptionPanel::OnLibMouseExit,NULL,this); + actionsGridSizer->Add(libMgrbt, 1, wxALL | wxEXPAND, 5); + } + // package manager + wxButton* packageMgrbt = new wxButton(actionsPanel, ID_BUTTON_GOTO_PACKAGE_MANAGER, _T("B. Package Manager")); + packageMgrbt->SetToolTip(wxT("Find the current available packages into this project. You can also create new Packages in this section.")); + actionsGridSizer->Add(packageMgrbt, 1, wxALL | wxEXPAND, 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("C. 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.")); + appliMgrbt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMProjectDescriptionPanel::OnAppliMouseEnter,NULL,this); + appliMgrbt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMProjectDescriptionPanel::OnAppliMouseExit,NULL,this); + actionsGridSizer->Add(appliMgrbt, 1, wxALL | wxEXPAND, 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.")); + editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMProjectDescriptionPanel::OnCMakeMouseEnter,NULL,this); + editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMProjectDescriptionPanel::OnCMakeMouseExit,NULL,this); + actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5); + + actionsGridSizer->AddGrowableCol(0,1); + actionsGridSizer->AddGrowableCol(1,1); - //Image - sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(PrIcon64)),0, wxALIGN_CENTER, 0); + actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0); + //SetPanel sizer and box + actionsPanel->SetSizer(actionsPanelSizer); + actionsPanelSizer->Fit(actionsPanel); + actionsBox->Add(actionsPanel, 1, wxALL | wxEXPAND, 5); + sizer->Add(actionsBox, 0, wxEXPAND | wxALL, 10); - //Project Name - sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->project->GetName())),0, wxALIGN_CENTER, 0); - //Project Properties - wxStaticBox* propertiesBox = new wxStaticBox(this, -1, _T("&Properties")); - wxStaticBoxSizer* propertiesBoxInnerSizer = new wxStaticBoxSizer(propertiesBox, wxVERTICAL); + //Assign sizer + this->SetSizer(sizer); + sizer->SetSizeHints(this); + + if(((wxCDMMainFrame*)this->GetParent())->isHelp()) + { + wxCDMProjectHelpDialog* helpDialog = new wxCDMProjectHelpDialog(this->GetParent(), this->project, wxID_ANY); + helpDialog->Show(true); + } +} - wxFlexGridSizer* flexGridSizer = new wxFlexGridSizer(4, 2, 9, 15); +modelCDMProject* wxCDMProjectDescriptionPanel::GetProject() const +{ + return this->project; +} - wxStaticText *pVersion = new wxStaticText(this, -1, wxT("Version")); - wxStaticText *pVersionDate = new wxStaticText(this, -1, wxT("Version Date")); - wxStaticText *pSourceLocation = new wxStaticText(this, -1, wxT("Source Location")); - wxStaticText *pBuildLocation = new wxStaticText(this, -1, wxT("Build Location")); +void wxCDMProjectDescriptionPanel::OnBtnManagePackages(wxCommandEvent& event) +{ + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED); + newEvent->SetId(1); + newEvent->SetString(wxT("manage_packages")); + newEvent->SetClientData(this->project); + wxPostEvent(this->GetParent(), *newEvent); + event.Skip(); +} - wxTextCtrl *pVersiontc = new wxTextCtrl(this, -1, crea::std2wx(this->project->GetVersion())); - wxTextCtrl *pVersionDatetc = new wxTextCtrl(this, -1, crea::std2wx(this->project->GetVersionDate())); - wxTextCtrl *pSourceLocationtc = new wxTextCtrl(this, -1, crea::std2wx(this->project->GetPath())); - wxTextCtrl *pBuildLocationtc = new wxTextCtrl(this, -1, crea::std2wx(this->project->GetBuildPath())); +void wxCDMProjectDescriptionPanel::OnBtnManageLibraries(wxCommandEvent& event) +{ + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED); + newEvent->SetId(1); + newEvent->SetString(wxT("manage_libraries")); + wxPostEvent(this->GetParent(), *newEvent); - flexGridSizer->Add(pVersion, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); - flexGridSizer->Add(pVersiontc, 1, wxEXPAND); - flexGridSizer->Add(pVersionDate, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); - flexGridSizer->Add(pVersionDatetc, 1, wxEXPAND); - flexGridSizer->Add(pSourceLocation, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); - flexGridSizer->Add(pSourceLocationtc, 1, wxEXPAND); - flexGridSizer->Add(pBuildLocation, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL); - flexGridSizer->Add(pBuildLocationtc, 1, wxEXPAND); + wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED); - propertiesBoxInnerSizer -> Add(flexGridSizer, 0, wxEXPAND); - sizer -> Add(propertiesBoxInnerSizer, 1, wxEXPAND | wxALL, 20); + if(this->project->GetLib() != NULL) + { + newEvent1->SetClientData(this->project->GetLib()); + newEvent1->SetId(0); + wxPostEvent(this->GetParent(), *newEvent1); + } - //Actions - wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions")); - wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL); - sizer -> Add(actionsBoxInnerSizer, 1, wxEXPAND | wxALL, 20); + event.Skip(); +} - actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_PACKAGE, _T("Create Package")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20); - actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_BLACKBOX, _T("Create Black Box")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20); - actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_LIBRARY, _T("Create Library")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20); - actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_APPLICATION, _T("Create Application")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20); +void wxCDMProjectDescriptionPanel::OnBtnManageApplications(wxCommandEvent& event) +{ + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED); + newEvent->SetId(1); + newEvent->SetString(wxT("manage_applications")); + wxPostEvent(this->GetParent(), *newEvent); - actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20); + wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED); - //Assign sizer - actionsBoxInnerSizer->SetSizeHints(this); + if(this->project->GetAppli() != NULL) + { + newEvent1->SetClientData(this->project->GetAppli()); + newEvent1->SetId(0); + wxPostEvent(this->GetParent(), *newEvent1); + } - SetSizer(sizer); - sizer->SetSizeHints(this); + event.Skip(); } -void wxCDMProjectDescriptionPanel::OnBtnCreatePackage(wxCommandEvent& event) +void wxCDMProjectDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event) { - //TODO: implement method - std::cerr << "Event OnBtnCreatePackage not implemented" << std::endl; - event.Skip(); + std::string* result; + if(!this->project->OpenCMakeListsFile(result)) + wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR); + + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED); + + if(this->project->GetCMakeLists() != NULL) + { + newEvent->SetClientData(this->project->GetCMakeLists()); + newEvent->SetId(0); + wxPostEvent(this->GetParent(), *newEvent); + } } -void wxCDMProjectDescriptionPanel::OnBtnCreateBlackBox(wxCommandEvent& event) +void +wxCDMProjectDescriptionPanel::OnBtnSetBuildPath(wxCommandEvent& event) { - //TODO: implement method - std::cerr << "Event OnBtnCreatePackage not implemented" << std::endl; - event.Skip(); + wxDirDialog* dialog = new wxDirDialog(this, wxT("Choose the new build location for the project")); + if(dialog->ShowModal()) + { + std::string* result; + if(!this->project->SetBuildPath(crea::wx2std(dialog->GetPath()), result)) + wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR); + } + this->buildPathtc->SetLabel(crea::std2wx(this->project->GetBuildPath())); +} + +void +wxCDMProjectDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event) +{ + std::string* result; + if(!this->project->OpenInFileExplorer(result)) + wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR); } -void wxCDMProjectDescriptionPanel::OnBtnCreateLibrary(wxCommandEvent& event) +void wxCDMProjectDescriptionPanel::OnBtnSetVersion(wxCommandEvent& event) { - //get name + //get version wxString libraryName = wxGetTextFromUser( - _T("Enter the new library name"), - _T("New Library - creaDevManager"), - _T("") + wxT("Enter the new version name"), + wxT("Change Project Version - creaDevManager"), + crea::std2wx(this->project->GetVersion()) ); //check name - if(libraryName.Len() > 0) + std::vector parts; + CDMUtilities::splitter::split(parts, crea::wx2std(libraryName), " .", CDMUtilities::splitter::no_empties); + if(parts.size() == 3) { 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()); + if(!this->project->SetVersion(crea::wx2std(libraryName), result)) + wxMessageBox(crea::std2wx(*result),_T("Open File - Error!"),wxOK | wxICON_ERROR); + } + else + { + wxMessageBox(crea::std2wx("The version format is incorrect, please follow the following format:\nX.Y.Z\nX: Major Version\nY: Minor Version\nZ: Build Version"),_T("Set Project Version - Error!"),wxOK | wxICON_ERROR); + } + this->versiontc->SetLabel(crea::std2wx(this->project->GetVersion())); + this->versionDatetc->SetLabel(crea::std2wx(this->project->GetVersionDate())); + +} + +void wxCDMProjectDescriptionPanel::OnCMakeMouseEnter(wxMouseEvent& event) +{ + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED); + + if(this->project->GetCMakeLists() != NULL) + { + newEvent->SetClientData(this->project->GetCMakeLists()); + newEvent->SetId(0); wxPostEvent(this->GetParent(), *newEvent); - event.Skip(); } + event.Skip(); } -void wxCDMProjectDescriptionPanel::OnBtnCreateApplication(wxCommandEvent& event) +void wxCDMProjectDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event) { - //TODO: implement method - std::cerr << "Event OnBtnCreatePackage not implemented" << std::endl; + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED); + + if(this->project->GetCMakeLists() != NULL) + { + newEvent->SetClientData(this->project->GetCMakeLists()); + newEvent->SetId(0); + wxPostEvent(this->GetParent(), *newEvent); + } event.Skip(); } -void wxCDMProjectDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event) +void wxCDMProjectDescriptionPanel::OnAppliMouseEnter(wxMouseEvent& event) +{ + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED); + std::cout << "entra appli " << this->project->GetAppli()->GetCMakeLists(); + if(this->project->GetAppli() != NULL) + { + newEvent->SetClientData(this->project->GetAppli()); + newEvent->SetId(0); + wxPostEvent(this->GetParent(), *newEvent); + } + event.Skip(); +} + +void wxCDMProjectDescriptionPanel::OnAppliMouseExit(wxMouseEvent& event) +{ + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED); + + if(this->project->GetAppli() != NULL) + { + newEvent->SetClientData(this->project->GetAppli()); + newEvent->SetId(0); + wxPostEvent(this->GetParent(), *newEvent); + } + event.Skip(); +} + +void wxCDMProjectDescriptionPanel::OnLibMouseEnter(wxMouseEvent& event) { - //TODO: implement method - std::cerr << "Event OnBtnCreatePackage not implemented" << std::endl; + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED); + + if(this->project->GetLib() != NULL) + { + newEvent->SetClientData(this->project->GetLib()); + newEvent->SetId(0); + wxPostEvent(this->GetParent(), *newEvent); + } event.Skip(); } -void wxCDMProjectDescriptionPanel::OnCreationComplete(wxCommandEvent& event) +void wxCDMProjectDescriptionPanel::OnLibMouseExit(wxMouseEvent& event) { - std::cout << "catched" << std::endl; + wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED); + if(this->project->GetLib() != NULL) + { + newEvent->SetClientData(this->project->GetLib()); + newEvent->SetId(0); + wxPostEvent(this->GetParent(), *newEvent); + } + event.Skip(); }