]> Creatis software - bbtk.git/blob - kernel/src/bbtkWxGUIOutputMessages.h
Feature #1774
[bbtk.git] / kernel / src / bbtkWxGUIOutputMessages.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: bbtkWxGUIOutputMessages.h,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:49:01 $
33   Version:   $Revision: 1.5 $
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 __bbtkWxGUIOutputMessages_h__
59 #define __bbtkWxGUIOutputMessages_h__
60
61 #include "bbtkWx.h"
62  
63
64 namespace bbtk
65 {
66   
67    /// Abstract class which defines the callbacks invoked by WxGUIOutputMessages
68   class BBTK_EXPORT WxGUIOutputMessagesUser
69   {
70   public:
71     WxGUIOutputMessagesUser() {}
72     virtual ~WxGUIOutputMessagesUser() {}
73     /// Callback invoked when a command is entered in the WxGUIOutputMessages
74     virtual void WxGUIOutputMessagesEnter(const std::string& command) {}
75   };
76   
77
78   // Forward decl
79   class WxStreamRedirector;
80
81   /// GUI Component which provides a command input zone 
82   class BBTK_EXPORT WxGUIOutputMessages : public wxPanel
83   {
84   public:
85     WxGUIOutputMessages(wxWindow *parent, WxGUIOutputMessagesUser* user = 0);
86     ~WxGUIOutputMessages();
87     
88     void Print(const std::string& message, const wxColor* col = 0);
89
90   private :
91     WxGUIOutputMessagesUser* mUser;
92     wxTextCtrl* mwxOutputText;
93     wxTextAttr* mwxOutputTextAttr;
94         wxFont* mFixedFont;
95     WxStreamRedirector* mRedirect_cout;
96     WxStreamRedirector* mRedirect_cerr;
97     /*
98   public:
99     enum
100       {
101         ID_Text_Command,
102         ID_Btn_Go,
103         ID_Btn_Include,
104         ID_Btn_Reset,
105         ID_Btn_Config,
106         ID_Btn_GraphS,
107         ID_Btn_GraphD,
108         ID_Btn_Help
109       };
110     
111     DECLARE_EVENT_TABLE()
112     */
113   };
114   
115   
116 } // namespace bbtk
117
118
119 #endif // __bbtkWxGUIOutputMessages_h__
120
121 #endif //_USE_WXWIDGETS_