mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-02-18 11:06:23 +01:00
28 lines
568 B
C
28 lines
568 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <wx/wx.h>
|
||
|
|
||
|
class AudioDebuggerWindow : public wxFrame
|
||
|
{
|
||
|
public:
|
||
|
AudioDebuggerWindow(wxFrame& parent);
|
||
|
|
||
|
void OnCloseButton(wxCommandEvent& event);
|
||
|
void OnRefreshButton(wxCommandEvent& event);
|
||
|
void OnClose(wxCloseEvent& event);
|
||
|
void RefreshVoiceList_sndgeneric();
|
||
|
void RefreshVoiceList();
|
||
|
void OnRefreshTimer(wxTimerEvent& event);
|
||
|
void OnVoiceListPopupClick(wxCommandEvent &evt);
|
||
|
void OnVoiceListRightClick(wxMouseEvent& event);
|
||
|
|
||
|
void Close();
|
||
|
|
||
|
private:
|
||
|
wxListCtrl* voiceListbox;
|
||
|
wxTimer* refreshTimer;
|
||
|
|
||
|
wxDECLARE_EVENT_TABLE();
|
||
|
|
||
|
|
||
|
};
|