]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMMainFrame.cpp
a5b1315fd05814df8c2c0494190141a88e33cedb
[crea.git] / lib / creaDevManagerLib / wxCDMMainFrame.cpp
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Sant�)
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
9 #
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.
16 #
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
21 #  liability. 
22 #
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 # ------------------------------------------------------------------------ 
26  */
27
28
29 #include "wxCDMMainFrame.h"
30
31 #include <iostream>
32
33 #include <creaWx.h>
34 #include "creaSystem.h"
35 #include "wx/treectrl.h"
36 #include "wx/treebase.h"
37 #include "wx/tooltip.h"
38 #include "wx/wxhtml.h"
39 #include "wx/statline.h"
40 #include "CDMUtilities.h"
41
42 #include "creaDevManagerIds.h"
43 #include "wxCDMMainDescriptionPanel.h"
44 #include "wxCDMProjectDescriptionPanel.h"
45 #include "wxCDMAppliDescriptionPanel.h"
46 #include "wxCDMApplicationDescriptionPanel.h"
47 #include "wxCDMLibDescriptionPanel.h"
48 #include "wxCDMLibraryDescriptionPanel.h"
49 #include "wxCDMPackageDescriptionPanel.h"
50 #include "wxCDMBlackBoxDescriptionPanel.h"
51 #include "wxCDMCMakeListsDescriptionPanel.h"
52 #include "wxCDMFolderDescriptionPanel.h"
53 #include "wxCDMFileDescriptionPanel.h"
54 #include "wxCDMPackageManagerPanel.h"
55
56 #include "wxCDMProjectActionsPanel.h"
57 #include "wxCDMNewProjectDialog.h"
58
59
60
61 BEGIN_EVENT_TABLE(wxCDMMainFrame, wxFrame)
62 EVT_MENU(ID_MENU_NEW_PROJECT, wxCDMMainFrame::OnMenuNewProject)
63 EVT_MENU(ID_MENU_OPEN_PROJECT, wxCDMMainFrame::OnMenuOpenProject)
64 EVT_MENU(ID_MENU_CLOSE_PROJECT, wxCDMMainFrame::OnMenuCloseProject)
65 EVT_MENU(ID_MENU_EXPORT_HIERARCHY, wxCDMMainFrame::OnMenuExportHierarchy)
66 EVT_MENU(ID_MENU_EXIT, wxCDMMainFrame::OnMenuExit)
67 EVT_MENU(ID_MENU_REFRESH_PROJECT, wxCDMMainFrame::OnMenuRefreshProject)
68 EVT_MENU(ID_MENU_BBTK_GRAPHICAL_EDITOR, wxCDMMainFrame::OnMenuBBTKGraphicalEditor)
69 EVT_MENU(ID_MENU_MINITOOLS, wxCDMMainFrame::OnMenuMiniTools)
70 EVT_MENU(ID_MENU_CODE_EDITOR, wxCDMMainFrame::OnMenuCodeEditor)
71 EVT_MENU(ID_MENU_COMMAND_LINE, wxCDMMainFrame::OnMenuCommandLine)
72 EVT_MENU(ID_MENU_TOGGLE_HELP, wxCDMMainFrame::OnMenuToggleHelp)
73 EVT_MENU(ID_MENU_HELP, wxCDMMainFrame::OnMenuHelp)
74 EVT_MENU(ID_MENU_REPORT_BUG, wxCDMMainFrame::OnMenuReportBug)
75 EVT_MENU(ID_MENU_ABOUT_CREADEVMANAGER, wxCDMMainFrame::OnMenuAboutCreaDevManager)
76 EVT_MENU(ID_MENU_ABOUT_CREATIS, wxCDMMainFrame::OnMenuAboutCreatis)
77
78 EVT_BUTTON(ID_BUTTON_NEWPROJECT, wxCDMMainFrame::OnMenuNewProject)
79 EVT_BUTTON(ID_BUTTON_OPENPROJECT, wxCDMMainFrame::OnMenuOpenProject)
80
81 EVT_TREE_SEL_CHANGED(ID_TREE_PROJECTS, wxCDMMainFrame::OnTreeSelectionChanged)
82
83 EVT_COMMAND(wxID_ANY, wxEVT_DISPLAY_CHANGED, wxCDMMainFrame::OnChangeView)
84 EVT_COMMAND(wxID_ANY, wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, wxCDMMainFrame::OnElementSelected)
85 EVT_COMMAND(wxID_ANY, wxEVT_COMMAND_LISTBOX_SELECTED, wxCDMMainFrame::OnElementDeselected)
86
87
88 EVT_CHECKBOX(ID_CHECKBOX_DISABLE_HELP, wxCDMMainFrame::OnDisableHelp)
89 END_EVENT_TABLE()
90
91 wxCDMMainFrame::wxCDMMainFrame(
92     wxWindow* parent,
93     wxWindowID id,
94     const wxString& caption,
95     const wxPoint& pos,
96     const wxSize& size,
97     long style
98 )
99 {
100   this->menu_File = NULL;
101   this->menu_Edit = NULL;
102   this->menu_Tools = NULL;
103   this->menu_Help = NULL;
104   this->panel_Properties = NULL;
105   this->panel_ProjectActions = NULL;
106   this->tree_Projects = NULL;
107   Create(parent, id, caption, pos, size, style);
108 }
109
110 wxCDMMainFrame::~wxCDMMainFrame()
111 {
112   auiManager.UnInit();
113 }
114
115 bool wxCDMMainFrame::Create(
116     wxWindow* parent,
117     wxWindowID id,
118     const wxString& caption,
119     const wxPoint& pos,
120     const wxSize& size,
121     long style
122 )
123 {
124   wxFrame::Create(parent, id, caption, pos, size, style);
125   this->model = new modelCDMMain();
126   this->help = true;
127   CreateMenus();
128   CreateControls();
129   return TRUE;
130 }
131
132 modelCDMMain* wxCDMMainFrame::GetModel() const
133 {
134   return this->model;
135 }
136
137 wxPanel* wxCDMMainFrame::GetPropertiesPanel() const
138 {
139   return this->panel_Properties;
140 }
141
142 bool wxCDMMainFrame::isHelp() const
143 {
144   return this->help;
145 }
146
147 void wxCDMMainFrame::RefreshProject()
148 {
149   std::string* result;
150   std::cout << "refreshing project" << std::endl;
151   this->model->RefreshProject(result);
152   std::cout << "rebuilding project tree" << std::endl;
153   this->tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
154 }
155
156 void wxCDMMainFrame::CreateMenus()
157 {
158   wxMenuBar* menuBar = new wxMenuBar;
159
160   //FileMenu
161   menu_File = new wxMenu();
162   menu_File->Append(ID_MENU_NEW_PROJECT, wxT("&New Project..."));
163   menu_File->Append(ID_MENU_OPEN_PROJECT, wxT("&Open Project..."));
164   menu_File->AppendSeparator();
165   menu_File->Append(ID_MENU_CLOSE_PROJECT, wxT("&Close Project"));
166   menu_File->AppendSeparator();
167   menu_File->Append(ID_MENU_EXPORT_HIERARCHY, wxT("&Export Project Hierarchy..."));
168   menu_File->AppendSeparator();
169   menu_File->Append(ID_MENU_EXIT, wxT("E&xit"));
170
171   menuBar->Append(menu_File, wxT("&File"));
172
173   //EditMenu
174   menu_Edit = new wxMenu();
175   menu_Edit->Append(ID_MENU_REFRESH_PROJECT, wxT("&Refresh Project"));
176
177   menuBar->Append(menu_Edit, wxT("&Edit"));
178
179   //ToolsMenu
180   menu_Tools = new wxMenu();
181   menu_Tools->Append(ID_MENU_BBTK_GRAPHICAL_EDITOR, wxT("BBTK &Graphical Editor"));
182   menu_Tools->Append(ID_MENU_MINITOOLS, wxT("&MiniTools"));
183   menu_Tools->Append(ID_MENU_CODE_EDITOR, wxT("&Code Editor"));
184   menu_Tools->Append(ID_MENU_COMMAND_LINE, wxT("&Command Line"));
185
186   menuBar->Append(menu_Tools, wxT("&Tools"));
187
188   //HelpMenu
189   menu_Help = new wxMenu();
190   menu_Help->AppendCheckItem(ID_MENU_TOGGLE_HELP, wxT("He&lp Dialogs"));
191   menu_Help->Check(ID_MENU_TOGGLE_HELP, this->help);
192   menu_Help->Append(ID_MENU_HELP, wxT("&Help"));
193   menu_Help->Append(ID_MENU_REPORT_BUG, wxT("Report &Bug"));
194   menu_Help->Append(ID_MENU_ABOUT_CREADEVMANAGER, wxT("&About CreaDevManager"));
195   menu_Help->Append(ID_MENU_ABOUT_CREATIS, wxT("A&bout CREATIS"));
196
197   menuBar->Append(menu_Help, wxT("&Help"));
198
199   //Set Bar
200   SetMenuBar(menuBar);
201
202   wxStatusBar* statusBar = new wxStatusBar(this, ID_STATUS_BAR, wxST_SIZEGRIP);
203   statusBar->SetFieldsCount(1);
204   SetStatusBar(statusBar);
205
206 }
207
208 void wxCDMMainFrame::CreateControls()
209 {
210
211   auiManager.SetManagedWindow(this);
212
213
214   tree_Projects = new wxCDMProjectsTreeCtrl(
215       this,
216       ID_TREE_PROJECTS,
217       wxDefaultPosition,
218       wxSize(200,400),
219           wxTR_HAS_BUTTONS | wxTR_AQUA_BUTTONS
220   );
221
222   panel_Properties = new wxCDMMainDescriptionPanel(
223       this,
224       ID_WINDOW_PROPERTIES,
225       wxT("Description Panel"),
226       wxDefaultPosition,
227       wxSize(400, 600),
228       0
229   );
230
231   auiManager.AddPane(panel_Properties, wxAuiPaneInfo().BestSize(600,400).CenterPane().Name(wxT("panel_Properties")).Caption(wxT("")).CloseButton(false));
232   auiManager.AddPane(tree_Projects, wxAuiPaneInfo().Right().MinSize(300,300).BestSize(300,400).CloseButton(false).Name(wxT("tree_Projects")).Caption(wxT("Project Tree")).CloseButton(false));
233   auiManager.Update();
234   //auiManager.LoadPerspective(pers,true);
235   wxToolTip::Enable(true);
236   wxToolTip::SetDelay(0);
237 }
238
239 //Event Handlers
240 //File menu
241 void wxCDMMainFrame::OnMenuNewProject(wxCommandEvent& event)
242 {
243   std::string* result;
244
245   wxCDMNewProjectDialog* dialog = new wxCDMNewProjectDialog(this);
246   long userResponse;
247   userResponse = dialog->ShowModal();
248
249   if(userResponse == wxID_FORWARD)
250     {
251       //create project
252       if(this->model->GetProject() != NULL)
253         {
254           if(!this->model->CloseProject(result))
255             {
256               std::cout << "error closing project: " << *result << std::endl;
257               wxMessageBox(crea::std2wx(*result),_T("New Project - Error!"),wxOK | wxICON_ERROR);
258               event.Skip();
259               return;
260             }
261         }
262
263
264       if(!this->model->CreateProject(
265           crea::wx2std(dialog->GetProjectName()),
266           crea::wx2std(dialog->GetProjectLocation()),
267           result,
268           crea::wx2std(dialog->GetPackageAuthor()),
269           crea::wx2std(dialog->GetPackageDescription())
270       ))
271         {
272           std::cout << "error opening project: " << *result << std::endl;
273           wxMessageBox(crea::std2wx(*result),_T("New Project - Error!"),wxOK | wxICON_ERROR);
274           event.Skip();
275           return;
276         }
277
278       //populate tree control
279       tree_Projects->BuildTree(this->model->GetModelElements(),this->model->GetProject());
280       tree_Projects->SelectItem(this->model->GetProject()->GetId(), false);
281       tree_Projects->SelectItem(this->model->GetProject()->GetId(), true);
282
283
284       //show project actions panel
285       if(this->panel_ProjectActions != NULL)
286         {
287           auiManager.DetachPane(this->panel_Properties);
288           this->panel_ProjectActions->Destroy();
289           this->panel_ProjectActions = NULL;
290         }
291
292       panel_ProjectActions = new wxCDMProjectActionsPanel(
293           this,
294           this->model->GetProject(),
295           ID_WINDOW_PROJ_ACTIONS,
296           wxT("Project Actions Panel"),
297           wxDefaultPosition,
298           wxSize(800,200),
299           0
300       );
301       panel_ProjectActions->SetMinSize(wxSize(500, 100));
302
303
304       auiManager.AddPane(panel_ProjectActions, wxAuiPaneInfo().Bottom().MinSize(800,50).Name(wxT("panel_ProjectActions")).Caption(wxT("General Project Actions")).BestSize(800,70).CloseButton(false));
305
306       auiManager.Update();
307
308       //wxMessageBox(_T("New Project created!"),_T("New Project - Success!"), wxOK | wxICON_INFORMATION);
309
310     }
311
312   event.Skip();
313 }
314 void wxCDMMainFrame::OnMenuOpenProject(wxCommandEvent& event)
315 {
316   std::string* result;
317
318   long style = wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST;
319   wxDirDialog* FD = new wxDirDialog(this, wxT("Select the project directory"), wxT(""), style);
320   long userResponse = FD->ShowModal();
321   if(userResponse == wxID_OK)
322     {
323       std::string path = crea::wx2std (FD->GetPath());
324       FD -> Destroy();
325       FD = NULL;
326
327       std::cout << "Selection to open: " << path << std::endl;
328
329
330       //populate model
331       if(this->model->GetProject() != NULL)
332         {
333           std::cout << "Project not null, closing it" << std::endl;
334           if(!this->model->CloseProject(result))
335             {
336               std::cout << "error closing project: " << *result << std::endl;
337               wxMessageBox(crea::std2wx(result->c_str()),_T("New Project - Error!"),wxOK | wxICON_ERROR);
338               event.Skip();
339               return;
340             }
341         }
342
343       if (!this->model->OpenProject(path, result))
344         {
345           std::cout << "error opening project: " << *result << std::endl;
346           wxMessageBox( crea::std2wx(result->c_str()), wxT("Open Project - Error"), wxICON_ERROR);
347           event.Skip();
348           return;
349         };
350
351       std::cout << "building ui" << std::endl;
352
353       //populate tree control
354       tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
355       tree_Projects->SelectItem(this->model->GetProject()->GetId(), false);
356       tree_Projects->SelectItem(this->model->GetProject()->GetId(), true);
357
358
359
360       //change project's actions panel
361       if(this->panel_ProjectActions!= NULL)
362         {
363           auiManager.DetachPane(this->panel_ProjectActions);
364           this->panel_ProjectActions->Destroy();
365           this->panel_ProjectActions = NULL;
366         }
367       panel_ProjectActions = new wxCDMProjectActionsPanel(
368           this,
369           this->model->GetProject(),
370           ID_WINDOW_PROJ_ACTIONS,
371           wxT("Project Actions Panel"),
372           wxDefaultPosition,
373           wxSize(800,200),
374           0
375       );
376       panel_ProjectActions->SetMinSize(wxSize(500, 100));
377
378
379       auiManager.AddPane(panel_ProjectActions, wxAuiPaneInfo().Bottom().MinSize(800,50).Name(wxT("panel_ProjectActions")).Caption(wxT("General Project Actions")).BestSize(800,70).CloseButton(false));
380
381       auiManager.Update();
382
383     }
384
385   event.Skip();
386 }
387
388 void wxCDMMainFrame::OnMenuCloseProject(wxCommandEvent& event)
389 {
390   std::cout << "closing project" << std::endl;
391   std::string* result;
392   if(!this->model->CloseProject(result))
393     {
394       std::cout << "error closing project: " << *result << std::endl;
395       wxMessageBox( crea::std2wx(result->c_str()), wxT("Close Project - Error"), wxICON_ERROR);
396     }
397
398   tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
399
400   if(this->panel_Properties != NULL)
401     {
402       auiManager.DetachPane(this->panel_Properties);
403       this->panel_Properties->Destroy();
404       this->panel_Properties = NULL;
405     }
406   if(this->panel_ProjectActions != NULL)
407     {
408       auiManager.DetachPane(this->panel_ProjectActions);
409       this->panel_ProjectActions->Destroy();
410       this->panel_ProjectActions = NULL;
411     }
412
413   this->panel_Properties = new wxCDMMainDescriptionPanel(
414       this,
415       ID_WINDOW_PROPERTIES,
416       wxT("Description Panel"),
417       wxDefaultPosition,
418       wxSize(600, 400),
419       0
420   );
421
422   auiManager.AddPane(panel_Properties, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("")).BestSize(600,400).CloseButton(false));
423
424   auiManager.Update();
425   event.Skip();
426 }
427
428 void wxCDMMainFrame::OnMenuExportHierarchy(wxCommandEvent& event)
429 {
430   std::cerr << "Event OnMenuExportHierarchy not implemented" << std::endl;
431   event.Skip();
432 }
433 void wxCDMMainFrame::OnMenuExit(wxCommandEvent& event)
434 {
435   std::cout << "Closing CreaDevManager..." << std::endl;
436   std::string* result;
437   if(this->model->GetProject() != NULL && !this->model->CloseProject(result))
438     {
439       std::cout << "error closing project: " << *result << std::endl;
440     }
441   tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
442   if(this->panel_Properties != NULL)
443     {
444       auiManager.DetachPane(this->panel_Properties);
445       this->panel_Properties->Destroy();
446       this->panel_Properties = NULL;
447     }
448   
449   if(this->panel_ProjectActions != NULL)
450     {
451       auiManager.DetachPane(this->panel_ProjectActions);
452       this->panel_ProjectActions->Destroy();
453       this->panel_ProjectActions = NULL;
454     }
455   
456   Close();
457 }
458
459 //Edit Menu
460 void wxCDMMainFrame::OnMenuRefreshProject(wxCommandEvent& event)
461 {
462   std::string* result;
463   if(!model->RefreshProject(result))
464     {
465       wxMessageBox( crea::std2wx(result->c_str()), wxT("Refresh Project - Error"), wxICON_ERROR);
466     }
467   if(this->model->GetProject() != NULL)
468     {
469       this->tree_Projects->BuildTree(this->model->GetModelElements(), this->model->GetProject());
470       this->auiManager.Update();
471
472       this->tree_Projects->SelectItem(this->model->GetProject()->GetId(), false);
473       this->tree_Projects->SelectItem(this->model->GetProject()->GetId(), true);
474     }
475   event.Skip();
476 }
477
478 void wxCDMMainFrame::OnMenuBBTKGraphicalEditor(wxCommandEvent& event)
479 {
480   std::cerr << "Event OnMenuBBTKGraphicalEditor not implemented" << std::endl;
481   event.Skip();
482   if(CDMUtilities::openBBEditor())
483     {
484       wxMessageBox( wxT("Can't open the BB Graphical Editor. Please check your Crea Tools installation."), wxT("Refresh Project - Error"), wxICON_ERROR);
485     }
486 }
487 void wxCDMMainFrame::OnMenuMiniTools(wxCommandEvent& event)
488 {
489   if(CDMUtilities::openCreaToolsTools())
490     {
491       wxMessageBox( wxT("Can't open the Minitools. Please check your Crea Tools installation."), wxT("Refresh Project - Error"), wxICON_ERROR);
492     }
493 }
494 void wxCDMMainFrame::OnMenuCodeEditor(wxCommandEvent& event)
495 {
496   if(CDMUtilities::openTextEditor())
497     {
498       wxMessageBox( wxT("Can't open the Text Editor. Please check the default text editor command in the Crea Development Manager settings (Edit -> Settings)."), wxT("Refresh Project - Error"), wxICON_ERROR);
499     }
500 }
501 void wxCDMMainFrame::OnMenuCommandLine(wxCommandEvent& event)
502 {
503   if(CDMUtilities::openTerminal())
504     {
505       wxMessageBox( wxT("Can't open Terminal. Please check the default terminal command in the Crea Development Manager settings (Edit -> Settings)."), wxT("Refresh Project - Error"), wxICON_ERROR);
506     }
507 }
508
509 //Help Menu
510 void wxCDMMainFrame::OnMenuHelp(wxCommandEvent& event)
511 {
512   wxLaunchDefaultBrowser(_T("http://www.creatis.insa-lyon.fr/site/en/CreatoolsDocumentation"), 0);
513 }
514 void wxCDMMainFrame::OnMenuReportBug(wxCommandEvent& event)
515 {
516   wxLaunchDefaultBrowser(_T("http://vip.creatis.insa-lyon.fr:9002/projects/crea"), 0);
517 }
518 void wxCDMMainFrame::OnMenuAboutCreaDevManager(wxCommandEvent& event)
519 {
520   wxBoxSizer *topsizer;
521   wxHtmlWindow *html;
522   wxDialog dlg(this, wxID_ANY, wxString(_("About")));
523
524   topsizer = new wxBoxSizer(wxVERTICAL);
525
526   html = new wxHtmlWindow(&dlg, wxID_ANY, wxDefaultPosition, wxSize(380, 160), wxHW_SCROLLBAR_NEVER);
527   html -> SetBorders(0);
528   html -> LoadPage(wxT("about.html"));
529   html -> SetSize(html -> GetInternalRepresentation() -> GetWidth(),
530       html -> GetInternalRepresentation() -> GetHeight());
531
532   topsizer -> Add(html, 1, wxALL, 10);
533
534 #if wxUSE_STATLINE
535   topsizer -> Add(new wxStaticLine(&dlg, wxID_ANY), 0, wxEXPAND | wxLEFT | wxRIGHT, 10);
536 #endif // wxUSE_STATLINE
537
538   wxButton *bu1 = new wxButton(&dlg, wxID_OK, _("OK"));
539   bu1 -> SetDefault();
540
541   topsizer -> Add(bu1, 0, wxALL | wxALIGN_RIGHT, 15);
542
543   dlg.SetSizer(topsizer);
544   topsizer -> Fit(&dlg);
545
546   dlg.ShowModal();
547 }
548 void wxCDMMainFrame::OnMenuAboutCreatis(wxCommandEvent& event)
549 {
550   wxLaunchDefaultBrowser(_T("http://www.creatis.insa-lyon.fr/site/en"), 0);
551 }
552
553 void wxCDMMainFrame::OnTreeSelectionChanged(wxTreeEvent& event)
554 {
555
556   //get selected element
557   wxTreeItemId elementId = event.GetItem();
558   if(this->tree_Projects->IsSelected(elementId))
559     {
560       std::cout << "Tree Selection id: " << elementId << std::endl;
561       //get element from model
562       modelCDMIProjectTreeNode* element = this->model->GetModelElements()[elementId];
563           if (element == NULL)
564                   return;
565       std::cout << "Tree Selection: " << element->GetName() << std::endl;
566                 
567       //TODO get element type
568       //project
569       modelCDMProject* elementProject = dynamic_cast<modelCDMProject*>(element);
570       wxPanel* description;
571       if(elementProject != NULL)
572         {
573           //create element description
574           description = new wxCDMProjectDescriptionPanel(
575               this,
576               elementProject,
577               ID_WINDOW_PROPERTIES,
578               wxT("Description Panel"),
579               wxDefaultPosition,
580               wxSize(600, 400),
581               0
582           );
583
584         }
585       else
586         {
587           //appli
588           modelCDMAppli* elementAppli = dynamic_cast<modelCDMAppli*>(element);
589           if(elementAppli != NULL)
590             {
591               //create element description
592               description = new wxCDMAppliDescriptionPanel(
593                   this,
594                   elementAppli,
595                   ID_WINDOW_PROPERTIES,
596                   wxT("Description Panel"),
597                   wxDefaultPosition,
598                   wxSize(600, 400),
599                   0
600               );
601
602             }
603           else
604             {
605               //application
606               modelCDMApplication* elementApplication = dynamic_cast<modelCDMApplication*>(element);
607               if(elementApplication != NULL)
608                 {
609                   //create element description
610                   description = new wxCDMApplicationDescriptionPanel(
611                       this,
612                       elementApplication,
613                       ID_WINDOW_PROPERTIES,
614                       wxT("Description Panel"),
615                       wxDefaultPosition,
616                       wxSize(600, 400),
617                       0
618                   );
619                 }
620               else
621                 {
622                   //lib
623                   modelCDMLib* elementLib = dynamic_cast<modelCDMLib*>(element);
624                   if(elementLib != NULL)
625                     {
626                       //create element description
627                       description = new wxCDMLibDescriptionPanel(
628                           this,
629                           elementLib,
630                           ID_WINDOW_PROPERTIES,
631                           wxT("Description Panel"),
632                           wxDefaultPosition,
633                           wxSize(600, 400),
634                           0
635                       );
636                     }
637                   else
638                     {
639                       //library
640                       modelCDMLibrary* elementLibrary = dynamic_cast<modelCDMLibrary*>(element);
641                       if(elementLibrary != NULL)
642                         {
643                           //create element description
644                           description = new wxCDMLibraryDescriptionPanel(
645                               this,
646                               elementLibrary,
647                               ID_WINDOW_PROPERTIES,
648                               wxT("Description Panel"),
649                               wxDefaultPosition,
650                               wxSize(600, 400),
651                               0
652                           );
653                         }
654                       else
655                         {
656                           //package
657                           modelCDMPackage* elementPackage = dynamic_cast<modelCDMPackage*>(element);
658                           if(elementPackage != NULL)
659                             {
660                               //create element description
661                               description = new wxCDMPackageDescriptionPanel(
662                                   this,
663                                   elementPackage,
664                                   ID_WINDOW_PROPERTIES,
665                                   wxT("Description Panel"),
666                                   wxDefaultPosition,
667                                   wxSize(600, 400),
668                                   0
669                               );
670                             }
671                           else
672                             {
673                               //black box
674                               modelCDMBlackBox* elementBlackBox = dynamic_cast<modelCDMBlackBox*>(element);
675                               if(elementBlackBox != NULL)
676                                 {
677                                   //create element description
678                                   description = new wxCDMBlackBoxDescriptionPanel(
679                                       this,
680                                       elementBlackBox,
681                                       ID_WINDOW_PROPERTIES,
682                                       wxT("Description Panel"),
683                                       wxDefaultPosition,
684                                       wxSize(600, 400),
685                                       0
686                                   );
687                                 }
688                               else
689                                 {
690                                   //CMakeLists
691                                   modelCDMCMakeListsFile* elementCMakeLists = dynamic_cast<modelCDMCMakeListsFile*>(element);
692                                   if(elementCMakeLists != NULL)
693                                     {
694                                       //create element description
695                                       description = new wxCDMCMakeListsDescriptionPanel(
696                                           this,
697                                           elementCMakeLists,
698                                           ID_WINDOW_PROPERTIES,
699                                           wxT("Description Panel"),
700                                           wxDefaultPosition,
701                                           wxSize(600, 400),
702                                           0
703                                       );
704                                     }
705                                   else
706                                     {
707                                       //folder
708                                       modelCDMFolder* elementFolder = dynamic_cast<modelCDMFolder*>(element);
709                                       if(elementFolder != NULL)
710                                         {
711                                           //create element description
712                                           description = new wxCDMFolderDescriptionPanel(
713                                               this,
714                                               elementFolder,
715                                               ID_WINDOW_PROPERTIES,
716                                               wxT("Description Panel"),
717                                               wxDefaultPosition,
718                                               wxSize(600, 400),
719                                               0
720                                           );
721                                         }
722                                       else
723                                         {
724                                           //file
725                                           modelCDMFile* elementFile = dynamic_cast<modelCDMFile*>(element);
726                                           if(elementFile != NULL)
727                                             {
728                                               //create element description
729                                               description = new wxCDMFileDescriptionPanel(
730                                                   this,
731                                                   elementFile,
732                                                   ID_WINDOW_PROPERTIES,
733                                                   wxT("Description Panel"),
734                                                   wxDefaultPosition,
735                                                   wxSize(600, 400),
736                                                   0
737                                               );
738                                             }
739                                           else
740                                             {
741
742                                               //main if not any
743                                               //create element description
744                                               description = new wxCDMMainDescriptionPanel(
745                                                   this,
746                                                   ID_WINDOW_PROPERTIES,
747                                                   wxT("Description Panel"),
748                                                   wxDefaultPosition,
749                                                   wxSize(600, 400),
750                                                   0
751                                               );
752                                             }
753                                         }
754                                     }
755                                 }
756                             }
757                         }
758                     }
759                 }
760             }
761         }
762
763       if(this->panel_Properties!= NULL)
764         this->panel_Properties->Hide();
765
766       auiManager.AddPane(description, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("")).BestSize(600,400).CloseButton(false));
767       auiManager.Update();
768
769       //delete old view
770       if(this->panel_Properties!= NULL)
771         {
772           auiManager.DetachPane(this->panel_Properties);
773           this->panel_Properties->Destroy();
774           this->panel_Properties = NULL;
775         }
776       //set new view
777
778       this->panel_Properties = description;
779
780       //auiManager.AddPane(panel_Properties, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("Properties")).BestSize(600,400).CloseButton(false));
781       auiManager.Update();
782       event.Skip();
783     }
784
785   return;
786
787 }
788
789 void wxCDMMainFrame::OnChangeView(wxCommandEvent& event)
790 {
791   modelCDMIProjectTreeNode* myItem = NULL;
792   switch(event.GetId())
793   {
794   case 0:
795     myItem = ((modelCDMIProjectTreeNode*)event.GetClientData());
796     //select out old one to generate selection event
797     this->tree_Projects->SelectItem(myItem->GetId(), false);
798     this->tree_Projects->SelectItem(myItem->GetId(), true);
799     this->tree_Projects->Expand(myItem->GetId());
800     break;
801   case 1:
802     wxPanel* description = NULL;
803     if(event.GetString() == wxT("manage_packages"))
804       {
805         this->tree_Projects->SelectItem(this->model->GetProject()->GetId(), false);
806         this->tree_Projects->Expand(this->model->GetProject()->GetId());
807         description = new wxCDMPackageManagerPanel(
808             this,
809             this->model->GetProject(),
810             ID_WINDOW_PROPERTIES,
811             wxT("Description Panel"),
812             wxDefaultPosition,
813             wxSize(600, 400),
814             0
815         );
816       }
817     else if(event.GetString() == wxT("manage_libraries"))
818       {
819         this->tree_Projects->SelectItem(this->model->GetProject()->GetLib()->GetId(), true);
820         this->tree_Projects->Expand(this->model->GetProject()->GetLib()->GetId());
821         break;
822       }
823     else if(event.GetString() == wxT("manage_applications"))
824       {
825         this->tree_Projects->SelectItem(this->model->GetProject()->GetAppli()->GetId(), true);
826         this->tree_Projects->Expand(this->model->GetProject()->GetAppli()->GetId());
827         break;
828       }
829     else if(event.GetString() == wxT("blackbox"))
830       {
831         this->tree_Projects->SelectItem(this->model->GetProject()->GetId(), false);
832         modelCDMBlackBox* bb = (modelCDMBlackBox*)event.GetClientData();
833         description = new wxCDMBlackBoxDescriptionPanel(
834             this,
835             bb,
836             ID_WINDOW_PROPERTIES,
837             wxT("Description Panel"),
838             wxDefaultPosition,
839             wxSize(600, 400),
840             0
841         );
842       }
843
844     if(this->panel_Properties!= NULL)
845       this->panel_Properties->Hide();
846
847     auiManager.AddPane(description, wxAuiPaneInfo().Center().Name(wxT("panel_Properties")).Caption(wxT("")).BestSize(600,400).CloseButton(false));
848     auiManager.Update();
849
850     //delete old view
851     if(this->panel_Properties!= NULL)
852       {
853         auiManager.DetachPane(this->panel_Properties);
854         this->panel_Properties->Destroy();
855         this->panel_Properties = NULL;
856       }
857     //set new view
858
859     this->panel_Properties = description;
860     auiManager.Update();
861     break;
862   }
863   event.Skip();
864 }
865
866 void wxCDMMainFrame::OnElementSelected(wxCommandEvent& event)
867 {
868   //std::cout << "element " << event.GetInt() << std::endl;
869   modelCDMIProjectTreeNode* item = (modelCDMIProjectTreeNode*)event.GetClientData();
870   this->tree_Projects->EnsureVisible(item->GetId());
871   this->tree_Projects->SetItemBold(item->GetId(), true);
872   this->tree_Projects->SetItemTextColour(item->GetId(), wxColour(0,0,255));
873   this->tree_Projects->SetItemBackgroundColour(item->GetId(), wxColour(230,230,255));
874   this->tree_Projects->UpdateWindowUI(wxUPDATE_UI_RECURSE);
875   auiManager.Update();
876 }
877
878 void wxCDMMainFrame::OnElementDeselected(wxCommandEvent& event)
879 {
880   modelCDMIProjectTreeNode* item = (modelCDMIProjectTreeNode*)event.GetClientData();
881   this->tree_Projects->SetItemBold(item->GetId(), false);
882   this->tree_Projects->SetItemTextColour(item->GetId(), wxColour(0,0,0));
883   this->tree_Projects->SetItemBackgroundColour(item->GetId(), wxColour(255,255,255));
884   this->tree_Projects->UpdateWindowUI(wxUPDATE_UI_RECURSE);
885   auiManager.Update();
886 }
887
888 void wxCDMMainFrame::OnMenuToggleHelp(wxCommandEvent& event)
889 {
890   this->help = !this->help;
891   this->menu_Help->Check(ID_MENU_TOGGLE_HELP, this->help);
892 }
893
894 void wxCDMMainFrame::OnDisableHelp(wxCommandEvent& event)
895 {
896   if (event.GetInt())
897     this->help = false;
898   else
899     this->help = true;
900
901   this->menu_Help->Check(ID_MENU_TOGGLE_HELP, this->help);
902 }