24 lines
No EOL
529 B
C++
24 lines
No EOL
529 B
C++
#ifndef _plat_wxwidgets__menu_dump__hpp__included__
|
|
#define _plat_wxwidgets__menu_dump__hpp__included__
|
|
|
|
#include <wx/string.h>
|
|
#include <wx/wx.h>
|
|
|
|
class dumper_menu_monitor;
|
|
class dumper_info;
|
|
|
|
class dumper_menu : public wxMenu
|
|
{
|
|
public:
|
|
dumper_menu(wxWindow* win, int wxid_low, int wxid_high);
|
|
~dumper_menu();
|
|
void on_select(wxCommandEvent& e);
|
|
void update(const std::map<std::string, dumper_info>& new_dumpers);
|
|
private:
|
|
dumper_menu_monitor* monitor;
|
|
wxWindow* pwin;
|
|
int wxid_range_low;
|
|
int wxid_range_high;
|
|
};
|
|
|
|
#endif |