]> Creatis software - bbtk.git/blob - kernel/src/bbtkWxGUIOutputMessages.cxx
#2868 BBTK Feature New Normal - Exit Box
[bbtk.git] / kernel / src / bbtkWxGUIOutputMessages.cxx
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.cxx,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 #include "bbtkWxGUIOutputMessages.h"
58 #include "bbtkMessageManager.h"
59 #include "bbtkConfigurationFile.h"
60 #include "bbtkWxStreamRedirector.h"
61
62 namespace bbtk
63 {
64
65
66   WxGUIOutputMessages::WxGUIOutputMessages(wxWindow *parent, WxGUIOutputMessagesUser* user)
67     : wxPanel(parent,-1),
68       mUser(user)
69   {
70     wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
71     mwxOutputText = 
72       new wxTextCtrl(this,
73                      -1, //ID_OutputText,
74                      _T(""),wxDefaultPosition,
75                      wxDefaultSize,
76                      wxTE_READONLY |
77                      wxTE_MULTILINE );
78  
79     mFixedFont = new wxFont(10,
80                                    wxFONTFAMILY_MODERN,
81                                    wxFONTSTYLE_NORMAL,
82                                    wxFONTWEIGHT_NORMAL,
83                                    false);
84
85    mwxOutputTextAttr = new wxTextAttr;
86    mwxOutputTextAttr->SetFont(*mFixedFont);
87    sizer->Add ( mwxOutputText, 1, wxGROW);
88    
89    // Redirection of std::cout to mwxTextHistory and printf
90     mRedirect_cout = 
91       new WxStreamRedirector(std::cout,mwxOutputText,*wxBLACK,true);
92     mRedirect_cerr = 
93       new WxStreamRedirector(std::cerr,mwxOutputText,*wxGREEN,true); 
94
95     SetSizer(sizer);
96     SetAutoLayout(true);
97     Layout();
98   }
99
100   WxGUIOutputMessages::~WxGUIOutputMessages()
101   {
102     delete mRedirect_cout;
103     delete mRedirect_cerr;
104    delete mwxOutputTextAttr;
105    delete mFixedFont;
106   } 
107
108   void WxGUIOutputMessages::Print(const std::string& message, 
109                                   const wxColor* col)
110   {
111     if (col != 0)
112       {
113         mwxOutputTextAttr->SetTextColour(*col);
114         mwxOutputText->SetDefaultStyle(*mwxOutputTextAttr);
115       }
116     mwxOutputText->AppendText(std2wx(message));
117     if (col != 0)
118       {
119         mwxOutputTextAttr->SetTextColour(*wxBLACK);
120         mwxOutputText->SetDefaultStyle(*mwxOutputTextAttr);
121       }
122   }
123
124
125 }
126
127 #endif