]> 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 protected:
64   void CreateMenus();
65   void CreateControls();
66
67 private:
68
69   //Menus
70   wxMenu* menu_File;
71   wxMenu* menu_Edit;
72   wxMenu* menu_Tools;
73   wxMenu* menu_Help;
74
75   //Controls
76   wxAuiManager auiManager;
77   wxCDMProjectsTreeCtrl* tree_Projects;
78   wxPanel* panel_Properties;
79   wxPanel* panel_ProjectActions;
80
81   //Model
82   modelCDMMain* model;
83
84   //events
85 protected:
86   //File
87   void OnMenuNewProject(wxCommandEvent& event);
88   void OnMenuOpenProject(wxCommandEvent& event);
89   void OnMenuOpenRecent(wxCommandEvent& event);
90   void OnMenuCloseProject(wxCommandEvent& event);
91   void OnMenuCloseAllProjects(wxCommandEvent& event);
92   void OnMenuExportHierarchy(wxCommandEvent& event);
93   void OnMenuExit(wxCommandEvent& event);
94
95   //Edit
96   void OnMenuRefreshProject(wxCommandEvent& event);
97   void OnMenuMenuCut(wxCommandEvent& event);
98   void OnMenuMenuCopy(wxCommandEvent& event);
99   void OnMenuMenuPaste(wxCommandEvent& event);
100   void OnMenuMenuDelete(wxCommandEvent& event);
101   void OnMenuSelectAll(wxCommandEvent& event);
102   void OnMenuSelectNone(wxCommandEvent& event);
103
104   //Tools
105   void OnMenuEventLog(wxCommandEvent& event);
106   void OnMenuBBTKGraphicalEditor(wxCommandEvent& event);
107   void OnMenuMiniTools(wxCommandEvent& event);
108   void OnMenuCodeEditor(wxCommandEvent& event);
109   void OnMenuCommandLine(wxCommandEvent& event);
110
111   //Help
112   void OnMenuHelp(wxCommandEvent& event);
113   void OnMenuReportBug(wxCommandEvent& event);
114   void OnMenuAboutCreaDevManager(wxCommandEvent& event);
115   void OnMenuAboutCreatis(wxCommandEvent& event);
116
117   //Tree
118   void OnTreeSelectionChanged(wxTreeEvent& event);
119 };
120
121 #endif