]> 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   wxPanel* GetPropertiesPanel() const;
65   bool isHelp() const;
66
67   void RefreshProject();
68
69 protected:
70   void CreateMenus();
71   void CreateControls();
72
73 private:
74
75   //Menus
76   wxMenu* menu_File;
77   wxMenu* menu_Edit;
78   wxMenu* menu_Tools;
79   wxMenu* menu_Help;
80
81   //Controls
82   wxAuiManager auiManager;
83   wxCDMProjectsTreeCtrl* tree_Projects;
84   wxPanel* panel_Properties;
85   wxPanel* panel_ProjectActions;
86
87   //Model
88   modelCDMMain* model;
89
90   //Help enabled
91   bool help;
92
93   //events
94 protected:
95   //File
96   void OnMenuNewProject(wxCommandEvent& event);
97   void OnMenuOpenProject(wxCommandEvent& event);
98   void OnMenuCloseProject(wxCommandEvent& event);
99   void OnMenuExportHierarchy(wxCommandEvent& event);
100   void OnMenuExit(wxCommandEvent& event);
101
102   //Edit
103   void OnMenuRefreshProject(wxCommandEvent& event);
104
105   //Tools
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 OnMenuToggleHelp(wxCommandEvent& event);
113   void OnMenuHelp(wxCommandEvent& event);
114   void OnMenuReportBug(wxCommandEvent& event);
115   void OnMenuAboutCreaDevManager(wxCommandEvent& event);
116   void OnMenuAboutCreatis(wxCommandEvent& event);
117
118   //Tree
119   void OnTreeSelectionChanged(wxTreeEvent& event);
120
121   //PropertiesPanel
122   void OnCreationComplete(wxCommandEvent& event);
123
124   //Element higlighted
125   void OnElementSelected(wxCommandEvent& event);
126   void OnElementDeselected(wxCommandEvent& event);
127
128   //Enable/Disable help
129   void OnDisableHelp(wxCommandEvent& event);
130 };
131
132 #endif