本文整理汇总了C++中SingleWindow::Create方法的典型用法代码示例。如果您正苦于以下问题:C++ SingleWindow::Create方法的具体用法?C++ SingleWindow::Create怎么用?C++ SingleWindow::Create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SingleWindow
的用法示例。
在下文中一共展示了SingleWindow::Create方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: args
int WINAPI
WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
#ifdef _WIN32_WCE
LPWSTR lpCmdLine,
#else
LPSTR lpCmdLine2,
#endif
int nCmdShow)
#endif
{
#ifdef ENABLE_CMDLINE
#ifdef WIN32
Args args(GetCommandLine(), USAGE);
#else
Args args(argc, argv, USAGE);
#endif
ParseCommandLine(args);
args.ExpectEnd();
#endif
#if defined(ENABLE_RESOURCE_LOADER) && defined(USE_GDI)
ResourceLoader::Init(hInstance);
#endif
#ifdef ENABLE_SCREEN
ScreenGlobalInit screen_init;
Layout::Initialize(640, 480);
InitialiseFonts();
#endif
#ifdef ENABLE_DIALOG
dialog_settings.SetDefaults();
#endif
#ifdef ENABLE_LOOK
look = new Look();
look->Initialise(normal_font, bold_font, small_font);
{
UISettings ui_settings;
ui_settings.SetDefaults();
look->InitialiseConfigured(ui_settings,
normal_font, bold_font, small_font,
small_font, monospace_font,
normal_font, small_font,
#ifndef GNAV
small_font,
#endif
small_font);
}
dialog_look = &look->dialog;
#elif defined(ENABLE_DIALOG_LOOK)
dialog_look = new DialogLook();
dialog_look->Initialise(bold_font, normal_font, small_font,
bold_font, bold_font, bold_font);
#endif
#ifdef ENABLE_XML_DIALOG
SetXMLDialogLook(*dialog_look);
#endif
#ifdef ENABLE_DATA_PATH
InitialiseDataPath();
#endif
#ifdef ENABLE_PROFILE
Profile::SetFiles(_T(""));
Profile::Load();
#endif
#ifdef ENABLE_MAIN_WINDOW
main_window.Create(_T("Test"), {640, 480});
main_window.Show();
#endif
Main();
#ifdef ENABLE_MAIN_WINDOW
main_window.Destroy();
#endif
#ifdef ENABLE_DATA_PATH
DeinitialiseDataPath();
#endif
#ifdef ENABLE_LOOK
delete look;
#elif defined(ENABLE_DIALOG_LOOK)
delete dialog_look;
#endif
#ifdef ENABLE_SCREEN
DeinitialiseFonts();
#endif
return 0;
}