summaryrefslogtreecommitdiff
path: root/LiteEditor/debuggerasciiviewerbase.h
diff options
context:
space:
mode:
authorChow Loong Jin <hyperair@gmail.com>2010-01-10 23:59:47 +0800
committerChow Loong Jin <hyperair@gmail.com>2010-01-11 00:51:01 +0800
commit5ec7ea8b2ec3db0551071242c80c4ce575dfde47 (patch)
tree79f5e470992326c97778f0bb8a19e08c4af4a220 /LiteEditor/debuggerasciiviewerbase.h
parent8a1bbfc1060643aa2b079e2a43b2ecaf1bdaa5da (diff)
Imported Upstream version 2.1.0.3584
Diffstat (limited to 'LiteEditor/debuggerasciiviewerbase.h')
-rw-r--r--LiteEditor/debuggerasciiviewerbase.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/LiteEditor/debuggerasciiviewerbase.h b/LiteEditor/debuggerasciiviewerbase.h
index 95635ffa..115b3d1c 100644
--- a/LiteEditor/debuggerasciiviewerbase.h
+++ b/LiteEditor/debuggerasciiviewerbase.h
@@ -11,11 +11,13 @@
#include <wx/intl.h>
#include <wx/string.h>
-#include <wx/textctrl.h>
+#include <wx/stattext.h>
#include <wx/gdicmn.h>
#include <wx/font.h>
#include <wx/colour.h>
#include <wx/settings.h>
+#include <wx/textctrl.h>
+#include <wx/button.h>
#include <wx/sizer.h>
#include <wx/wxscintilla.h>
#include <wx/panel.h>
@@ -31,12 +33,13 @@ class DebuggerAsciiViewerBase : public wxPanel
private:
protected:
- wxTextCtrl* m_textCtrlDbgCommand;
+ wxStaticText* m_staticText1;
wxTextCtrl* m_textCtrlExpression;
+ wxButton* m_buttonClear;
wxScintilla *m_textView;
// Virtual event handlers, overide them in your derived class
- virtual void OnEnter( wxCommandEvent& event ){ event.Skip(); }
+ virtual void OnClearView( wxCommandEvent& event ){ event.Skip(); }
public: