]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMMainFrame.h
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMMainFrame.h
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 #ifndef WXCDMMAINFRAME_H_INCLUDED
30 #define WXCDMMAINFRAME_H_INCLUDED
31
32 #include <creaWx.h>
33 #include <wx/aui/aui.h>
34 #include <wx/treectrl.h>
35 #include "wxCDMProjectsTreeCtrl.h"
36 #include "modelCDMMain.h"
37
38 class wxCDMMainFrame:public wxFrame
39 {
40   DECLARE_EVENT_TABLE()
41
42 public:
43   wxCDMMainFrame(
44       wxWindow* parent,
45       wxWindowID id = -1,
46       const wxString& caption = wxT("CREATIS CreaDevManager"),
47       const wxPoint& pos = wxDefaultPosition,
48       const wxSize& size = wxDefaultSize,
49       long style = wxDEFAULT_FRAME_STYLE
50   );
51
52   ~wxCDMMainFrame();
53
54   bool Create(
55       wxWindow* parent,
56       wxWindowID id = -1,
57       const wxString& caption = wxT("CREATIS CreaDevManager"),
58       const wxPoint& pos = wxDefaultPosition,
59       const wxSize& size = wxDefaultSize,
60       long style = wxDEFAULT_FRAME_STYLE
61   );
62
63   void RefreshProject();
64
65 protected:
66   void CreateMenus();
67   void CreateControls();
68
69 private:
70
71   //Menus
72   wxMenu* menu_File;
73   wxMenu* menu_Edit;
74   wxMenu* menu_Tools;
75   wxMenu* menu_Help;
76
77   //Controls
78   wxAuiManager auiManager;
79   wxCDMProjectsTreeCtrl* tree_Projects;
80   wxPanel* panel_Properties;
81   wxPanel* panel_ProjectActions;
82
83   //Model
84   modelCDMMain* model;
85
86   //events
87 protected:
88   //File
89   void OnMenuNewProject(wxCommandEvent& event);
90   void OnMenuOpenProject(wxCommandEvent& event);
91   void OnMenuOpenRecent(wxCommandEvent& event);
92   void OnMenuCloseProject(wxCommandEvent& event);
93   void OnMenuCloseAllProjects(wxCommandEvent& event);
94   void OnMenuExportHierarchy(wxCommandEvent& event);
95   void OnMenuExit(wxCommandEvent& event);
96
97   //Edit
98   void OnMenuRefreshProject(wxCommandEvent& event);
99   void OnMenuMenuCut(wxCommandEvent& event);
100   void OnMenuMenuCopy(wxCommandEvent& event);
101   void OnMenuMenuPaste(wxCommandEvent& event);
102   void OnMenuMenuDelete(wxCommandEvent& event);
103   void OnMenuSelectAll(wxCommandEvent& event);
104   void OnMenuSelectNone(wxCommandEvent& event);
105
106   //Tools
107   void OnMenuEventLog(wxCommandEvent& event);
108   void OnMenuBBTKGraphicalEditor(wxCommandEvent& event);
109   void OnMenuMiniTools(wxCommandEvent& event);
110   void OnMenuCodeEditor(wxCommandEvent& event);
111   void OnMenuCommandLine(wxCommandEvent& event);
112
113   //Help
114   void OnMenuHelp(wxCommandEvent& event);
115   void OnMenuReportBug(wxCommandEvent& event);
116   void OnMenuAboutCreaDevManager(wxCommandEvent& event);
117   void OnMenuAboutCreatis(wxCommandEvent& event);
118
119   //Tree
120   void OnTreeSelectionChanged(wxTreeEvent& event);
121
122   //PropertiesPanel
123   void OnCreationComplete(wxCommandEvent& event);
124 };
125
126 #endif