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