30aaf4088e
the wxwindows interface by just "configure --with-wx; make" Modified Files: Makefile.in bochs.h config.h.in configure configure.in load32bitOShack.cc logio.cc main.cc cpu/cpu.cc cpu/cpu.h debug/dbg_main.cc gui/Makefile.in gui/control.cc gui/gui.cc gui/siminterface.cc gui/siminterface.h gui/x.cc iodev/cdrom.cc iodev/keyboard.cc memory/misc_mem.cc Added Files: README-wxWindows wxbochs.rc gui/wx.cc gui/wxmain.cc gui/wxmain.h gui/bitmaps/cdromd.xpm gui/bitmaps/configbutton.xpm gui/bitmaps/copy.xpm gui/bitmaps/floppya.xpm gui/bitmaps/floppyb.xpm gui/bitmaps/mouse.xpm gui/bitmaps/paste.xpm gui/bitmaps/power.xpm gui/bitmaps/reset.xpm gui/bitmaps/snapshot.xpm Removed Files: patches/patch.wxwindows.gz
77 lines
2.3 KiB
C++
77 lines
2.3 KiB
C++
// this file should be included only by wx.cc and wxmain.cc.
|
|
|
|
// forward class declaration so that each class can have a pointer to
|
|
// the others.
|
|
class MyFrame;
|
|
class MyPanel;
|
|
class SimThread;
|
|
|
|
//hack alert; yuck; FIXME
|
|
extern MyFrame *theFrame;
|
|
extern MyPanel *thePanel;
|
|
|
|
#define MAX_EVENTS 256
|
|
extern unsigned long num_events;
|
|
extern BxEvent event_queue[MAX_EVENTS];
|
|
|
|
// to show debug messages, change these defines to x. To hide them,
|
|
// change the defines to return nothing.
|
|
#define IFDBG_VGA(x) /* nothing */
|
|
//#define IFDBG_VGA(x) x
|
|
|
|
#define IFDBG_KEY(x) /* nothing */
|
|
//#define IFDBG_KEY(x) x
|
|
|
|
|
|
/// the MyPanel methods are defined in wx.cc
|
|
class MyPanel: public wxPanel
|
|
{
|
|
Boolean fillBxKeyEvent (wxKeyEvent& event, BxKeyEvent& bxev, Boolean release); // for all platforms
|
|
Boolean fillBxKeyEvent_MSW (wxKeyEvent& event, BxKeyEvent& bxev, Boolean release);
|
|
Boolean fillBxKeyEvent_GTK (wxKeyEvent& event, BxKeyEvent& bxev, Boolean release);
|
|
public:
|
|
MyPanel(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxTAB_TRAVERSAL, const wxString& name = "panel")
|
|
: wxPanel (parent, id, pos, size, style, name)
|
|
{ wxLogDebug ("MyPanel constructor"); }
|
|
void OnKeyDown(wxKeyEvent& event);
|
|
void OnKeyUp(wxKeyEvent& event);
|
|
void OnPaint(wxPaintEvent& event);
|
|
void MyRefresh ();
|
|
private:
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
/// the MyFrame methods are defined in wxmain.cc
|
|
class MyFrame: public wxFrame
|
|
{
|
|
MyPanel *panel;
|
|
public:
|
|
MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size, const long style);
|
|
void OnQuit(wxCommandEvent& event);
|
|
void OnAbout(wxCommandEvent& event);
|
|
void OnStartSim(wxCommandEvent& event);
|
|
void OnPauseResumeSim(wxCommandEvent& event);
|
|
void OnKillSim(wxCommandEvent& event);
|
|
void OnSim2GuiEvent(wxCommandEvent& event);
|
|
void OnToolbarClick(wxCommandEvent& event);
|
|
int HandleAskParam (BxEvent *event);
|
|
int HandleAskParamString (bx_param_string_c *param);
|
|
|
|
// called from the sim thread's OnExit() method.
|
|
void OnSimThreadExit ();
|
|
|
|
private:
|
|
wxCriticalSection sim_thread_lock;
|
|
SimThread *sim_thread; // get the lock before accessing sim_thread
|
|
int start_bochs_times;
|
|
wxMenu *menuConfiguration;
|
|
wxMenu *menuEdit;
|
|
wxMenu *menuSimulate;
|
|
wxMenu *menuDebug;
|
|
wxMenu *menuLog;
|
|
wxMenu *menuHelp;
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|