Use new vnc syntax (with a colon).
[qemu-gui.git] / statusbar.h
blob802eaee430bbf8b6df6c590fccb6cd584aada35e
1 #ifndef QEMU_GUI_STATUS_BAR_H
2 #define QEMU_GUI_STATUS_BAR_H
4 #include <wx/statusbr.h>
6 class wxStatusBar;
7 class wxStaticBitmap;
8 class QemuMainFrame;
10 class QemuUIStatusBar : public wxStatusBar
12 public:
13 QemuUIStatusBar(QemuMainFrame *parent);
14 void Disable();
15 void Enable();
16 private:
17 void OnCdRomContextMenu(wxContextMenuEvent& event);
18 void OnSize(wxSizeEvent& event);
19 wxStaticBitmap *floppy;
20 wxStaticBitmap *cdrom;
21 wxStaticBitmap *hd;
22 wxStaticBitmap *net;
23 DECLARE_EVENT_TABLE()
26 enum {
27 ID_STATUSBAR_CDROM,
28 ID_STATUSBAR_CDROM_CONNECT
31 #endif