mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-14 18:19:12 +01:00
6b2b1a34ee
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2804 8ced0084-cf51-0410-be5f-012b33b47a6e
64 lines
1.2 KiB
C++
64 lines
1.2 KiB
C++
#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
|