- size_t count = wxDisplay::GetCount();
- wxLogDebug ( "I detected %i display(s) on your system", count );
- size_t i = 0;
- while ( i < count )
- {
- wxDisplay display ( i );
- wxRect r = display.GetGeometry();
- wxLogDebug ( "Display #%i \"%s\" = ( %i, %i, %i, %i ) @ %i bits",
- i, display.GetName().c_str(), r.GetLeft(), r.GetTop(), r.GetWidth(), r.GetHeight(),
- display.GetDepth() );
- i++;
- }
- return FALSE;
+ if ( !wxApp::OnInit() )
+ return false;
+
+ bool is_use_display =
+ #if wxUSE_DISPLAY
+ true
+ #else
+ false
+ #endif
+ ;
+ if( !is_use_display )
+ {
+ wxMessageBox( _T("This sample has to be compiled with wxUSE_DISPLAY"), _T("Building error"), wxOK);
+ }
+#if wxUSE_DISPLAY
+ else
+ {
+ unsigned count = wxDisplay::GetCount();
+ wxLogDebug ( _T("I detected %u display(s) on your system"), count );
+ for (unsigned i = 0; i < count; i++)
+ {
+ wxDisplay display ( i );
+ wxRect r = display.GetGeometry();
+ wxLogDebug ( _T("Display #%u \"%s\" = ( %i, %i, %i, %i ) @ %i bits"),
+ i, display.GetName().c_str(), r.GetLeft(), r.GetTop(), r.GetWidth(), r.GetHeight(),
+ display.GetCurrentMode().GetDepth() );
+ }
+ }
+#endif
+ return false;