]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/wxCDMMainFrame.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMMainFrame.cpp
index 775cfc75938dad5e5ee90cd1a3b63eed99d0cac0..7c2bf5aab6e418596b447b2172133b183ecd6f44 100755 (executable)
 
 #include <creaWx.h>
 #include "wx/treectrl.h"
+#include "wx/treebase.h"
+#include "wx/tooltip.h"
 #include "CDMUtilities.h"
 
 #include "creaDevManagerIds.h"
 #include "wxCDMMainDescriptionPanel.h"
+#include "wxCDMProjectDescriptionPanel.h"
+#include "wxCDMAppliDescriptionPanel.h"
+#include "wxCDMApplicationDescriptionPanel.h"
+#include "wxCDMLibDescriptionPanel.h"
+#include "wxCDMLibraryDescriptionPanel.h"
+#include "wxCDMPackageDescriptionPanel.h"
+#include "wxCDMBlackBoxDescriptionPanel.h"
+#include "wxCDMCMakeListsDescriptionPanel.h"
+#include "wxCDMFolderDescriptionPanel.h"
+#include "wxCDMFileDescriptionPanel.h"
+#include "wxCDMPackageManagerPanel.h"
+
 #include "wxCDMProjectActionsPanel.h"
 #include "wxCDMNewProjectDialog.h"
 
