summaryrefslogtreecommitdiff
path: root/Source/Plugins/Plugin_DSP_LLE-testing/Src/debugger/Debugger.h
diff options
context:
space:
mode:
authorhyperiris <hyperiris@gmail.com>2009-03-30 13:21:22 +0000
committerhyperiris <hyperiris@gmail.com>2009-03-30 13:21:22 +0000
commite9232ecf9583f8fdcbcdbeaaa3ca26e82c84d0d5 (patch)
treec1fc90b9b1d26df01af23e56887b763ea13b951c /Source/Plugins/Plugin_DSP_LLE-testing/Src/debugger/Debugger.h
parent37d513c53bad6fe80b0120773da8be50248da3df (diff)
LLE debugger work in progress: 1%, just a begin
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2797 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_DSP_LLE-testing/Src/debugger/Debugger.h')
-rw-r--r--Source/Plugins/Plugin_DSP_LLE-testing/Src/debugger/Debugger.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/Source/Plugins/Plugin_DSP_LLE-testing/Src/debugger/Debugger.h b/Source/Plugins/Plugin_DSP_LLE-testing/Src/debugger/Debugger.h
new file mode 100644
index 0000000000..d7079e47bc
--- /dev/null
+++ b/Source/Plugins/Plugin_DSP_LLE-testing/Src/debugger/Debugger.h
@@ -0,0 +1,63 @@
+#pragma once
+
+#ifndef __CDebugger_h__
+#define __CDebugger_h__
+
+// general things
+#include <iostream>
+#include <vector>
+
+#ifndef WX_PRECOMP
+#include <wx/wx.h>
+#include <wx/dialog.h>
+#else
+#include <wx/wxprec.h>
+#endif
+
+#include <wx/button.h>
+#include <wx/stattext.h>
+#include <wx/statbox.h>
+#include <wx/statbmp.h>
+#include <wx/datetime.h> // for the timestamps
+
+#include <wx/sizer.h>
+#include <wx/notebook.h>
+#include <wx/filepicker.h>
+#include <wx/listctrl.h>
+#include <wx/imaglist.h>
+
+//#include "../Globals.h"
+
+//class CPBView;
+//class IniFile;
+
+// Window settings
+#undef CDebugger_STYLE
+#define CDebugger_STYLE wxDEFAULT_FRAME_STYLE | wxCLIP_CHILDREN | wxNO_FULL_REPAINT_ON_RESIZE
+
+class CDebugger : public wxDialog
+{
+private:
+ DECLARE_EVENT_TABLE();
+
+public:
+ CDebugger(wxWindow *parent, wxWindowID id = 1, const wxString &title = _("Sound Debugger"),
+ const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
+ long style = CDebugger_STYLE);
+
+ virtual ~CDebugger();
+
+ void DoHide();
+ void DoShow();
+private:
+ // WARNING: Make sure these are not also elsewhere
+ enum
+ {
+ // = 2000,
+ };
+
+ void OnClose(wxCloseEvent& event);
+ void CreateGUIControls();
+};
+
+#endif