]> Creatis software - bbtk.git/blob - kernel/src/bbtkWxConsole.h
*** empty log message ***
[bbtk.git] / kernel / src / bbtkWxConsole.h
1 /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbtkWxConsole.h,v $
5   Language:  C++
6   Date:      $Date: 2008/03/03 10:48:48 $
7   Version:   $Revision: 1.5 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*//**
18  * \brief Short description in one line
19  * 
20  * Long description which 
21  * can span multiple lines
22  */
23 /**
24  * \file 
25  * \brief 
26  */
27 /**
28  * \class bbtk::
29  * \brief 
30  */
31
32
33 #ifdef _USE_WXWIDGETS_
34
35         
36 #ifndef __bbtkWxConsole_h__
37 #define __bbtkWxConsole_h__
38
39 #include <wx/aui/aui.h>
40 #include "bbtkWx.h"
41 #include <wx/notebook.h>
42 #include <wx/html/htmlwin.h>
43
44
45 #include "bbtkInterpreter.h"
46 #include "bbtkWxBrowser.h"
47
48 namespace bbtk
49 {
50
51   class WxTextCtrlStreamRedirector;
52
53   /// A console in which user can enter commands
54   class BBTK_EXPORT WxConsole : public wxFrame
55   {
56   public:
57     WxConsole( wxWindow *parent, wxString title, wxSize size);
58     ~WxConsole();
59
60     static WxConsole* GetInstance() { return mInstance; }
61
62     /// Sets the inputs of the workspace : 
63     /// the map is passed as is to the Executer
64     void SetInputs(const std::map<std::string,std::string>& m)
65     { mInterpreter->SetInputs(m); }
66     
67     /// Puts the executer in "no exec" mode, 
68     /// which creates but does not execute pipelines.
69     void SetNoExecMode(bool b) { mInterpreter->SetNoExecMode(b); }
70
71     void SetDialogMode(Interpreter::DialogModeType t) { mInterpreter->SetDialogMode(t); }
72     
73     /// Runs the interpretation of a file
74     void InterpretFile( const std::string& filename) 
75     { mInterpreter->InterpretFile(filename); }
76
77     void OnMenuQuit(wxCommandEvent& event);
78     void OnMenuAbout(wxCommandEvent& event);
79     void OnMenuCreatePackage(wxCommandEvent& WXUNUSED(event));
80     void OnMenuCreateBlackBox(wxCommandEvent& WXUNUSED(event));
81     void OnMenuShowImageGraph(wxCommandEvent& WXUNUSED(event));
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     
94     
95     void ShowHtmlPage(std::string&);
96
97   private:
98     Interpreter* mInterpreter;
99     wxTextCtrl* mwxTextHistory;
100 //EED    wxTextCtrl* mwxTextCommand;
101     wxComboBox* mwxTextCommand;
102     wxTextAttr* mwxTextHistoryAttr;
103     wxTextAttr* mwxTextCommandAttr;
104 //EED    wxNotebook* mwxNotebook;
105    wxAuiNotebook* mwxNotebook;
106     wxPanel *mwxPageCommand, *mwxPageHelp;
107     WxTextCtrlStreamRedirector* mRedirect_cout;
108     WxTextCtrlStreamRedirector* mRedirect_cerr;
109     WxBrowser* mwxHtmlWindow;
110     static WxConsole* mInstance;
111     
112     wxPanel*    CreateBtnsCtrlPanel(wxWindow *parent);
113     void                CommandString(wxString line );
114  
115   public:
116           
117      enum
118     {
119       ID_Menu_Quit = 1,
120       ID_Menu_About,
121       ID_Menu_CreatePackage,
122       ID_Menu_CreateBlackBox,
123       ID_Menu_ShowImageGraph,
124       ID_Text_Command,
125       ID_Text_History,
126
127     };
128     
129     DECLARE_EVENT_TABLE()
130         
131   };
132
133   
134 } // namespace bbtk
135
136
137 #endif // __bbtkWxConsole_h__
138
139 #endif //_USE_WXWIDGETS_