23 lines
457 B
C++
23 lines
457 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_menu : public wxMenu
|
||
|
{
|
||
|
public:
|
||
|
dumper_menu(wxWindow* win, int wxid_low, int wxid_high);
|
||
|
~dumper_menu();
|
||
|
void on_select(wxCommandEvent& e);
|
||
|
void update();
|
||
|
private:
|
||
|
dumper_menu_monitor* monitor;
|
||
|
wxWindow* pwin;
|
||
|
int wxid_range_low;
|
||
|
int wxid_range_high;
|
||
|
};
|
||
|
|
||
|
#endif
|