@@ -66,7 +80,8 @@ EVT_MENU(ID_MENU_ABOUT_CREADEVMANAGER, wxCDMMainFrame::OnMenuAboutCreaDevManager
 EVT_MENU(ID_MENU_ABOUT_CREATIS, wxCDMMainFrame::OnMenuAboutCreatis)
 EVT_BUTTON(ID_BUTTON_NEWPROJECT, wxCDMMainFrame::OnMenuNewProject)
 EVT_BUTTON(ID_BUTTON_OPENPROJECT, wxCDMMainFrame::OnMenuOpenProject)
-EVT_TREE_SEL_CHANGED(ID_TREE_PROJECTS, wxCDMMainFrame::OnTreeSelectionChanged)
+EVT_TREE_SEL_CHANGING(ID_TREE_PROJECTS, wxCDMMainFrame::OnTreeSelectionChanged)
+EVT_COMMAND(wxID_ANY, wxEVT_DISPLAY_CHANGED, wxCDMMainFrame::OnCreationComplete)
 END_EVENT_TABLE()
 
 wxCDMMainFrame::wxCDMMainFrame(
@@ -102,6 +117,20 @@ bool wxCDMMainFrame::Create(
   return TRUE;
 }
 
+modelCDMMain* wxCDMMainFrame::GetModel() const
+{
+  return this->model;
+}
+
+void wxCDMMainFrame::RefreshProject()
+{
+  std::string* result;
+  std::cout << "refreshing project" << std::endl;
+  this->model->RefreshProject(result);
+  std::cout << "rebuilding project tree" << std::endl;
+  this->tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
+}
+
 void wxCDMMainFrame::CreateMenus()
 {
   wxMenuBar* menuBar = new wxMenuBar;
@@ -173,45 +202,42 @@ void wxCDMMainFrame::CreateControls()
       this,
       ID_TREE_PROJECTS,
       wxDefaultPosition,
-      wxSize(300,400),
+      wxSize(200,400),
       wxTR_HAS_BUTTONS | wxTR_AQUA_BUTTONS
   );
-  tree_Projects->SetMinSize(wxSize(200,200));
 
   panel_Properties = new wxCDMMainDescriptionPanel(
       this,
       ID_WINDOW_PROPERTIES,
       wxT("Description Panel"),
       wxDefaultPosition,
-      wxSize(300, 400),
+      wxSize(400, 600),
       0
   );
 
 
 
-  panel_ProjectActions = new wxCDMProjectActionsPanel(
-      this,
-      ID_WINDOW_PROJ_ACTIONS,
-      wxT("Project Actions Panel"),
-      wxDefaultPosition,
-      wxSize(600,200),
-      0
-  );
-  panel_ProjectActions->SetMinSize(wxSize(500, 100));
 
-  auiManager.AddPane(tree_Projects, wxLEFT, wxT("Projects Tree"));
-  auiManager.AddPane(panel_ProjectActions, wxBOTTOM, wxT("Project Actions"));
-  auiManager.AddPane(panel_Properties, wxCENTER, wxT("Properties"));
+
+
+
+  auiManager.AddPane(panel_Properties, wxAuiPaneInfo().BestSize(600,400).CenterPane().Name(wxT("panel_Properties")).Caption(wxT("")).CloseButton(false));
+  auiManager.AddPane(tree_Projects, wxAuiPaneInfo().Left().MinSize(300,300).BestSize(300,400).CloseButton(false).Name(wxT("tree_Projects")).Caption(wxT("Project Tree")).CloseButton(false));
+
+  wxString pers = auiManager.SavePerspective();
 
   auiManager.Update();
-  auiManager.GetPane(tree_Projects).CloseButton(false).MaximizeButton(true);
-  auiManager.GetPane(panel_Properties).CloseButton(false);
+  auiManager.LoadPerspective(pers,true);
+  wxToolTip::Enable(true);
+  wxToolTip::SetDelay(0);
 }
 
 //Event Handlers
 //File menu
 void wxCDMMainFrame::OnMenuNewProject(wxCommandEvent& event)
 {
+  std::string* result;
+
   wxCDMNewProjectDialog* dialog = new wxCDMNewProjectDialog(this);
   long userResponse;
   userResponse = dialog->ShowModal();
@@ -219,7 +245,17 @@ void wxCDMMainFrame::OnMenuNewProject(wxCommandEvent& event)
   if(userResponse == wxID_FORWARD)
     {
       //create project
-      std::string* result;
+      if(this->model->GetProject() != NULL)
+        {
+          if(!this->model->CloseProject(result))
+            {
+              std::cout << "error closing project: " << *result << std::endl;
+              wxMessageBox(crea::std2wx(*result),_T("New Project - Error!"),wxOK | wxICON_ERROR);
+              event.Skip();
+              return;
+            }
+        }
+
       if(!this->model->CreateProject(
           crea::wx2std(dialog->GetProjectName()),
           crea::wx2std(dialog->GetProjectLocation()),
@@ -228,16 +264,54 @@ void wxCDMMainFrame::OnMenuNewProject(wxCommandEvent& event)
           crea::wx2std(dialog->GetPackageDescription())
       ))
         {
+          std::cout << "error opening project: " << *result << std::endl;
           wxMessageBox(crea::std2wx(*result),_T("New Project - Error!"),wxOK | wxICON_ERROR);
           event.Skip();
           return;
         }
 
       //populate tree control
-      tree_Projects->BuildTree(this->model->GetProject());
+      tree_Projects->BuildTree(this->model->GetModelElements(),this->model->GetProject());
       tree_Projects->SelectItem(this->model->GetProject()->GetId());
-      //TODO: change description panel
-      //TODO: change project's actions panel
+
+      //change description panel
+      if(this->panel_Properties != NULL)
+        {
+          auiManager.DetachPane(this->panel_Properties);
+          this->panel_Properties->Destroy();
+          this->panel_Properties = NULL;
+        }
+
+      this->panel_Properties = new wxCDMProjectDescriptionPanel(
+          this,
+          this->model->GetProject(),
+          ID_WINDOW_PROPERTIES,
+          wxT("Description Panel"),
+          wxDefaultPosition,
+          wxSize(600, 400),
+          0);
+      //show projectactions panel
+      if(this->panel_ProjectActions != NULL)
+        {
+          auiManager.DetachPane(this->panel_Properties);
+          this->panel_ProjectActions->Destroy();
+          this->panel_ProjectActions = NULL;
+        }
+
+      panel_ProjectActions = new wxCDMProjectActionsPanel(
+          this,
+          ID_WINDOW_PROJ_ACTIONS,
+          wxT("Project Actions Panel"),
+          wxDefaultPosition,
+          wxSize(800,200),
+          0
+      );
+      panel_ProjectActions->SetMinSize(wxSize(500, 100));
+
+
+      auiManager.AddPane(panel_Properties, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("")).BestSize(600,400).CloseButton(false));
+      auiManager.AddPane(panel_ProjectActions, wxAuiPaneInfo().Bottom().MinSize(800,50).Name(wxT("panel_ProjectActions")).Caption(wxT("General Project Actions")).BestSize(800,70).CloseButton(false));
+
       auiManager.Update();
 
       wxMessageBox(_T("New Project created!"),_T("New Project - Success!"), wxOK | wxICON_INFORMATION);
@@ -247,6 +321,8 @@ void wxCDMMainFrame::OnMenuNewProject(wxCommandEvent& event)
 }
 void wxCDMMainFrame::OnMenuOpenProject(wxCommandEvent& event)
 {
+  std::string* result;
+
   long style = wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST;
   wxDirDialog* FD = new wxDirDialog(this, wxT("Select the project directory"), wxT(""), style);
   long userResponse = FD->ShowModal();
@@ -260,15 +336,72 @@ void wxCDMMainFrame::OnMenuOpenProject(wxCommandEvent& event)
 
 
       //populate model
-      std::string* result;
+      if(this->model->GetProject() != NULL)
+        {
+          std::cout << "Project not null, closing it" << std::endl;
+          if(!this->model->CloseProject(result))
+            {
+              std::cout << "error closing project: " << *result << std::endl;
+              wxMessageBox(crea::std2wx(result->c_str()),_T("New Project - Error!"),wxOK | wxICON_ERROR);
+              event.Skip();
+              return;
+            }
+        }
+
       if (!this->model->OpenProject(path, result))
         {
+          std::cout << "error opening project: " << *result << std::endl;
           wxMessageBox( crea::std2wx(result->c_str()), wxT("Open Project - Error"), wxICON_ERROR);
+          event.Skip();
+          return;
         };
 
+      std::cout << "building ui" << std::endl;
+
+
       //populate tree control
-      tree_Projects->BuildTree(this->model->GetProject());
+      tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
       tree_Projects->SelectItem(this->model->GetProject()->GetId());
+
+      //change description panel
+      if(this->panel_Properties != NULL)
+        {
+          auiManager.DetachPane(this->panel_Properties);
+          this->panel_Properties->Destroy();
+          this->panel_Properties = NULL;
+        }
+
+      this->panel_Properties = new wxCDMProjectDescriptionPanel(
+          this,
+          this->model->GetProject(),
+          ID_WINDOW_PROPERTIES,
+          wxT("Description Panel"),
+          wxDefaultPosition,
+          wxSize(600, 400),
+          0
+      );
+
+      //change project's actions panel
+      if(this->panel_ProjectActions!= NULL)
+        {
+          auiManager.DetachPane(this->panel_ProjectActions);
+          this->panel_ProjectActions->Destroy();
+          this->panel_ProjectActions = NULL;
+        }
+      panel_ProjectActions = new wxCDMProjectActionsPanel(
+          this,
+          ID_WINDOW_PROJ_ACTIONS,
+          wxT("Project Actions Panel"),
+          wxDefaultPosition,
+          wxSize(800,200),
+          0
+      );
+      panel_ProjectActions->SetMinSize(wxSize(500, 100));
+
+
+      auiManager.AddPane(panel_Properties, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("")).BestSize(600,400).CloseButton(false));
+      auiManager.AddPane(panel_ProjectActions, wxAuiPaneInfo().Bottom().MinSize(800,50).Name(wxT("panel_ProjectActions")).Caption(wxT("General Project Actions")).BestSize(800,70).CloseButton(false));
+
       auiManager.Update();
     }
 
