]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMApplicationDescriptionPanel.h
027db4f50020680e48b9b71a2b9ccc1641ada75b
[crea.git] / lib / creaDevManagerLib / wxCDMApplicationDescriptionPanel.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  * wxCDMApplicationDescriptionPanel.h
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #ifndef WXCDMAPPLICATIONDESCRIPTIONPANEL_H_
36 #define WXCDMAPPLICATIONDESCRIPTIONPANEL_H_
37
38 #include <creaWx.h>
39 #include <wx/panel.h>
40 #include <wx/hyperlink.h>
41
42 #include "modelCDMApplication.h"
43
44 /**
45  * Application description panel. Shows the properties and actions available for the described application.
46  */
47 class wxCDMApplicationDescriptionPanel : public wxPanel
48 {
49   DECLARE_EVENT_TABLE()
50 public:
51   /**
52    * Application description panel Constructor.
53    * @param parent Parent window reference.
54    * @param application Application class reference.
55    * @param id Panel ID. By default -1.
56    * @param caption Panel label. By default "Description Frame".
57    * @param pos Panel position. By default wxDefaultPosition.
58    * @param size Panel size. By default wxDefaultSize.
59    * @param style Panel style. By default wxDEFAULT_FRAME_STYLE.
60    */
61   wxCDMApplicationDescriptionPanel(
62       wxWindow* parent,
63       modelCDMApplication* application,
64       wxWindowID id = -1,
65       const wxString& caption = _("Description Frame"),
66       const wxPoint& pos = wxDefaultPosition,
67       const wxSize& size = wxDefaultSize,
68       long style = wxDEFAULT_FRAME_STYLE
69   );
70
71   /**
72    * Destructor.
73    */
74   ~wxCDMApplicationDescriptionPanel();
75
76   /**
77    * Application description panel Creator.
78    * @param parent Parent window reference.
79    * @param application Application class reference.
80    * @param id Panel ID. By default -1.
81    * @param caption Panel label. By default "Description Frame".
82    * @param pos Panel position. By default wxDefaultPosition.
83    * @param size Panel size. By default wxDefaultSize.
84    * @param style Panel style. By default wxDEFAULT_FRAME_STYLE.
85    */
86   bool Create(
87       wxWindow* parent,
88       modelCDMApplication* application,
89       wxWindowID id = -1,
90       const wxString& caption = _("Description Frame"),
91       const wxPoint& pos = wxDefaultPosition,
92       const wxSize& size = wxDefaultSize,
93       long style = wxDEFAULT_FRAME_STYLE
94   );
95
96   /**
97    * Creates all the controls in the panel (property and action controls).
98    */
99   void CreateControls();
100
101 private:
102   /**
103    * Application described.
104    */
105   modelCDMApplication* application;
106   /**
107    * described application's executable name control.
108    */
109   wxStaticText* executableNametc;
110
111   //handlers
112 protected:
113   /**
114    * Handles when a return link is pressed.
115    * @param event Has the link reference to know where to return
116    */
117   void OnBtnReturn(wxHyperlinkEvent& event);
118
119   /**
120    * Handles when the set executable name button is pressed.
121    * @param event Unused
122    */
123   void OnBtnSetExeName(wxCommandEvent& event);
124   /**
125    * Handles when a 3rd Party Library checkbox state is changed. It calls to include/exclude the selected application.
126    * @param event CheckBox event.
127    */
128   void On3rdLibraryChBChange(wxCommandEvent& event);
129   /**
130    * Handles when a Custom Library checkbox state is changed. It calls to include/exclude the selected application.
131    * @param event CheckBox event.
132    */
133   void OnLibraryChBChange(wxCommandEvent& event);
134   /**
135    * Handles when the create class button is pressed.
136    */
137   void OnBtnCreateClass(wxCommandEvent& event);
138   /**
139    * Handles when the create folder button is pressed.
140    */
141   void OnBtnCreateFolder(wxCommandEvent& event);
142   /**
143    * Handles when the open package cmakelists file button is pressed.
144    */
145   void OnBtnEditCMakeLists(wxCommandEvent& event);
146   /**
147    * Handles when the open containing folder button is pressed.
148    */
149   void OnBtnOpenFolder(wxCommandEvent& event);
150   /**
151    * Handles when the open cmakelists file button is hovered.
152    */
153   void OnCMakeMouseEnter(wxMouseEvent& event);
154   /**
155    * Handles when the open cmakelists file button finishes hover.
156    */
157   void OnCMakeMouseExit(wxMouseEvent& event);
158   /**
159    * Handles when the open Main file button is pressed.
160    */
161   void OnBtnOpenMain(wxCommandEvent& event);
162   /**
163    * Handles when the open Main file button is hovered.
164    */
165   void OnMainMouseEnter(wxMouseEvent& event);
166   /**
167    * Handles when the open Main file button finishes hover.
168    */
169   void OnMainMouseExit(wxMouseEvent& event);
170
171 };
172
173 #endif /* WXCDMAPPLICATIONDESCRIPTIONPANEL_H_ */