2022-02-16 00:53:01 -05:00
|
|
|
// This is wxWidgets style resource file. ;;
|
|
|
|
// The visual studio resource editor will screw it up.
|
|
|
|
#pragma code_page(65001) // UTF-8
|
|
|
|
// this icon is used with wxFrame::SetIcon()
|
2022-06-30 06:54:26 -04:00
|
|
|
AAArho ICON "../docs/rho.ico"
|
2022-02-16 00:53:01 -05:00
|
|
|
|
2023-10-18 06:23:55 -04:00
|
|
|
// and alphabetically (!), so put this icon first and give it a name
|
|
|
|
// starting with "a"
|
|
|
|
aaaaaaaa ICON "../docs/rho.ico"
|
|
|
|
|
|
|
|
// this icon is used with wxFrame::SetIcon()
|
|
|
|
sample ICON "../docs/rho.ico"
|
|
|
|
|
|
|
|
// set this to 1 if you don't want to use manifest resource provided by wxWidgets.
|
|
|
|
// An application manifest is needed for the application UI to look properly and other
|
|
|
|
// things - see docs/msw/winxp.md for more information)
|
2022-02-16 00:53:01 -05:00
|
|
|
#define wxUSE_NO_MANIFEST 0
|
2023-10-18 06:23:55 -04:00
|
|
|
|
|
|
|
// to enable full High DPI suppport, we need to opt in into Per-Monitor (V2) DPI awareness,
|
|
|
|
// see section Issues/MSW in programming guide High DPI Support in wxWidgets
|
|
|
|
#ifndef wxUSE_DPI_AWARE_MANIFEST
|
|
|
|
#define wxUSE_DPI_AWARE_MANIFEST 2
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// this file contains the standard icons, cursors etc. and also includes the application
|
|
|
|
// manifest mentioned above
|
|
|
|
#include "../wxWidgets/include/wx/msw/wx.rc"
|
|
|
|
|
|
|
|
|