@@ -281,16 +414,79 @@ void wxCDMMainFrame::OnMenuOpenRecent(wxCommandEvent& event)
 }
 void wxCDMMainFrame::OnMenuCloseProject(wxCommandEvent& event)
 {
+  std::cout << "closing project" << std::endl;
   std::string* result;
   if(!this->model->CloseProject(result))
     {
+      std::cout << "error closing project: " << *result << std::endl;
       wxMessageBox( crea::std2wx(result->c_str()), wxT("Close Project - Error"), wxICON_ERROR);
     }
+
+  tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
+
+  if(this->panel_Properties != NULL)
+    {
+      auiManager.DetachPane(this->panel_Properties);
+      this->panel_Properties->Destroy();
+      this->panel_Properties = NULL;
+    }
+  if(this->panel_ProjectActions != NULL)
+    {
+      auiManager.DetachPane(this->panel_ProjectActions);
+      this->panel_ProjectActions->Destroy();
+      this->panel_ProjectActions = NULL;
+    }
+
+  this->panel_Properties = new wxCDMMainDescriptionPanel(
+      this,
+      ID_WINDOW_PROPERTIES,
+      wxT("Description Panel"),
+      wxDefaultPosition,
+      wxSize(600, 400),
+      0
+  );
+
+  auiManager.AddPane(panel_Properties, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("")).BestSize(600,400).CloseButton(false));
+
+  auiManager.Update();
   event.Skip();
 }
 void wxCDMMainFrame::OnMenuCloseAllProjects(wxCommandEvent& event)
 {
-  std::cerr << "Event OnMenuCloseAllProjects not implemented" << std::endl;
+  std::cerr << "Event OnMenuCloseAllProjects closing only one project" << std::endl;
+  std::string* result;
+  if(!this->model->CloseProject(result))
+    {
+      std::cout << "error closing project: " << *result << std::endl;
+      wxMessageBox( crea::std2wx(result->c_str()), wxT("Close Project - Error"), wxICON_ERROR);
+    }
+  tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
+
+  if(this->panel_Properties != NULL)
+    {
+      auiManager.DetachPane(this->panel_Properties);
+      this->panel_Properties->Destroy();
+      this->panel_Properties = NULL;
+    }
+  if(this->panel_ProjectActions != NULL)
+    {
+      auiManager.DetachPane(this->panel_ProjectActions);
+      this->panel_ProjectActions->Destroy();
+      this->panel_ProjectActions = NULL;
+    }
+
+  this->panel_Properties = new wxCDMMainDescriptionPanel(
+      this,
+      ID_WINDOW_PROPERTIES,
+      wxT("Description Panel"),
+      wxDefaultPosition,
+      wxSize(600, 400),
+      0
+  );
+
+  auiManager.AddPane(panel_Properties, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("")).BestSize(600,400));
+
+  auiManager.Update();
   event.Skip();
 }
 void wxCDMMainFrame::OnMenuExportHierarchy(wxCommandEvent& event)
