mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
15 lines
356 B
C++
15 lines
356 B
C++
#pragma once
|
|
#include "Gui/FrameBase.h"
|
|
#include <wx/checklst.h>
|
|
|
|
class LLEModulesManagerFrame : public FrameBase
|
|
{
|
|
wxCheckListBox *m_check_list;
|
|
std::vector<std::string> m_funcs;
|
|
|
|
public:
|
|
LLEModulesManagerFrame(wxWindow *parent);
|
|
void Refresh();
|
|
void UpdateSelection(int index);
|
|
void OnSelectAll(wxCommandEvent& WXUNUSED(event), bool is_checked);
|
|
}; |