Better looking toolbar styles (especially on Windows)
[qemu-gui.git] / qemu-ui.h
blob57a8a7f7e91aca3e346884251f134e28f4eb2d6d
1 #ifndef QEMU_GUI_H
2 #define QEMU_GUI_H
4 #include <wx/app.h>
6 class QemuMainFrame;
7 class VNCDisplayThread;
9 class QemuGUI : public wxApp
11 public:
12 bool OnInit();
13 int OnRun();
14 int OnExit();
15 static QemuMainFrame* GetMainFrame();
16 private:
17 static QemuMainFrame *frame;
18 VNCDisplayThread *thread;
21 #endif