@@ -301,6 +497,28 @@ void wxCDMMainFrame::OnMenuExportHierarchy(wxCommandEvent& event)
 void wxCDMMainFrame::OnMenuExit(wxCommandEvent& event)
 {
   std::cout << "Closing CreaDevManager..." << std::endl;
+  std::string* result;
+  if(this->model->GetProject() != NULL && !this->model->CloseProject(result))
+    {
+      std::cout << "error closing project: " << *result << std::endl;
+      wxMessageBox( crea::std2wx(result->c_str()), wxT("Close Project - Error"), wxICON_ERROR);
+    }
+  tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
+
+  if(this->panel_Properties != NULL)
+    {
+      auiManager.DetachPane(this->panel_Properties);
+      this->panel_Properties->Destroy();
+      this->panel_Properties = NULL;
+    }
+
+  if(this->panel_ProjectActions != NULL)
+    {
+      auiManager.DetachPane(this->panel_ProjectActions);
+      this->panel_ProjectActions->Destroy();
+      this->panel_ProjectActions = NULL;
+    }
+
   Close();
   event.Skip();
 }
@@ -313,6 +531,8 @@ void wxCDMMainFrame::OnMenuRefreshProject(wxCommandEvent& event)
     {
       wxMessageBox( crea::std2wx(result->c_str()), wxT("Refresh Project - Error"), wxICON_ERROR);
     }
+  this->tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
+  this->auiManager.Update();
   //TODO: Show possible problems in CMakeLists files
   event.Skip();
 }
