本文整理汇总了C++中SetTopWindow函数的典型用法代码示例。如果您正苦于以下问题:C++ SetTopWindow函数的具体用法?C++ SetTopWindow怎么用?C++ SetTopWindow使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了SetTopWindow函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: InitLanguageSupport
//.........这里部分代码省略.........
"Please upgrade to 10.7 or greater to use the newest Dolphin version.\n\n"
"Sayonara!\n");
return false;
}
#endif
// Copy initial Wii NAND data from Sys to User.
File::CopyDir(File::GetSysDirectory() + WII_USER_DIR DIR_SEP,
File::GetUserPath(D_WIIUSER_IDX));
File::CreateFullPath(File::GetUserPath(D_USER_IDX));
File::CreateFullPath(File::GetUserPath(D_CACHE_IDX));
File::CreateFullPath(File::GetUserPath(D_CONFIG_IDX));
File::CreateFullPath(File::GetUserPath(D_DUMPDSP_IDX));
File::CreateFullPath(File::GetUserPath(D_DUMPTEXTURES_IDX));
File::CreateFullPath(File::GetUserPath(D_GAMESETTINGS_IDX));
File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX));
File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX) + USA_DIR DIR_SEP);
File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX) + EUR_DIR DIR_SEP);
File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX) + JAP_DIR DIR_SEP);
File::CreateFullPath(File::GetUserPath(D_HIRESTEXTURES_IDX));
File::CreateFullPath(File::GetUserPath(D_MAILLOGS_IDX));
File::CreateFullPath(File::GetUserPath(D_MAPS_IDX));
File::CreateFullPath(File::GetUserPath(D_SCREENSHOTS_IDX));
File::CreateFullPath(File::GetUserPath(D_SHADERS_IDX));
File::CreateFullPath(File::GetUserPath(D_STATESAVES_IDX));
File::CreateFullPath(File::GetUserPath(D_THEMES_IDX));
LogManager::Init();
SConfig::Init();
VideoBackend::PopulateList();
WiimoteReal::LoadSettings();
if (selectVideoBackend && videoBackendName != wxEmptyString)
SConfig::GetInstance().m_LocalCoreStartupParameter.m_strVideoBackend =
WxStrToStr(videoBackendName);
if (selectAudioEmulation)
{
if (audioEmulationName == "HLE")
SConfig::GetInstance().m_LocalCoreStartupParameter.bDSPHLE = true;
else if (audioEmulationName == "LLE")
SConfig::GetInstance().m_LocalCoreStartupParameter.bDSPHLE = false;
}
VideoBackend::ActivateBackend(SConfig::GetInstance().m_LocalCoreStartupParameter.m_strVideoBackend);
// Enable the PNG image handler for screenshots
wxImage::AddHandler(new wxPNGHandler);
SetEnableAlert(SConfig::GetInstance().m_LocalCoreStartupParameter.bUsePanicHandlers);
int x = SConfig::GetInstance().m_LocalCoreStartupParameter.iPosX;
int y = SConfig::GetInstance().m_LocalCoreStartupParameter.iPosY;
int w = SConfig::GetInstance().m_LocalCoreStartupParameter.iWidth;
int h = SConfig::GetInstance().m_LocalCoreStartupParameter.iHeight;
#ifdef _WIN32
if (File::Exists("www.dolphin-emulator.com.txt"))
{
File::Delete("www.dolphin-emulator.com.txt");
MessageBox(nullptr,
L"This version of Dolphin was downloaded from a website stealing money from developers of the emulator. Please "
L"download Dolphin from the official website instead: http://dolphin-emu.org/",
L"Unofficial version detected", MB_OK | MB_ICONWARNING);
ShellExecute(nullptr, L"open", L"http://dolphin-emu.org/?ref=badver", nullptr, nullptr, SW_SHOWDEFAULT);
exit(0);
}
#endif
// The following is not needed with X11, where window managers
// do not allow windows to be created off the desktop.
#ifdef _WIN32
// Out of desktop check
int leftPos = GetSystemMetrics(SM_XVIRTUALSCREEN);
int topPos = GetSystemMetrics(SM_YVIRTUALSCREEN);
int width = GetSystemMetrics(SM_CXVIRTUALSCREEN);
int height = GetSystemMetrics(SM_CYVIRTUALSCREEN);
if ((leftPos + width) < (x + w) || leftPos > x || (topPos + height) < (y + h) || topPos > y)
x = y = wxDefaultCoord;
#elif defined __APPLE__
if (y < 1)
y = wxDefaultCoord;
#endif
main_frame = new CFrame((wxFrame*)nullptr, wxID_ANY,
StrToWxStr(scm_rev_str),
wxPoint(x, y), wxSize(w, h),
UseDebugger, BatchMode, UseLogger);
SetTopWindow(main_frame);
main_frame->SetMinSize(wxSize(400, 300));
// Postpone final actions until event handler is running.
// Updating the game list makes use of wxProgressDialog which may
// only be run after OnInit() when the event handler is running.
m_afterinit = new wxTimer(this, wxID_ANY);
m_afterinit->Start(1, wxTIMER_ONE_SHOT);
return true;
}
示例2: Bind
bool DolphinApp::OnInit()
{
if (!wxApp::OnInit())
return false;
Bind(wxEVT_QUERY_END_SESSION, &DolphinApp::OnEndSession, this);
Bind(wxEVT_END_SESSION, &DolphinApp::OnEndSession, this);
// Register message box and translation handlers
RegisterMsgAlertHandler(&wxMsgAlert);
RegisterStringTranslator(&wxStringTranslator);
#if wxUSE_ON_FATAL_EXCEPTION
wxHandleFatalExceptions(true);
#endif
UICommon::SetUserDirectory(m_user_path.ToStdString());
UICommon::CreateDirectories();
InitLanguageSupport(); // The language setting is loaded from the user directory
UICommon::Init();
if (m_select_video_backend && !m_video_backend_name.empty())
SConfig::GetInstance().m_strVideoBackend = WxStrToStr(m_video_backend_name);
if (m_select_audio_emulation)
SConfig::GetInstance().bDSPHLE = (m_audio_emulation_name.Upper() == "HLE");
VideoBackend::ActivateBackend(SConfig::GetInstance().m_strVideoBackend);
// Enable the PNG image handler for screenshots
wxImage::AddHandler(new wxPNGHandler);
int x = SConfig::GetInstance().iPosX;
int y = SConfig::GetInstance().iPosY;
int w = SConfig::GetInstance().iWidth;
int h = SConfig::GetInstance().iHeight;
// The following is not needed with X11, where window managers
// do not allow windows to be created off the desktop.
#ifdef _WIN32
// Out of desktop check
int leftPos = GetSystemMetrics(SM_XVIRTUALSCREEN);
int topPos = GetSystemMetrics(SM_YVIRTUALSCREEN);
int width = GetSystemMetrics(SM_CXVIRTUALSCREEN);
int height = GetSystemMetrics(SM_CYVIRTUALSCREEN);
if ((leftPos + width) < (x + w) || leftPos > x || (topPos + height) < (y + h) || topPos > y)
x = y = wxDefaultCoord;
#elif defined __APPLE__
if (y < 1)
y = wxDefaultCoord;
#endif
main_frame = new CFrame(nullptr, wxID_ANY,
StrToWxStr(scm_rev_str),
wxPoint(x, y), wxSize(w, h),
m_use_debugger, m_batch_mode, m_use_logger);
SetTopWindow(main_frame);
main_frame->SetMinSize(wxSize(400, 300));
AfterInit();
return true;
}
示例3: Bind
//.........这里部分代码省略.........
selectVideoBackend = parser.Found("video_backend", &videoBackendName);
selectAudioEmulation = parser.Found("audio_emulation", &audioEmulationName);
playMovie = parser.Found("movie", &movieFile);
if (parser.Found("user", &userPath))
{
File::CreateFullPath(WxStrToStr(userPath) + DIR_SEP);
File::GetUserPath(D_USER_IDX, userPath.ToStdString() + DIR_SEP);
}
#endif // wxUSE_CMDLINE_PARSER
// Register message box and translation handlers
RegisterMsgAlertHandler(&wxMsgAlert);
RegisterStringTranslator(&wxStringTranslator);
// "ExtendedTrace" looks freakin' dangerous!!!
#ifdef _WIN32
EXTENDEDTRACEINITIALIZE(".");
SetUnhandledExceptionFilter(&MyUnhandledExceptionFilter);
#elif wxUSE_ON_FATAL_EXCEPTION
wxHandleFatalExceptions(true);
#endif
#ifdef __APPLE__
if (floor(NSAppKitVersionNumber) < NSAppKitVersionNumber10_7)
{
PanicAlertT("Hi,\n\nDolphin requires Mac OS X 10.7 or greater.\n"
"Unfortunately you're running an old version of OS X.\n"
"The last Dolphin version to support OS X 10.6 is Dolphin 3.5\n"
"Please upgrade to 10.7 or greater to use the newest Dolphin version.\n\n"
"Sayonara!\n");
return false;
}
#endif
UICommon::CreateDirectories();
UICommon::Init();
if (selectVideoBackend && videoBackendName != wxEmptyString)
SConfig::GetInstance().m_LocalCoreStartupParameter.m_strVideoBackend =
WxStrToStr(videoBackendName);
if (selectAudioEmulation)
{
if (audioEmulationName == "HLE")
SConfig::GetInstance().m_LocalCoreStartupParameter.bDSPHLE = true;
else if (audioEmulationName == "LLE")
SConfig::GetInstance().m_LocalCoreStartupParameter.bDSPHLE = false;
}
VideoBackend::ActivateBackend(SConfig::GetInstance().m_LocalCoreStartupParameter.m_strVideoBackend);
// Enable the PNG image handler for screenshots
wxImage::AddHandler(new wxPNGHandler);
int x = SConfig::GetInstance().m_LocalCoreStartupParameter.iPosX;
int y = SConfig::GetInstance().m_LocalCoreStartupParameter.iPosY;
int w = SConfig::GetInstance().m_LocalCoreStartupParameter.iWidth;
int h = SConfig::GetInstance().m_LocalCoreStartupParameter.iHeight;
if (File::Exists("www.dolphin-emulator.com.txt"))
{
File::Delete("www.dolphin-emulator.com.txt");
wxMessageDialog dlg(nullptr, _(
"This version of Dolphin was downloaded from a website stealing money from developers of the emulator. Please "
"download Dolphin from the official website instead: https://dolphin-emu.org/"),
_("Unofficial version detected"), wxOK | wxICON_WARNING);
dlg.ShowModal();
wxLaunchDefaultBrowser("https://dolphin-emu.org/?ref=badver");
exit(0);
}
// The following is not needed with X11, where window managers
// do not allow windows to be created off the desktop.
#ifdef _WIN32
// Out of desktop check
int leftPos = GetSystemMetrics(SM_XVIRTUALSCREEN);
int topPos = GetSystemMetrics(SM_YVIRTUALSCREEN);
int width = GetSystemMetrics(SM_CXVIRTUALSCREEN);
int height = GetSystemMetrics(SM_CYVIRTUALSCREEN);
if ((leftPos + width) < (x + w) || leftPos > x || (topPos + height) < (y + h) || topPos > y)
x = y = wxDefaultCoord;
#elif defined __APPLE__
if (y < 1)
y = wxDefaultCoord;
#endif
main_frame = new CFrame(nullptr, wxID_ANY,
StrToWxStr(scm_rev_str),
wxPoint(x, y), wxSize(w, h),
UseDebugger, BatchMode, UseLogger);
SetTopWindow(main_frame);
main_frame->SetMinSize(wxSize(400, 300));
AfterInit();
return true;
}
示例4: wxHandleFatalExceptions
//.........这里部分代码省略.........
sData += arrParams[i];
sData += wxT("\n");
}
#if wxUSE_UNICODE
pConn->Poke(wxT("PlayFiles"),sData.GetWriteBuf(sData.Length()),sData.Length()*sizeof(wxChar),wxIPC_UNICODETEXT);
#else
pConn->Poke(wxT("PlayFiles"),sData.GetWriteBuf(sData.Length()),sData.Length(),wxIPC_TEXT);
#endif
}
pConn->Poke(wxT("RaiseFrame"),NULL,0,wxIPC_PRIVATE);
return false;
}
}
wxImage::AddHandler(new wxPNGHandler);
wxImage::AddHandler(new wxJPEGHandler);
wxImage::AddHandler( new wxXPMHandler );
wxImage::AddHandler( new wxBMPHandler );
wxImage::AddHandler( new wxGIFHandler );
//--- setup our home dir ---//
if ( !wxDirExists( MUSIK_HOME_DIR ) )
wxMkdir( MUSIK_HOME_DIR );
//-----------------------------------------//
//--- check to see if a new version has ---//
//--- been installed. if it has, see ---//
//--- if any core changes need to be ---//
//--- made. ---//
//-----------------------------------------//
CheckOldVersion();
//--- assure playlists directory exists ---//
if ( !wxDirExists( MUSIK_PLAYLIST_DIR ) )
wxMkdir( MUSIK_PLAYLIST_DIR );
//--- load library and paths ---//
if(!wxGetApp().Library.Load())
{
wxMessageBox( _("Initialization of library failed."), MUSIKAPPNAME_VERSION, wxOK | wxICON_ERROR );
return FALSE;
}
g_Paths.Load();
Player.Init(arrParams.GetCount() > 0);
//-------------------//
//--- main window ---//
//-------------------//
MusikFrame *pMain = new MusikFrame();
//--- restore placement or use defaults ---//
if ( !SetFramePlacement( pMain, wxGetApp().Prefs.sFramePlacement ) )
{
wxSize Size(
wxSystemSettings::GetMetric( wxSYS_SCREEN_X ) * 75 / 100,
wxSystemSettings::GetMetric( wxSYS_SCREEN_Y ) * 75 / 100 );
pMain->SetSize( Size );
pMain->Center();
}
new MusikLogWindow(pMain,wxString::Format(_("%s Logging Window"),MUSIKAPPNAME),MUSIK_LW_ClearContentOnClose|MUSIK_LW_ShowOnLog);
wxLog::SetVerbose(Prefs.bLogVerbose);
SetTopWindow( pMain );
//--- start webserver if necessary ---//
if ( Prefs.bWebServerEnable )
WebServer.Start(wxGetApp().Prefs.nWebServerPort);
//--- autostart stuff ---//
if ( Prefs.bFirstRun )
{
wxCommandEvent dummy_ev;
pMain->OnSetupPaths(dummy_ev);
}
else if (Prefs.bAutoAdd || arrParams.GetCount() > 0)
{
if(Prefs.bAutoAdd)
pMain->AutoUpdate();
if(arrParams.GetCount() > 0)
pMain->AutoUpdate(arrParams,MUSIK_UpdateFlags::InsertFilesIntoPlayer|MUSIK_UpdateFlags::PlayFiles);
}
if (Prefs.bShowLibraryOnStart)
g_SourcesCtrl->SelectLibrary();
else
g_SourcesCtrl->SelectNowPlaying();
g_PlaylistBox->Update();
pMain->Show();
m_pServer = new MusikAppServer;
if(m_pServer)
m_pServer->Create(MUSIK_APP_SERVICE);
return TRUE;
}
示例5: SetVendorName
bool CTimeServerApp::OnInit()
{
SetVendorName(VENDOR_NAME);
if (!wxApp::OnInit())
return false;
if (!m_nolog) {
wxString logBaseName = LOG_BASE_NAME;
if (!m_name.IsEmpty()) {
logBaseName.Append(wxT("_"));
logBaseName.Append(m_name);
}
#if defined(__WINDOWS__)
if (m_logDir.IsEmpty())
m_logDir = wxFileName::GetHomeDir();
#else
if (m_logDir.IsEmpty())
m_logDir = LOG_DIR;
#endif
wxLog* log = new CLogger(m_logDir, logBaseName);
wxLog::SetActiveTarget(log);
} else {
new wxLogNull;
}
m_logChain = new wxLogChain(new CTimeServerLogRedirect);
#if defined(__WINDOWS__)
m_config = new CTimeServerConfig(new wxConfig(APPLICATION_NAME), m_name);
#else
if (m_confDir.IsEmpty())
m_confDir = CONF_DIR;
m_config = new CTimeServerConfig(m_confDir, m_name);
#endif
wxString frameName = APPLICATION_NAME + wxT(" - ");
if (!m_name.IsEmpty()) {
frameName.Append(m_name);
frameName.Append(wxT(" - "));
}
frameName.Append(VERSION);
wxPoint position = wxDefaultPosition;
int x, y;
getPosition(x, y);
if (x >= 0 && y >= 0)
position = wxPoint(x, y);
m_frame = new CTimeServerFrame(frameName, position, m_gui);
m_frame->Show();
SetTopWindow(m_frame);
wxLogInfo(wxT("Starting ") + APPLICATION_NAME + wxT(" - ") + VERSION);
// Log the SVN revsion and the version of wxWidgets and the Operating System
wxLogInfo(SVNREV);
wxLogInfo(wxT("Using wxWidgets %d.%d.%d on %s"), wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER, ::wxGetOsDescription().c_str());
createThread();
return true;
}
示例6: SetVendorName
bool CDStarRepeaterApp::OnInit()
{
SetVendorName(VENDOR_NAME);
if (!wxApp::OnInit())
return false;
if (!m_nolog) {
wxString logBaseName = LOG_BASE_NAME;
if (!m_name.IsEmpty()) {
logBaseName.Append(wxT("_"));
logBaseName.Append(m_name);
}
#if defined(__WINDOWS__)
if (m_logDir.IsEmpty())
m_logDir = ::wxGetHomeDir();
#else
if (m_logDir.IsEmpty())
m_logDir = wxT(LOG_DIR);
#endif
wxLog* log = new CLogger(m_logDir, logBaseName);
wxLog::SetActiveTarget(log);
} else {
new wxLogNull;
}
m_logChain = new wxLogChain(new CDStarRepeaterLogger);
wxString appName;
if (!m_name.IsEmpty())
appName = APPLICATION_NAME + wxT(" ") + m_name;
else
appName = APPLICATION_NAME;
#if !defined(__WINDOWS__)
appName.Replace(wxT(" "), wxT("_"));
m_checker = new wxSingleInstanceChecker(appName, wxT("/tmp"));
#else
m_checker = new wxSingleInstanceChecker(appName);
#endif
bool ret = m_checker->IsAnotherRunning();
if (ret) {
wxLogError(wxT("Another copy of the D-Star Repeater is running, exiting"));
return false;
}
#if defined(__WINDOWS__)
if (m_confDir.IsEmpty())
m_confDir = ::wxGetHomeDir();
m_config = new CDStarRepeaterConfig(new wxConfig(APPLICATION_NAME), m_confDir, CONFIG_FILE_NAME, m_name);
#else
if (m_confDir.IsEmpty())
m_confDir = wxT(CONF_DIR);
m_config = new CDStarRepeaterConfig(m_confDir, CONFIG_FILE_NAME, m_name);
#endif
wxString type;
m_config->getModem(type);
wxString frameName = APPLICATION_NAME + wxT(" (") + type + wxT(") - ");
if (!m_name.IsEmpty()) {
frameName.Append(m_name);
frameName.Append(wxT(" - "));
}
frameName.Append(VERSION);
wxPoint position = wxDefaultPosition;
int x, y;
m_config->getPosition(x, y);
if (x >= 0 && y >= 0)
position = wxPoint(x, y);
m_frame = new CDStarRepeaterFrame(frameName, type, position, m_gui);
m_frame->Show();
SetTopWindow(m_frame);
wxLogInfo(wxT("Starting ") + APPLICATION_NAME + wxT(" - ") + VERSION);
// Log the version of wxWidgets and the Operating System
wxLogInfo(wxT("Using wxWidgets %d.%d.%d on %s"), wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER, ::wxGetOsDescription().c_str());
createThread();
return true;
}
示例7: SetVendorName
bool CTimerControlApp::OnInit()
{
SetVendorName(VENDOR_NAME);
if (!wxApp::OnInit())
return false;
if (!m_nolog) {
wxString logBaseName = LOG_BASE_NAME;
if (!m_name.IsEmpty()) {
logBaseName.Append(wxT("_"));
logBaseName.Append(m_name);
}
if (m_logDir.IsEmpty())
m_logDir = wxFileName::GetHomeDir();
wxLog* log = new CLogger(m_logDir, logBaseName);
wxLog::SetActiveTarget(log);
} else {
new wxLogNull;
}
#if defined(__WINDOWS__)
m_config = new CTimerControlConfig(new wxConfig(APPLICATION_NAME), m_name);
#else
if (m_confDir.IsEmpty())
m_confDir = CONF_DIR;
m_config = new CTimerControlConfig(m_confDir, m_name);
#endif
wxString frameName = APPLICATION_NAME + wxT(" - ");
if (!m_name.IsEmpty()) {
frameName.Append(m_name);
frameName.Append(wxT(" - "));
}
frameName.Append(VERSION);
if (!m_name.IsEmpty()) {
wxString fileBase = SCHEDULE_BASE_NAME;
fileBase.Append(wxT("_"));
fileBase.Append(m_name);
fileBase.Replace(wxT(" "), wxT("_"));
wxString dir = m_confDir;
if (dir.IsEmpty())
dir = wxFileName::GetHomeDir();
wxFileName fileName(dir, fileBase, wxT("dat"));
m_fileName = fileName.GetFullPath();
} else {
wxString dir = m_confDir;
if (dir.IsEmpty())
dir = wxFileName::GetHomeDir();
wxFileName fileName(dir, SCHEDULE_BASE_NAME, wxT("dat"));
m_fileName = fileName.GetFullPath();
}
wxPoint position = wxDefaultPosition;
int x, y;
getPosition(x, y);
if (x >= 0 && y >= 0)
position = wxPoint(x, y);
bool delay;
getDelay(delay);
m_frame = new CTimerControlFrame(frameName, position, delay);
m_frame->Show();
SetTopWindow(m_frame);
wxLogInfo(wxT("Starting ") + APPLICATION_NAME + wxT(" - ") + VERSION);
// Log the SVN revsion and the version of wxWidgets and the Operating System
wxLogInfo(SVNREV);
wxLogInfo(wxT("Using wxWidgets %d.%d.%d on %s"), wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER, ::wxGetOsDescription().c_str());
createThread();
return wxApp::OnInit();
}
示例8: SetAppName
bool MyApp::OnInit( void )
{
try
{
SetAppName( APP_NAME );
SetVendorName( APP_VENDOR );
respath = wxFindAppPath( argv[0], wxGetCwd(), _T("FNPATH"), _T("fn") );
#ifdef __WXMSW__
if (respath.Last() != '\\') respath += '\\';
shaderPath = respath + _T("GLSL\\");
iconsPath = respath + _T("icons\\");
int fd;
FILE *fp;
AllocConsole();
fd = _open_osfhandle( (long)GetStdHandle( STD_OUTPUT_HANDLE ), 0);
fp = _fdopen( fd, "w" );
*stdout = *fp;
setvbuf( stdout, NULL, _IONBF, 0 );
// TODO fix may not work.
#elif __WXMAC__
// If we use the above code to get the same on OSX, I get a segfault somewhere
// therefore I use the OSX native code here:
// OSX only: Try to find the resource path...
CFBundleRef mainBundle = CFBundleGetMainBundle();
CFURLRef resourcesURL = CFBundleCopyBundleURL( mainBundle );
CFStringRef str = CFURLCopyFileSystemPath( resourcesURL, kCFURLPOSIXPathStyle );
CFRelease( resourcesURL );
char path[ PATH_MAX ];
CFStringGetCString( str, path, FILENAME_MAX, kCFStringEncodingASCII );
CFRelease( str );
fprintf( stderr, "%s", path );
respath = wxString::FromAscii( path );
respath += _T( "/Contents/Resources/" );
shaderPath = respath + _T( "GLSL/" );
iconsPath = respath + _T( "icons/" );
std::cout << std::endl << iconsPath << std::endl;
#else
if ( respath.Last() != '/' )
respath += '/';
shaderPath = respath + _T("GLSL/");
iconsPath = respath + _T("icons/");
#endif
Logger::getInstance()->print( wxT( "Warning: This version of Fibernavigator is debug compiled." ), LOGLEVEL_DEBUG );
Logger::getInstance()->print( wxT( "For better performance please compile a Release version."), LOGLEVEL_DEBUG );
Logger::getInstance()->print( wxString::Format( wxT( "respath: %s" ), respath.c_str() ), LOGLEVEL_DEBUG );
Logger::getInstance()->print( wxString::Format( wxT( "shader: %s" ), shaderPath.c_str() ), LOGLEVEL_DEBUG );
// Create the main frame window
frame = new MainFrame( wxT("Fiber Navigator"), wxPoint( 50, 50 ), wxSize( 800, 600 ) );
SceneManager::getInstance()->setMainFrame( frame );
SceneManager::getInstance()->setTreeCtrl( frame->m_pTreeWidget );
#ifdef __WXMSW__
// Give it an icon (this is ignored in MDI mode: uses resources)
frame->SetIcon( wxIcon( _T( "sashtest_icn" ) ) );
#endif
frame->SetMinSize( wxSize( 800, 600 ) );
frame->SetSize( wxSize( 1024, 768 ) );
frame->Show( true );
SetTopWindow( frame );
wxString cmd;
wxString cmdFileName;
wxCmdLineParser cmdParser( desc, argc, argv );
cmdParser.Parse( false );
if ( cmdParser.GetParamCount() > 0 )
{
Loader loader = Loader(frame, frame->m_pListCtrl );
for ( size_t i = 0; i < cmdParser.GetParamCount(); ++i )
{
cmd = cmdParser.GetParam( i );
wxFileName fName( cmd );
fName.Normalize( wxPATH_NORM_LONG | wxPATH_NORM_DOTS | wxPATH_NORM_TILDE | wxPATH_NORM_ABSOLUTE );
cmdFileName = fName.GetFullPath();
if ( cmdParser.Found(_T("d")) && ( i == 0 ) )
{
loader( cmdFileName );
frame->createDistanceMapAndIso();
}
else if ( cmdParser.Found( _T( "p" ) ) && ( i == cmdParser.GetParamCount() -1 ) )
{
frame->screenshot( wxT( "" ), cmdFileName );
}
//.........这里部分代码省略.........
示例9: fprintf
bool MyApp::OnInit()
{
int i, j;
unsigned int *sdimp;
int longdim;
/* debug */
if (G_verbose() > G_verbose_std()) {
for (i = 0; i < numviews; i++) {
fprintf(stderr, "\nVIEW %d: ", i + 1);
for (j = 0; j < frames; j++) {
fprintf(stderr, "%s ", vfiles[i][j]);
}
}
}
fprintf(stderr, "\n");
vrows = Rast_window_rows();
vcols = Rast_window_cols();
nrows = vrows;
ncols = vcols;
/* short dimension */
sdimp = nrows > ncols ? &ncols : &nrows;
/* these proportions should work fine for 1 or 4 views, but for
2 views, want to double the narrow dim & for 3 views triple it */
if (numviews == 2)
*sdimp *= 2;
else if (numviews == 3)
*sdimp *= 3;
longdim = nrows > ncols ? nrows : ncols;
scale = 1.0;
{ /* find animation image size */
int max, min;
char *p;
max = DEF_MAX;
min = DEF_MIN;
if ((p = getenv("XGANIM_SIZE")))
max = min = atoi(p);
if (longdim > max) /* scale down */
scale = (float)max / longdim;
else if (longdim < min) /* scale up */
scale = (float)min / longdim;
}
vscale = scale;
if (numviews == 4)
vscale = scale / 2.;
nrows = (unsigned int) (nrows * scale);
ncols = (unsigned int) (ncols * scale);
/* now nrows & ncols are the size of the combined - views image */
vrows = (int) (vrows * vscale);
vcols = (int) (vcols * vscale);
/* now vrows & vcols are the size for each sub-image */
/* add to nrows & ncols for borders */
/* irows, icols used for vert/horizontal determination in loop below */
irows = nrows;
icols = ncols;
nrows += (1 + (nrows / vrows)) * BORDER_W;
ncols += (1 + (ncols / vcols)) * BORDER_W;
gd.speed = 100;
gd.direction = 1;
gd.shownames = 1;
mainwin = new MyFrame(wxString("GRASS Animate", wxConvISO8859_1), ncols, nrows, &gd);
mainwin->Show();
SetTopWindow(mainwin);
for (j = 0; j < MAXIMAGES; j++)
sprintf(frame[j], "%2d", j + 1);
return true;
}
示例10: filename
//.........这里部分代码省略.........
lang=g_LanguageValue[idx];
break;
}
}
}
wxm::AppPath& path = wxm::AppPath::Instance();
g_Locale.Init(lang);
g_Locale.AddCatalogLookupPathPrefix(wxT("./locale/"));
g_Locale.AddCatalogLookupPathPrefix(path.AppDir() + wxT("locale/"));
if (path.AppDir() != path.HomeDir())
g_Locale.AddCatalogLookupPathPrefix(path.HomeDir() + wxT("locale/"));
#ifndef __WXMSW__
# ifdef DATA_DIR
g_Locale.AddCatalogLookupPathPrefix(wxT(DATA_DIR"/locale/"));
# endif
#endif
g_Locale.AddCatalog(wxT("wxmedit"));
// set colors
wxm::SetL10nHtmlColors();
wxm::UpdatePeriods::Instance().Initialize();
#if defined(__WXMSW__) || defined(__WXGTK__)
bool maximize=false;
cfg->Read(wxT("/wxMEdit/WindowMaximize"), &maximize, false);
#endif
wxPoint pos=wxDefaultPosition;
wxSize size;
wxRect rect = wxGetClientDisplayRect(); // FIXME: multi-monitor
size.x = std::min(rect.width, wxm::DEFAULT_WINDOW_WIDTH);
size.y = std::min(rect.height, wxm::DEFAULT_WINDOW_HEIGHT);
long x=0,y=0,w=0,h=0;
cfg->Read(wxT("/wxMEdit/WindowLeft"), &x);
cfg->Read(wxT("/wxMEdit/WindowTop"), &y);
cfg->Read(wxT("/wxMEdit/WindowWidth"), &w);
cfg->Read(wxT("/wxMEdit/WindowHeight"), &h);
if(x+w>0 && y+h>0)
//if(w>0 && h>0)
{
size.x=w;
size.y=h;
pos.x=x;
pos.y=y;
}
// load FontWidth buffers
cfg->Read(wxT("/wxMEdit/FontWidthBufferMaxCount"), &FontWidthManager::MaxCount, 10);
if(FontWidthManager::MaxCount < 4) FontWidthManager::MaxCount=4;
else if(FontWidthManager::MaxCount>40) FontWidthManager::MaxCount=40;
FontWidthManager::Init(wxm::AppPath::Instance().HomeDir());
// create the main frame
MadEditFrame *myFrame = new MadEditFrame(nullptr, 1 , wxEmptyString, pos, size);
SetTopWindow(myFrame);
#if defined(__WXMSW__) || defined(__WXGTK__)
if (maximize)
myFrame->Maximize(true);
#endif
myFrame->Show(true);
#if defined(__WXGTK__) && wxMAJOR_VERSION == 2
if(bSingleInstance)
{
GtkPizza *pizza = GTK_PIZZA(myFrame->m_mainWidget);
Window win=GDK_WINDOW_XWINDOW(pizza->bin_window);
XSetSelectionOwner(g_Display, g_MadEdit_atom, win, CurrentTime);
gdk_window_add_filter(nullptr, my_gdk_filter, nullptr);
}
#endif
wxm::AutoCheckUpdates(cfg);
// reload files previously opened
wxString files;
cfg->Read(wxT("/wxMEdit/ReloadFilesList"), &files);
files += filelist.String();
if(!files.IsEmpty())
{
// use OnReceiveMessage() to open the files
OnReceiveMessage(files.c_str(), (files.size()+1)*sizeof(wxChar));
}
if(myFrame->OpenedFileCount()==0)
{
myFrame->OpenFile(wxEmptyString, false);
}
return true;
}
示例11: OnInit
virtual bool OnInit()
{
SetAppName("codelite-terminal");
wxFileName configDir(wxStandardPaths::Get().GetUserDataDir(), "");
configDir.Mkdir(wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL);
m_persistency = new MyPersistenceManager();
wxPersistenceManager::Set(*m_persistency);
wxTerminalOptions& m_options = wxTerminalOptions::Get();
// m_persistencManager = new clPersistenceManager();
// wxPersistenceManager::Set(*m_persistencManager);
#ifdef __WXMSW__
typedef BOOL WINAPI (*SetProcessDPIAwareFunc)();
HINSTANCE user32Dll = LoadLibrary(L"User32.dll");
if(user32Dll) {
SetProcessDPIAwareFunc pFunc = (SetProcessDPIAwareFunc)GetProcAddress(user32Dll, "SetProcessDPIAware");
if(pFunc) { pFunc(); }
FreeLibrary(user32Dll);
}
#endif
wxCmdLineParser parser(wxApp::argc, wxApp::argv);
parser.SetDesc(cmdLineDesc);
const wxArrayString& argv = wxApp::argv.GetArguments();
for(const wxString& arg : argv) {
if(arg.StartsWith("--wait")) {
m_options.SetWaitOnExit(true);
} else if(arg.StartsWith("--help")) {
// Print usage and exit
std::cout << parser.GetUsageString() << std::endl;
wxExit();
} else if(arg.StartsWith("--title")) {
wxString title = arg.AfterFirst('=');
m_options.SetTitle(title);
} else if(arg.StartsWith("--print-tty")) {
m_options.SetPrintTTY(true);
wxString ttyfile = arg.AfterFirst('=');
m_options.SetTtyfile(ttyfile);
} else if(arg.StartsWith("--working-directory")) {
wxString wd = arg.AfterFirst('=');
m_options.SetWorkingDirectory(wd);
} else if(arg.StartsWith("--command")) {
wxString cmd = arg.AfterFirst('=');
m_options.SetCommand(cmd);
} else if(arg.StartsWith("--file")) {
wxString cmdfile = arg.AfterFirst('=');
m_options.SetCommandFromFile(cmdfile);
} else if(arg.StartsWith("--log")) {
wxString logfile = arg.AfterFirst('=');
m_options.SetLogfile(logfile);
}
}
// Add the common image handlers
wxImage::AddHandler(new wxPNGHandler);
wxImage::AddHandler(new wxJPEGHandler);
MainFrame* mainFrame = new MainFrame(NULL);
SetTopWindow(mainFrame);
return GetTopWindow()->Show();
}
示例12: wxSetEnv
//.........这里部分代码省略.........
wxInitAllImageHandlers();
wxFileSystem::AddHandler(new wxZipFSHandler);
wxSocketBase::Initialize();
#ifdef __WXMSW__
wxString path = wxPathOnly( wxStandardPaths::Get().GetExecutablePath() ) + wxFileName::GetPathSeparator() + _T("locale");
#else
#if defined(LOCALE_INSTALL_DIR)
wxString path ( _T(LOCALE_INSTALL_DIR) );
#else
// use a dummy name here, we're only interested in the base path
wxString path = wxStandardPaths::Get().GetLocalizedResourcesDir(_T("noneWH"),wxStandardPaths::ResourceCat_Messages);
path = path.Left( path.First(_T("noneWH") ) );
#endif
#endif
m_translationhelper = new wxTranslationHelper( *( (wxApp*)this ), path );
m_translationhelper->Load();
if ( !wxDirExists( GetConfigfileDir() ) )
wxMkdir( GetConfigfileDir() );
#ifdef __WXMSW__
sett().SetSearchSpringOnlyInSLPath( sett().GetSearchSpringOnlyInSLPath() );
#endif
sett().SetSpringBinary( sett().GetCurrentUsedSpringIndex(), sett().GetCurrentUsedSpringBinary() );
sett().SetUnitSync( sett().GetCurrentUsedSpringIndex(), sett().GetCurrentUsedUnitSync() );
if ( sett().DoResetPerspectives() )
{
//we do this early on and reset the config var a little later so we can save a def. perps once mw is created
sett().RemoveLayouts();
sett().SetDoResetPerspectives( false );
ui().mw().SavePerspectives( _T("SpringLobby-default") );
}
sett().RefreshSpringVersionList();
//this should take off the firstload time considerably *ie nil it :P )
mapSelectDialog();
if ( !m_customizer_archive_name.IsEmpty() )
{//this needsto happen before usync load
sett().SetForcedSpringConfigFilePath( GetCustomizedEngineConfigFilePath() );
}
//unitsync first load, NEEDS to be blocking
const bool usync_loaded = usync().ReloadUnitSyncLib();
if ( !sett().IsFirstRun() && !usync_loaded )
{
customMessageBox( SL_MAIN_ICON, _("Please check that the file given in Preferences->Spring is a proper, readable unitsync library"),
_("Coulnd't load required unitsync library"), wxOK );
}
#ifndef DISABLE_SOUND
//sound sources/buffer init
sound();
#endif
CacheAndSettingsSetup();
if ( !m_customizer_archive_name.IsEmpty() ) {
if ( SLcustomizations().Init( m_customizer_archive_name ) ) {
ui().mw().SetIcons( SLcustomizations().GetAppIconBundle() );
}
else {
customMessageBox( SL_MAIN_ICON, _("Couldn't load customizations for ") + m_customizer_archive_name + _("\nPlease check that that is the correct name, passed in qoutation"), _("Fatal error"), wxOK );
// wxLogError( _("Couldn't load customizations for ") + m_customizer_archive_name + _("\nPlease check that that is the correct name, passed in qoutation"), _("Fatal error") );
exit( OnExit() );//for some twisted reason returning false here does not terminate the app
}
}
notificationManager(); //needs to be initialized too
ui().ShowMainWindow();
SetTopWindow( &ui().mw() );
if ( sett().DoResetPerspectives() )
{
//now that mainwindow is shown, we can save what is the default layout and remove the flag to reset
sett().SetDoResetPerspectives( false );
ui().mw().SavePerspectives( _T("SpringLobby-default") );
}
//interim fix for resize crashes on metacity and kwin
#ifdef __WXMSW__
mapSelectDialog().Reparent( &ui().mw() );
#endif
ui().FirstRunWelcome();
m_timer->Start( TIMER_INTERVAL );
ui().mw().SetLogWin( loggerwin, logchain );
#ifndef NO_TORRENT_SYSTEM
plasmaInterface();
// plasmaInterface().InitResourceList();
// plasmaInterface().FetchResourceList();
#endif
return true;
}
示例13: wxLogDebug
bool MyPicsApp::OnInit()
{
wxImage::AddHandler( new wxJPEGHandler );
wxImage::AddHandler( new wxICOHandler );
// extract the applications resources to files, so we can use them.
// we could have just put all
// the resources in the .zip file, but then how would i have
// demostrated the other ExtractXXX functions? :)
// extract all resources of same type (in this case imagess
// pecified as type "image" in the .rc file),in one call,
// u can specify any type you want, but if you
// use a number, make shure its an unsigned int OVER 255.
// Also note that the exCount param passed here is optional.
int exCount=0;
bool resOk = m_Resources.ExtractResources(wxT("image"), &exCount);
if(resOk)
{
wxLogDebug(wxT("%d files extracted to %s using ExtractResources()"),
exCount, m_Resources.GetResourceDir());
}
// extract a single resource file "wxmswres.h" of type "txtfile"
// note that the resource name sould be the same in the .rc file
// as the desired extracted file name INCLUDING EXTENSION, same
// goes for ExtractResources()
resOk = resOk && m_Resources.ExtractResource(wxT("wxmswres.h"),
wxT("txtfile"));
if(resOk)
{
wxLogDebug(wxT("resource file wxmswres.h extracted to %s using ExtractResource()"),
m_Resources.GetResourceDir());
}
// extract resources contained in a zip file, in this case, the .mo
// catalog files, compressed to reduce .exe size
exCount=0;
resOk = resOk && m_Resources.ExtractZipResources(wxT("langcats"),
wxT("zipfile"), &exCount);
if(resOk)
{
wxLogDebug(wxT("%d files extracted to %s using ExtractZipResources()"),
exCount, m_Resources.GetResourceDir());
}
// if the ExtractXXX functions returned true, the resources were
// extracted successfully, but still you can check if some
// resource is actually there using this function
if(m_Resources.RcExtracted(wxT("wx_es.mo")))
wxLogDebug(wxT("guess what??, wx_ex.mo was extracted successfully"));
if(!resOk)
{
// oops! something went wrong, we better quit here
wxMessageBox(_("Failed to extract the app´s resources.\nTerminating app..."),
_("Fatal Error"), wxOK | wxCENTRE | wxICON_ERROR);
return false;
}
// ask user for application language
DlgLang dlg(NULL);
wxString langName = dlg.GetSelLanguage();
// now set the locale & load the app & standar wxWidgets catalogs
// (previously extracted), but only if selected language was spanish,
// since wxWidgets & strings in source code are in english
// set lookup path to our resource dir first!! , or wxLocale
// will NOT find the catalogs & fail!
m_Locale.AddCatalogLookupPathPrefix(m_Resources.GetResourceDir());
bool iInitOk = false; bool cInitOk = false;
int langId = langName==_("Spanish") ?
wxLANGUAGE_SPANISH_MODERN : wxLANGUAGE_ENGLISH_US;
iInitOk= m_Locale.Init(langId, wxLOCALE_CONV_ENCODING);
if(!iInitOk)
wxLogDebug(wxT("Failed to initialize locale!"));
if(iInitOk && langId == wxLANGUAGE_SPANISH_MODERN)
{
cInitOk = m_Locale.AddCatalog(wxT("wx_es"));
cInitOk = cInitOk && m_Locale.AddCatalog(wxT("mypics_es"));
}
if(!cInitOk)
wxLogDebug(wxT("Failed to load one or more catalogs!"));
// create the app´s main window (go look at MyFrame´s creation code)
MyFrame* pFrame = new MyFrame(NULL);
pFrame->Maximize();
pFrame->Show();
SetTopWindow(pFrame);
return true;
}
示例14: InitEDA_Appl
bool WinEDA_App::OnInit(void)
/****************************/
{
wxString FFileName;
EDA_Appl = this;
InitEDA_Appl( wxT("pcbnew") );
if ( m_Checker && m_Checker->IsAnotherRunning() )
{
if ( ! IsOK(NULL, _("Pcbnew is already running, Continue?") ) )
return false;
}
/* Add image handlers for screen hardcopy */
wxImage::AddHandler( new wxPNGHandler );
wxImage::AddHandler( new wxJPEGHandler );
ScreenPcb = new PCB_SCREEN(NULL, NULL, PCB_FRAME);
GetSettings();
if(argc > 1)
{
FFileName = MakeFileName(wxEmptyString, argv[1], PcbExtBuffer);
wxSetWorkingDirectory( wxPathOnly(FFileName) );
}
Read_Config(FFileName);
g_DrawBgColor = BLACK;
/* allocation de la memoire pour le fichier et autres buffers: */
/* On reserve BUFMEMSIZE octets de ram pour calcul */
buf_work = adr_lowmem = (char*)MyZMalloc(BUFMEMSIZE) ; /* adresse de la zone de calcul */
adr_himem = adr_lowmem + BUFMEMSIZE; /* adr limite haute */
adr_max = adr_lowmem;
if( adr_lowmem == NULL )
{
printf( "No Memory, Fatal err Memory alloc\n" );
return(FALSE) ;
}
m_PcbFrame = new WinEDA_PcbFrame(NULL, this, wxT("PcbNew"),
wxPoint(0,0), wxSize(600,400) );
m_PcbFrame->SetTitle(Main_Title);
ScreenPcb->SetParentFrame(m_PcbFrame);
ActiveScreen = ScreenPcb;
m_PcbFrame->m_Pcb = new BOARD(NULL, m_PcbFrame);
SetTopWindow(m_PcbFrame);
m_PcbFrame->Show(TRUE);
if( CreateServer(m_PcbFrame, KICAD_PCB_PORT_SERVICE_NUMBER) )
{
SetupServerFunction(RemoteCommand);
}
m_PcbFrame->Zoom_Automatique(TRUE);
/* Load file specified in the command line. */
if ( ! FFileName.IsEmpty() )
{
wxClientDC dc(m_PcbFrame->DrawPanel);
m_PcbFrame->DrawPanel->PrepareGraphicContext(&dc);
m_PcbFrame->LoadOnePcbFile(FFileName, &dc, FALSE);
}
return TRUE;
}
示例15: a
bool Rpcs3App::OnInit()
{
static const wxCmdLineEntryDesc desc[]
{
{ wxCMD_LINE_SWITCH, "h", "help", "Command line options:\nh (help): Help and commands\nt (test): For directly executing a (S)ELF", wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP },
{ wxCMD_LINE_SWITCH, "t", "test", "Run in test mode on (S)ELF", wxCMD_LINE_VAL_NONE },
{ wxCMD_LINE_PARAM, NULL, NULL, "(S)ELF", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
{ wxCMD_LINE_NONE }
};
parser.SetDesc(desc);
parser.SetCmdLine(argc, argv);
if (parser.Parse())
{
// help was given, terminating
this->Exit();
}
s_gui_cfg.open(fs::get_config_dir() + "/config_gui.yml", fs::read + fs::write + fs::create);
g_gui_cfg = YAML::Load(s_gui_cfg.to_string());
EmuCallbacks callbacks;
callbacks.call_after = [](std::function<void()> func)
{
wxGetApp().CallAfter(std::move(func));
};
callbacks.process_events = [this]()
{
m_MainFrame->Update();
wxGetApp().ProcessPendingEvents();
};
callbacks.exit = [this]()
{
wxGetApp().Exit();
};
callbacks.send_dbg_command = [](DbgCommand id, cpu_thread* t)
{
wxGetApp().SendDbgCommand(id, t);
};
callbacks.get_kb_handler = PURE_EXPR(g_cfg_kb_handler.get()());
callbacks.get_mouse_handler = PURE_EXPR(g_cfg_mouse_handler.get()());
callbacks.get_pad_handler = PURE_EXPR(g_cfg_pad_handler.get()());
callbacks.get_gs_frame = [](frame_type type, int w, int h) -> std::unique_ptr<GSFrameBase>
{
switch (type)
{
case frame_type::OpenGL: return std::make_unique<GLGSFrame>(w, h);
case frame_type::DX12: return std::make_unique<GSFrame>("DirectX 12", w, h);
case frame_type::Null: return std::make_unique<GSFrame>("Null", w, h);
case frame_type::Vulkan: return std::make_unique<GSFrame>("Vulkan", w, h);
}
throw EXCEPTION("Invalid Frame Type (0x%x)", type);
};
callbacks.get_gs_render = PURE_EXPR(g_cfg_gs_render.get()());
callbacks.get_audio = PURE_EXPR(g_cfg_audio_render.get()());
callbacks.get_msg_dialog = []() -> std::shared_ptr<MsgDialogBase>
{
return std::make_shared<MsgDialogFrame>();
};
callbacks.get_save_dialog = []() -> std::unique_ptr<SaveDialogBase>
{
return std::make_unique<SaveDialogFrame>();
};
Emu.SetCallbacks(std::move(callbacks));
TheApp = this;
SetAppName("RPCS3");
wxInitAllImageHandlers();
Emu.Init();
m_MainFrame = new MainFrame();
SetTopWindow(m_MainFrame);
m_MainFrame->Show();
m_MainFrame->DoSettings(true);
OnArguments(parser);
return true;
}