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