@@ -398,6 +618,283 @@ void wxCDMMainFrame::OnMenuAboutCreatis(wxCommandEvent& event)
 
 void wxCDMMainFrame::OnTreeSelectionChanged(wxTreeEvent& event)
 {
-  std::cerr << "Event OnTreeSelectionChange not implemented" << std::endl;
+  //get selected element
+  wxTreeItemId elementId = event.GetItem();
+
+  //get element from model
+  modelCDMIProjectTreeNode* element = this->model->GetModelElements()[elementId];
+  std::cout << "Tree Selection: " << element->GetName() << std::endl;
+
+  //TODO get element type
+  //project
+  modelCDMProject* elementProject = dynamic_cast<modelCDMProject*>(element);
+  wxPanel* description;
+  if(elementProject != NULL)
+    {
+      //create element description
+      description = new wxCDMProjectDescriptionPanel(
+          this,
+          elementProject,
+          ID_WINDOW_PROPERTIES,
+          wxT("Description Panel"),
+          wxDefaultPosition,
+          wxSize(600, 400),
+          0
+      );
+
+    }
+  else
+    {
+      //appli
+      modelCDMAppli* elementAppli = dynamic_cast<modelCDMAppli*>(element);
+      if(elementAppli != NULL)
+        {
+          //create element description
+          description = new wxCDMAppliDescriptionPanel(
+              this,
+              elementAppli,
+              ID_WINDOW_PROPERTIES,
+              wxT("Description Panel"),
+              wxDefaultPosition,
+              wxSize(600, 400),
+              0
+          );
+        }
+      else
+        {
+          //application
+          modelCDMApplication* elementApplication = dynamic_cast<modelCDMApplication*>(element);
+          if(elementApplication != NULL)
+            {
+              //create element description
+              description = new wxCDMApplicationDescriptionPanel(
+                  this,
+                  elementApplication,
+                  ID_WINDOW_PROPERTIES,
+                  wxT("Description Panel"),
+                  wxDefaultPosition,
+                  wxSize(600, 400),
+                  0
+              );
+            }
+          else
+            {
+              //lib
+              modelCDMLib* elementLib = dynamic_cast<modelCDMLib*>(element);
+              if(elementLib != NULL)
+                {
+                  //create element description
+                  description = new wxCDMLibDescriptionPanel(
+                      this,
+                      elementLib,
+                      ID_WINDOW_PROPERTIES,
+                      wxT("Description Panel"),
+                      wxDefaultPosition,
+                      wxSize(600, 400),
+                      0
+                  );
+                }
+              else
+                {
+                  //library
+                  modelCDMLibrary* elementLibrary = dynamic_cast<modelCDMLibrary*>(element);
+                  if(elementLibrary != NULL)
+                    {
+                      //create element description
+                      description = new wxCDMLibraryDescriptionPanel(
+                          this,
+                          elementLibrary,
+                          ID_WINDOW_PROPERTIES,
+                          wxT("Description Panel"),
+                          wxDefaultPosition,
+                          wxSize(600, 400),
+                          0
+                      );
+                    }
+                  else
+                    {
+                      //package
+                      modelCDMPackage* elementPackage = dynamic_cast<modelCDMPackage*>(element);
+                      if(elementPackage != NULL)
+                        {
+                          //create element description
+                          description = new wxCDMPackageDescriptionPanel(
+                              this,
+                              elementPackage,
+                              ID_WINDOW_PROPERTIES,
+                              wxT("Description Panel"),
+                              wxDefaultPosition,
+                              wxSize(600, 400),
+                              0
+                          );
+                        }
+                      else
+                        {
+                          //black box
+                          modelCDMBlackBox* elementBlackBox = dynamic_cast<modelCDMBlackBox*>(element);
+                          if(elementBlackBox != NULL)
+                            {
+                              //create element description
+                              description = new wxCDMBlackBoxDescriptionPanel(
+                                  this,
+                                  elementBlackBox,
+                                  ID_WINDOW_PROPERTIES,
+                                  wxT("Description Panel"),
+                                  wxDefaultPosition,
+                                  wxSize(600, 400),
+                                  0
+                              );
+                            }
+                          else
+                            {
+                              //CMakeLists
+                              modelCDMCMakeListsFile* elementCMakeLists = dynamic_cast<modelCDMCMakeListsFile*>(element);
+                              if(elementCMakeLists != NULL)
+                                {
+                                  //create element description
+                                  description = new wxCDMCMakeListsDescriptionPanel(
+                                      this,
+                                      elementCMakeLists,
+                                      ID_WINDOW_PROPERTIES,
+                                      wxT("Description Panel"),
+                                      wxDefaultPosition,
+                                      wxSize(600, 400),
+                                      0
+                                  );
+                                }
+                              else
+                                {
+                                  //folder
+                                  modelCDMFolder* elementFolder = dynamic_cast<modelCDMFolder*>(element);
+                                  if(elementFolder != NULL)
+                                    {
+                                      //create element description
+                                      description = new wxCDMFolderDescriptionPanel(
+                                          this,
+                                          elementFolder,
+                                          ID_WINDOW_PROPERTIES,
+                                          wxT("Description Panel"),
+                                          wxDefaultPosition,
+                                          wxSize(600, 400),
+                                          0
+                                      );
+                                    }
+                                  else
+                                    {
+                                      //file
+                                      modelCDMFile* elementFile = dynamic_cast<modelCDMFile*>(element);
+                                      if(elementFile != NULL)
+                                        {
+                                          //create element description
+                                          description = new wxCDMFileDescriptionPanel(
+                                              this,
+                                              elementFile,
+                                              ID_WINDOW_PROPERTIES,
+                                              wxT("Description Panel"),
+                                              wxDefaultPosition,
+                                              wxSize(600, 400),
+                                              0
+                                          );
+                                        }
+                                      else
+                                        {
+
+                                          //main if not any
+                                          //create element description
+                                          description = new wxCDMMainDescriptionPanel(
+                                              this,
+                                              ID_WINDOW_PROPERTIES,
+                                              wxT("Description Panel"),
+                                              wxDefaultPosition,
+                                              wxSize(600, 400),
+                                              0
+                                          );
+                                        }
+                                    }
+                                }
+                            }
+                        }
+                    }
+                }
+            }
+        }
+    }
+
+  if(this->panel_Properties!= NULL)
+    this->panel_Properties->Hide();
+
+  auiManager.AddPane(description, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("")).BestSize(600,400).CloseButton(false));
+  auiManager.Update();
+
+  //delete old view
+  if(this->panel_Properties!= NULL)
+    {
+      auiManager.DetachPane(this->panel_Properties);
+      this->panel_Properties->Destroy();
+      this->panel_Properties = NULL;
+    }
+  //set new view
+
+  this->panel_Properties = description;
+  //auiManager.AddPane(panel_Properties, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("Properties")).BestSize(600,400).CloseButton(false));
+  auiManager.Update();
+  event.Skip();
+  return;
+
+}
+
+void wxCDMMainFrame::OnCreationComplete(wxCommandEvent& event)
+{
+  switch(event.GetId() != 0)
+  {
+  case 0:
+    //select out old one to generate selection event
+    this->tree_Projects->SelectItem(event.GetInt(), true);
+    break;
+  case 1:
+    wxPanel* description = NULL;
+    if(event.GetString() == wxT("manage_packages"))
+      {
+        this->tree_Projects->SelectItem(this->model->GetProject()->GetId(), false);
+        description = new wxCDMPackageManagerPanel(
+            this,
+            this->model->GetProject(),
+            ID_WINDOW_PROPERTIES,
+            wxT("Description Panel"),
+            wxDefaultPosition,
+            wxSize(600, 400),
+            0
+        );
+      }
+    else if(event.GetString() == wxT("manage_libraries"))
+      {
+        this->tree_Projects->SelectItem(this->model->GetProject()->GetLib()->GetId(), true);
+        break;
+      }
+    else if(event.GetString() == wxT("manage_applications"))
+      {
+        this->tree_Projects->SelectItem(this->model->GetProject()->GetAppli()->GetId(), true);
+        break;
+      }
+
+    if(this->panel_Properties!= NULL)
+      this->panel_Properties->Hide();
+
+    auiManager.AddPane(description, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("")).BestSize(600,400).CloseButton(false));
+    auiManager.Update();
+
+    //delete old view
+    if(this->panel_Properties!= NULL)
+      {
+        auiManager.DetachPane(this->panel_Properties);
+        this->panel_Properties->Destroy();
+        this->panel_Properties = NULL;
+      }
+    //set new view
+
+    this->panel_Properties = description;
+    auiManager.Update();
+    break;
+  }
   event.Skip();
 }