]> Creatis software - bbtk.git/blob - kernel/src/bbtkWxGUICommand.h
Merge branch 'master' of ssh://git.creatis.insa-lyon.fr/bbtk
[bbtk.git] / kernel / src / bbtkWxGUICommand.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   Program:   bbtk
30   Module:    $RCSfile: bbtkWxGUICommand.h,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:49:01 $
33   Version:   $Revision: 1.6 $
34 =========================================================================*/
35
36
37
38
39 /**
40  * \brief Short description in one line
41  * 
42  * Long description which 
43  * can span multiple lines
44  */
45 /**
46  * \file 
47  * \brief 
48  */
49 /**
50  * \class bbtk::
51  * \brief 
52  */
53
54
55 #ifdef _USE_WXWIDGETS_
56
57         
58 #ifndef __bbtkWxGUICommand_h__
59 #define __bbtkWxGUICommand_h__
60
61 #include "bbtkWx.h"
62  
63
64 namespace bbtk
65 {
66    /// Abstract class which defines the callbacks invoked by WxGUICommand
67   class BBTK_EXPORT WxGUICommandUser
68   {
69   public:
70     WxGUICommandUser() {}
71     virtual ~WxGUICommandUser() {}
72     /// Callback invoked when a command is entered in the WxGUICommand
73     virtual void WxGUICommandEnter(const std::string& command) {}
74   };
75
76   /// GUI Component which provides a command input zone 
77   class BBTK_EXPORT WxGUICommand : public wxPanel
78   {
79   public:
80     WxGUICommand(wxWindow *parent, WxGUICommandUser* user = 0);
81     ~WxGUICommand();
82     
83     void OnBtnGo(wxCommandEvent& event);
84     void OnCommandEnter(wxCommandEvent& event);
85     void OnCommandChar(wxCommandEvent& event);
86     
87     void OnBtnInclude(wxCommandEvent& event);
88     void OnBtnReset(wxCommandEvent& event);
89     void OnBtnConfig(wxCommandEvent& event);
90     void OnBtnGraphS(wxCommandEvent& event);
91     void OnBtnGraphD(wxCommandEvent& event);
92     void OnBtnHelp(wxCommandEvent& event);
93     void OnBtnPackageBrowser(wxCommandEvent& event);
94     
95     void SendCommand(const std::string& command);
96   private :
97     WxGUICommandUser* mUser;
98     wxComboBox* mwxTextCommand;
99     //    wxTextAttr* mwxTextCommandAttr;
100     
101   public:
102     enum
103       {
104         ID_Text_Command,
105         ID_Btn_Go,
106         ID_Btn_Include,
107         ID_Btn_Reset,
108         ID_Btn_Config,
109         ID_Btn_GraphS,
110         ID_Btn_GraphD,
111         ID_Btn_Help,
112         ID_Btn_PackageBrowser
113       };
114     
115     DECLARE_EVENT_TABLE()
116       
117       };
118   
119   
120 } // namespace bbtk
121
122
123 #endif // __bbtkWxGUICommand_h__
124
125 #endif //_USE_WXWIDGETS_