Better looking toolbar styles (especially on Windows)
[qemu-gui.git] / config.h
blobec8df052e23f535cfa948ff70fa4f7691d42438f
1 #ifndef QEMU_GUI_CONFIG_H
2 #define QEMU_GUI_CONFIG_H
4 #define APP_VENDOR _T("Qemu GUI development team")
5 #define APP_NAME _T("Qemu GUI")
6 #define QEMU_GUI_VERSION _T("0.01")
7 #define QEMU_GUI_URL _T("http://www.braind-dump.org/projects/qemu-gui/")
8 #define QEMU_GUI_MAIL _T("mat@brain-dump.org")
9 #define QEMU_GUI_DOC _T("www.qemu.org/qemu-doc.html")
11 #if defined(__WXMSW__)
12 #define APP_PLATFORM _T("Windows")
13 #elif defined(__WXOS2__)
14 #define APP_PLATFORM _T("OS/2")
15 #elif defined(__WXMAC__)
16 #define APP_PLATFORM _T("Mac OS/X")
17 #elif defined(__LINUX__)
18 #define APP_PLATFORM _T("Linux")
19 #elif defined(__FREEBSD__)
20 #define APP_PLATFORM _T("FreeBSD")
21 #elif defined(__BSD__)
22 #define APP_PLATFORM _T("BSD")
23 #elif defined(__SOLARIS__)
24 #define APP_PLATFORM _T("Solaris")
25 #elif defined(__UNIX__)
26 #define APP_PLATFORM _T("Unix")
27 #else
28 #define APP_PLATFORM _T("Unknown")
29 #endif
31 #if wxUSE_UNICODE
32 #define APP_WXANSI_UNICODE wxT("unicode")
33 #else
34 #define APP_WXANSI_UNICODE wxT("ANSI")
35 #endif
37 #ifdef __WXDEBUG__
38 #define APP_DEBUG_MODE wxT(", debug build")
39 #else
40 #define APP_DEBUG_MODE wxT("")
41 #endif
43 #define QEMU_GUI_BUILD_INFO (wxString(wxT(__DATE__)) + wxT(", ") + wxT(__TIME__) + wxT(" - wx") + wxString(wxT(wxVERSION_NUM_DOT_STRING)) + wxT(" (") + APP_PLATFORM + wxT(", ") + APP_WXANSI_UNICODE + APP_DEBUG_MODE + wxT(")") )
45 #define QEMU_GUI_USE_VNC
47 #endif