]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/wxCDMPackageConfigurationDialog.cpp
Feature #1711 CreaDevManager application implementation
[crea.git] / lib / creaDevManagerLib / wxCDMPackageConfigurationDialog.cpp
diff --git a/lib/creaDevManagerLib/wxCDMPackageConfigurationDialog.cpp b/lib/creaDevManagerLib/wxCDMPackageConfigurationDialog.cpp
new file mode 100644 (file)
index 0000000..af407bf
--- /dev/null
@@ -0,0 +1,217 @@
+/*
+# ---------------------------------------------------------------------
+#
+# 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.
+# ------------------------------------------------------------------------ 
+ */
+
+
+/*
+ * wxCDMPackageConfigurationDialog.cpp
+ *
+ *  Created on: 6/4/2013
+ *      Author: Daniel Felipe Gonzalez Obando
+ */
+
+#include "wxCDMPackageConfigurationDialog.h"
+
+#include "creaDevManagerIds.h"
+
+BEGIN_EVENT_TABLE(wxCDMPackageConfigurationDialog, wxDialog)
+EVT_BUTTON(wxID_OK, wxCDMPackageConfigurationDialog::OnFinish)
+EVT_CHECKBOX(ID_CHECK_INCLUDE_3RDLIBRARY, wxCDMPackageConfigurationDialog::On3rdLibraryIncludeChange)
+EVT_CHECKBOX(ID_CHECK_INCLUDE_LIBRARY, wxCDMPackageConfigurationDialog::OnCustomLibraryIncludeChange)
+END_EVENT_TABLE()
+
+wxCDMPackageConfigurationDialog::wxCDMPackageConfigurationDialog(
+    wxWindow* parent,
+    modelCDMPackage* package,
+    wxWindowID id,
+    const wxString& caption,
+    const wxPoint& position,
+    const wxSize& size,
+    long style
+)
+{
+  wxCDMPackageConfigurationDialog::Create(parent, id, caption, position, size, style);
+  this->package = package;
+}
+
+wxCDMPackageConfigurationDialog::~wxCDMPackageConfigurationDialog()
+{
+}
+
+bool wxCDMPackageConfigurationDialog::Create(
+    wxWindow* parent,
+    wxWindowID id,
+    const wxString& caption,
+    const wxPoint& position,
+    const wxSize& size,
+    long int style
+)
+{
+  wxDialog::Create(parent, id, caption, position, size, style);
+
+  this->CreateControls();
+
+  return TRUE;
+}
+
+void wxCDMPackageConfigurationDialog::CreateControls()
+{
+
+  wxBoxSizer* v_sizer1 = new wxBoxSizer(wxVERTICAL);
+
+
+  wxStaticText* title = new wxStaticText(this, wxID_ANY, wxT("Please select the libraries that are used in this package."), wxDefaultPosition, wxDefaultSize, wxALIGN_LEFT);//new wxRichTextCtrl(this,wxID_ANY, wxString("Create a new project"), wxDefaultPosition, wxDefaultSize, wxRE_READONLY);
+  v_sizer1->Add(title, 0, wxALIGN_LEFT | wxALL, 5);
+
+  wxBoxSizer* includesPanelSizer = new wxBoxSizer(wxVERTICAL);
+
+    //Third Party Libraries
+    wxStaticText* Title1 = new wxStaticText(this, wxID_ANY, wxT("Third Party Libraries:"));
+    wxFont font = Title1->GetFont();
+    font.SetWeight(wxFONTWEIGHT_BOLD);
+    Title1->SetFont(font);
+    includesPanelSizer->Add(Title1, 0, wxEXPAND | wxALL, 5);
+
+    //inclusion data
+    std::map<std::string, bool> inclusions = this->package->Get3rdPartyLibraries();
+    //includesGrid Sizer
+    wxFlexGridSizer* includesGridSizer = new wxFlexGridSizer(inclusions.size()+1, 2, 0, 5);
+
+    wxStaticText* ChBTitle = new wxStaticText(
+        this,
+        wxID_ANY,
+        wxT("Included"),
+        wxDefaultPosition,
+        wxDefaultSize,
+        wxALIGN_CENTER
+      );
+    wxStaticText* LNmTitle = new wxStaticText(
+        this,
+        wxID_ANY,
+        wxT("Library Name"),
+        wxDefaultPosition,
+        wxDefaultSize,
+        wxALIGN_LEFT
+      );
+
+    includesGridSizer->Add(ChBTitle, 1, wxEXPAND);
+    includesGridSizer->Add(LNmTitle, 1, wxEXPAND);
+
+    for (std::map<std::string, bool>::iterator it = inclusions.begin(); it != inclusions.end(); ++it) {
+      wxCheckBox* ChBIncl = new wxCheckBox(
+          this, ID_CHECK_INCLUDE_3RDLIBRARY, wxT(""), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT
+        );
+      ChBIncl->SetToolTip(crea::std2wx("When this box is checked the " + it->first + " library is included in the project configuration for this library."));
+      ChBIncl->SetName(crea::std2wx(it->first));
+      ChBIncl->SetValue(it->second);
+      includesGridSizer->Add(ChBIncl, 1, wxEXPAND);
+
+      wxStaticText* LNmIncl = new wxStaticText(this, wxID_ANY, crea::std2wx(it->first));
+      includesGridSizer->Add(LNmIncl, 1, wxEXPAND);
+    }
+
+    includesGridSizer->AddGrowableCol(1,1);
+
+    includesPanelSizer->Add(includesGridSizer, 1, wxEXPAND, 0);
+
+    //Custom Libraries
+    wxStaticText* Title2 = new wxStaticText(this, wxID_ANY, wxT("Custom Libraries:"));
+    font = Title2->GetFont();
+    font.SetWeight(wxFONTWEIGHT_BOLD);
+    Title2->SetFont(font);
+    includesPanelSizer->Add(Title2, 0, wxEXPAND | wxALL, 5);
+
+    //inclusion data
+    std::map<std::string, bool> inclusionsLibs = this->package->GetCustomLibraries();
+    //includesGrid Sizer
+    wxFlexGridSizer* includesLibGridSizer = new wxFlexGridSizer(inclusionsLibs.size()+1, 2, 0, 5);
+
+    wxStaticText* ChBTitle1 = new wxStaticText(
+        this,
+        wxID_ANY,
+        wxT("Included"),
+        wxDefaultPosition,
+        wxDefaultSize,
+        wxALIGN_CENTER
+      );
+    wxStaticText* LNmTitle1 = new wxStaticText(
+        this,
+        wxID_ANY,
+        wxT("Library Name"),
+        wxDefaultPosition,
+        wxDefaultSize,
+        wxALIGN_LEFT
+      );
+
+    includesLibGridSizer->Add(ChBTitle1, 1, wxEXPAND);
+    includesLibGridSizer->Add(LNmTitle1, 1, wxEXPAND);
+
+    for (std::map<std::string, bool>::iterator it = inclusionsLibs.begin(); it != inclusionsLibs.end(); ++it) {
+      wxCheckBox* ChBIncl = new wxCheckBox(
+          this, ID_CHECK_INCLUDE_LIBRARY, wxT(""), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT
+        );
+      ChBIncl->SetToolTip(crea::std2wx("When this box is checked the " + it->first + " custom library is included in the project configuration for this library."));
+      ChBIncl->SetName(crea::std2wx(it->first));
+      ChBIncl->SetValue(it->second);
+      includesLibGridSizer->Add(ChBIncl, 1, wxEXPAND);
+
+      wxStaticText* LNmIncl = new wxStaticText(this, wxID_ANY, crea::std2wx(it->first));
+      includesLibGridSizer->Add(LNmIncl, 1, wxEXPAND);
+    }
+
+    includesLibGridSizer->AddGrowableCol(1,1);
+
+    includesPanelSizer->Add(includesLibGridSizer, 1, wxEXPAND, 0);
+
+    v_sizer1->Add(includesPanelSizer, 1, wxEXPAND);
+
+  v_sizer1->Add(new wxButton(this, wxID_OK, wxT("Close")), 0, wxALIGN_CENTER | wxRIGHT | wxBOTTOM, 30);
+
+  SetSizer(v_sizer1);
+}
+
+void wxCDMPackageConfigurationDialog::OnFinish(wxCommandEvent& event)
+{
+  this->EndModal(wxID_OK);
+}
+
+void wxCDMPackageConfigurationDialog::On3rdLibraryIncludeChange(
+    wxCommandEvent& event)
+{
+  this->package->Set3rdPartyLibrary(
+    crea::wx2std(((wxCheckBox*)event.GetEventObject())->GetName()),
+    ((wxCheckBox*)event.GetEventObject())->GetValue()
+  );
+}
+
+void wxCDMPackageConfigurationDialog::OnCustomLibraryIncludeChange(
+    wxCommandEvent& event)
+{
+  this->package->SetCustomLibrary(
+    crea::wx2std(((wxCheckBox*)event.GetEventObject())->GetName()),
+    ((wxCheckBox*)event.GetEventObject())->GetValue()
+  );
+}