X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2ad495fb65c1bf8eaf28037384b9426e217049b6..55325d01e68cfb071e42699ca72ba84a7071aa2b:/samples/display/display.cpp diff --git a/samples/display/display.cpp b/samples/display/display.cpp index 603b14ae9b..7ee089971d 100644 --- a/samples/display/display.cpp +++ b/samples/display/display.cpp @@ -29,11 +29,8 @@ #include "wx/wx.h" #endif -#if !wxUSE_DISPLAY - #error "To compile this sample you must build the library with wxUSE_DISPLAY set to 1" -#endif - #include "wx/bookctrl.h" +#include "wx/sysopt.h" #include "wx/display.h" @@ -74,16 +71,20 @@ public: void OnFullScreen(wxCommandEvent& event); void OnAbout(wxCommandEvent& event); +#if wxUSE_DISPLAY void OnChangeMode(wxCommandEvent& event); void OnResetMode(wxCommandEvent& event); - void OnLeftClick(wxMouseEvent& event); - void OnDisplayChanged(wxDisplayChangedEvent& event); +#endif // wxUSE_DISPLAY + + void OnLeftClick(wxMouseEvent& event); private: +#if wxUSE_DISPLAY // convert video mode to textual description wxString VideoModeToText(const wxVideoMode& mode); +#endif // wxUSE_DISPLAY // GUI controls wxBookCtrl *m_book; @@ -138,13 +139,14 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_MENU(Display_FullScreen, MyFrame::OnFullScreen) EVT_MENU(Display_About, MyFrame::OnAbout) +#if wxUSE_DISPLAY EVT_CHOICE(Display_ChangeMode, MyFrame::OnChangeMode) EVT_BUTTON(Display_ResetMode, MyFrame::OnResetMode) - EVT_LEFT_UP(MyFrame::OnLeftClick) - - EVT_DISPLAY_CHANGED(MyFrame::OnDisplayChanged) +#endif // wxUSE_DISPLAY + + EVT_LEFT_UP(MyFrame::OnLeftClick) END_EVENT_TABLE() // Create a new application object: this macro will allow wxWidgets to create @@ -168,7 +170,7 @@ bool MyApp::OnInit() #ifdef __WXMSW__ if ( argc == 2 && !wxStricmp(argv[1], _T("/dx")) ) { - wxDisplay::UseDirectX(true); + wxSystemOptions::SetOption(_T("msw.display.directdraw"), 1); } #endif // __WXMSW__ @@ -225,7 +227,6 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size, #endif // wxUSE_STATUSBAR // create child controls - wxPanel *panel = new wxPanel(this, wxID_ANY); m_book = new wxBookCtrl(panel, wxID_ANY); @@ -259,10 +260,23 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size, r.width, r.height) )); + const wxRect rc(display.GetClientArea()); + sizer->Add(new wxStaticText(page, wxID_ANY, _T("Client area: "))); + sizer->Add(new wxStaticText + ( + page, + wxID_ANY, + wxString::Format(_T("(%d, %d)-(%d, %d)"), + rc.x, rc.y, rc.width, rc.height) + )); sizer->Add(new wxStaticText(page, wxID_ANY, _T("Name: "))); sizer->Add(new wxStaticText(page, wxID_ANY, display.GetName())); + wxSizer *sizerTop = new wxBoxSizer(wxVERTICAL); + sizerTop->Add(sizer, 1, wxALL | wxEXPAND, 10); + +#if wxUSE_DISPLAY wxChoice *choiceModes = new wxChoice(page, Display_ChangeMode); const wxArrayVideoModes modes = display.GetModes(); const size_t count = modes.GetCount(); @@ -282,11 +296,10 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size, VideoModeToText(display.GetCurrentMode()))); // add it to another sizer to have borders around it and button below - wxSizer *sizerTop = new wxBoxSizer(wxVERTICAL); - sizerTop->Add(sizer, 1, wxALL | wxEXPAND, 10); - sizerTop->Add(new wxButton(page, Display_ResetMode, _T("&Reset mode")), 0, wxALL | wxCENTRE, 5); +#endif // wxUSE_DISPLAY + page->SetSizer(sizerTop); m_book->AddPage(page, @@ -301,6 +314,8 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size, sizer->SetSizeHints(this); } +#if wxUSE_DISPLAY + wxString MyFrame::VideoModeToText(const wxVideoMode& mode) { wxString s; @@ -319,6 +334,8 @@ wxString MyFrame::VideoModeToText(const wxVideoMode& mode) return s; } +#endif // wxUSE_DISPLAY + // event handlers void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) @@ -329,7 +346,7 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) { - wxMessageBox(_T("Demo program for wxDisplay class.\n\n(c) 2003 Vadim Zeitlin"), + wxMessageBox(_T("Demo program for wxDisplay class.\n\n(c) 2003-2006 Vadim Zeitlin"), _T("About Display Sample"), wxOK | wxICON_INFORMATION, this); @@ -349,6 +366,8 @@ void MyFrame::OnFullScreen(wxCommandEvent& event) ShowFullScreen(event.IsChecked()); } +#if wxUSE_DISPLAY + void MyFrame::OnChangeMode(wxCommandEvent& event) { wxDisplay dpy(m_book->GetSelection()); @@ -369,6 +388,8 @@ void MyFrame::OnResetMode(wxCommandEvent& WXUNUSED(event)) dpy.ResetMode(); } +#endif // wxUSE_DISPLAY + void MyFrame::OnLeftClick(wxMouseEvent& event) { if ( HasCapture() ) @@ -388,6 +409,8 @@ void MyFrame::OnLeftClick(wxMouseEvent& event) } } +#if wxUSE_DISPLAY + void MyFrame::OnDisplayChanged(wxDisplayChangedEvent& event) { // update the current mode text @@ -405,3 +428,5 @@ void MyFrame::OnDisplayChanged(wxDisplayChangedEvent& event) event.Skip(); } + +#endif // wxUSE_DISPLAY