2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
10 # This software is governed by the CeCILL-B license under French law and
11 # abiding by the rules of distribution of free software. You can use,
12 # modify and/ or redistribute the software under the terms of the CeCILL-B
13 # license as circulated by CEA, CNRS and INRIA at the following URL
14 # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15 # or in the file LICENSE.txt.
17 # As a counterpart to the access to the source code and rights to copy,
18 # modify and redistribute granted by the license, users are provided only
19 # with a limited warranty and the software's author, the holder of the
20 # economic rights, and the successive licensors have only limited
23 # The fact that you are presently reading this means that you have had
24 # knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------
29 * wxCDMCMakeListsDescriptionPanel.cpp
31 * Created on: Nov 27, 2012
32 * Author: Daniel Felipe Gonzalez Obando
35 #include "wxCDMCMakeListsDescriptionPanel.h"
37 #include "wxCDMMainFrame.h"
39 #include "creaDevManagerIds.h"
40 #include "images/CMIcon64.xpm"
42 BEGIN_EVENT_TABLE(wxCDMCMakeListsDescriptionPanel, wxPanel)
43 EVT_BUTTON(ID_BUTTON_PREV, wxCDMCMakeListsDescriptionPanel::OnBtnReturn)
44 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMCMakeListsDescriptionPanel::OnBtnOpenInEditor)
45 EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMCMakeListsDescriptionPanel::OnBtnOpenFolder)
48 wxCDMCMakeListsDescriptionPanel::wxCDMCMakeListsDescriptionPanel(
50 modelCDMCMakeListsFile* makefile,
52 const wxString& caption,
58 wxCDMCMakeListsDescriptionPanel::Create(parent, makefile, id, caption, pos, size, style);
61 wxCDMCMakeListsDescriptionPanel::~wxCDMCMakeListsDescriptionPanel()
65 bool wxCDMCMakeListsDescriptionPanel::Create(
67 modelCDMCMakeListsFile* makefile,
69 const wxString& caption,
75 wxPanel::Create(parent, id, pos, size, style);
76 this->cMakeLists = makefile;
81 void wxCDMCMakeListsDescriptionPanel::CreateControls()
83 wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
86 wxButton* returnbt = new wxButton(this, ID_BUTTON_PREV, wxT("Return to project"));
87 returnbt->SetToolTip(wxT("Return to the active project description."));
88 sizer->Add(returnbt, 0, wxALIGN_CENTER | wxALL, 5);
90 wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL);
93 headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(CMIcon64)),0, wxALIGN_CENTER, 0);
94 wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL);
96 textSizer->Add(new wxStaticText(this, -1, _("CMake Configuration File")),0, wxALIGN_LEFT, 0);
98 textSizer->Add(new wxStaticText(this, -1, crea::std2wx("CMakeLists.txt")),0, wxALIGN_LEFT, 0);
99 headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
101 sizer->Add(headerSizer, 0, wxALIGN_CENTER);
104 wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Actions"));
105 wxPanel* actionsPanel = new wxPanel(this);
106 wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
108 wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(1, 2, 9, 15);
110 wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Open File"));
111 editCMakebt->SetToolTip(wxT("Open the CMakeLists file in the default text editor."));
112 actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5);
113 wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open Containing Folder"));
114 openFolderbt->SetToolTip(wxT("Open the folder where the CMakeLists file is located in the file explorer."));
115 actionsGridSizer->Add(openFolderbt, 1, wxALL | wxEXPAND, 5);
117 actionsGridSizer->AddGrowableCol(0,1);
118 actionsGridSizer->AddGrowableCol(1,1);
120 actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0);
121 actionsPanel->SetSizer(actionsPanelSizer);
122 actionsPanelSizer->Fit(actionsPanel);
123 actionsBox->Add(actionsPanel, 1, wxEXPAND);
124 sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
128 sizer->SetSizeHints(this);
131 void wxCDMCMakeListsDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
133 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
134 newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
136 wxPostEvent(this->GetParent(), *newEvent);
139 void wxCDMCMakeListsDescriptionPanel::OnBtnOpenInEditor(wxCommandEvent& event)
142 if(!this->cMakeLists->OpenFile(result))
143 wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
146 void wxCDMCMakeListsDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
149 if(!this->cMakeLists->OpenInFileExplorer(result))
150 wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);