]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMAppliDescriptionPanel.h
99c8f59944c4b2c0967a2ae6442717f137d97111
[crea.git] / lib / creaDevManagerLib / wxCDMAppliDescriptionPanel.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  * wxCDMAppliDescriptionPanel.h
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #ifndef WXCDMAPPLIDESCRIPTIONPANEL_H_
36 #define WXCDMAPPLIDESCRIPTIONPANEL_H_
37
38 #include <creaWx.h>
39 #include <wx/panel.h>
40 #include <wx/hyperlink.h>
41
42 #include "modelCDMAppli.h"
43
44 /**
45  * Application manager description panel. Shows the available applications in the project and the actions corresponding to application management.
46  */
47 class wxCDMAppliDescriptionPanel : public wxPanel
48 {
49   DECLARE_EVENT_TABLE()
50 public:
51   /**
52    * Application manager description panel Constructor.
53    * @param parent Parent window reference.
54    * @param appli Application manager 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   wxCDMAppliDescriptionPanel(
62       wxWindow* parent,
63       modelCDMAppli* appli,
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   ~wxCDMAppliDescriptionPanel();
72
73   /**
74    * Application manager description panel Creator.
75    * @param parent Parent window reference.
76    * @param appli Application manager class reference.
77    * @param id Panel ID. By default -1.
78    * @param caption Panel label. By default "Description Frame".
79    * @param pos Panel position. By default wxDefaultPosition.
80    * @param size Panel size. By default wxDefaultSize.
81    * @param style Panel style. By default wxDEFAULT_FRAME_STYLE.
82    * @return True if the creation was successful.
83    */
84   bool Create(
85       wxWindow* parent,
86       modelCDMAppli* appli,
87       wxWindowID id = -1,
88       const wxString& caption = _("Description Frame"),
89       const wxPoint& pos = wxDefaultPosition,
90       const wxSize& size = wxDefaultSize,
91       long style = wxDEFAULT_FRAME_STYLE
92   );
93
94   /**
95    * Creates all the controls in the panel (property and action controls).
96    */
97   void CreateControls();
98
99 private:
100   /**
101    * Application manager described.
102    */
103   modelCDMAppli* appli;
104
105   //handlers
106 protected:
107   /**
108    * Handles when the create application button is pressed.
109    */
110   void OnBtnCreateApplication(wxCommandEvent& event);
111   /**
112    * Handles when the open package cmakelists file button is pressed.
113    */
114   void OnBtnEditCMakeLists(wxCommandEvent& event);
115   /**
116    * Handles when a application checkbox is (un)checked.
117    * @param event Has the link reference to know which application was selected.
118    */
119   void OnChBApplicationChange(wxCommandEvent& event);
120   /**
121    * Handles when an application link is pressed.
122    * @param event Has the link reference to know which application was selected.
123    */
124   void OnLnkApplicationSelect(wxHyperlinkEvent& event);
125   /**
126    * Handles when a return link is pressed.
127    * @param event Has the link reference to know where to return
128    */
129   void OnBtnReturn(wxHyperlinkEvent& event);
130   /**
131    * Handles when the open folder button is pressed.
132    */
133   void OnBtnOpenFolder(wxCommandEvent& event);
134
135   /**
136    * Handles when a application link is hovered.
137    * @param event Has the link reference to know which application was selected.
138    */
139   void OnMouseEnter(wxMouseEvent& event);
140   /**
141    * Handles when a application link button finishes hover.
142    * @param event Has the link reference to know which application was selected.
143    */
144   void OnMouseExit(wxMouseEvent& event);
145   /**
146    * Handles when the open cmakelists file button is hovered.
147    */
148   void OnCMakeMouseEnter(wxMouseEvent& event);
149   /**
150    * Handles when the open cmakelists file button finishes hover.
151    */
152   void OnCMakeMouseExit(wxMouseEvent& event);
153
154 };
155
156 #endif /* WXCDMAPPLIDESCRIPTIONPANEL_H_ */