]> git.saurik.com Git - wxWidgets.git/blame - samples/display/display.cpp
remove streams tests: they're very basic and already-existing CppUnit stream tests...
[wxWidgets.git] / samples / display / display.cpp
CommitLineData
c32b1077
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: display.cpp
be5a51fb 3// Purpose: wxWidgets sample showing the features of wxDisplay class
c32b1077 4// Author: Vadim Zeitlin
63c51a93 5// Modified by: Ryan Norton & Brian Victor
c32b1077
VZ
6// Created: 23.02.03
7// RCS-ID: $Id$
be5a51fb 8// Copyright: (c) Vadim Zeitlin <vadim@wxwidgets.org>
c32b1077
VZ
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
6ae4d29a 20// for compilers that support precompilation, includes "wx/wx.h"
c32b1077
VZ
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27// for all others, include the necessary headers explicitly
28#ifndef WX_PRECOMP
6ae4d29a
DS
29 #include "wx/wx.h"
30#endif
31
2ad495fb 32#include "wx/bookctrl.h"
22d679f3 33#include "wx/sysopt.h"
c32b1077
VZ
34
35#include "wx/display.h"
36
6ae4d29a 37
63c51a93
RN
38// the application icon (under Windows and OS/2 it is in resources)
39#if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
40 #include "../sample.xpm"
41#endif
42
c32b1077
VZ
43// ----------------------------------------------------------------------------
44// private classes
45// ----------------------------------------------------------------------------
46
47// Define a new application type, each program should derive a class from wxApp
48class MyApp : public wxApp
49{
50public:
51 // override base class virtuals
52 // ----------------------------
53
54 // this one is called on application startup and is a good place for the app
55 // initialization (doing it here and not in the ctor allows to have an error
56 // return: if OnInit() returns false, the application terminates)
57 virtual bool OnInit();
58};
59
60// Define a new frame type: this is going to be our main frame
61class MyFrame : public wxFrame
62{
63public:
64 // ctor(s)
65 MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size,
66 long style = wxDEFAULT_FRAME_STYLE);
67
68 // event handlers (these functions should _not_ be virtual)
69 void OnQuit(wxCommandEvent& event);
e9b77bcc 70 void OnFromPoint(wxCommandEvent& event);
84267f0d 71 void OnFullScreen(wxCommandEvent& event);
c32b1077
VZ
72 void OnAbout(wxCommandEvent& event);
73
22d679f3 74#if wxUSE_DISPLAY
84267f0d
VZ
75 void OnChangeMode(wxCommandEvent& event);
76 void OnResetMode(wxCommandEvent& event);
77
84267f0d 78 void OnDisplayChanged(wxDisplayChangedEvent& event);
22d679f3
VZ
79#endif // wxUSE_DISPLAY
80
81 void OnLeftClick(wxMouseEvent& event);
84267f0d 82
c32b1077 83private:
2c1957be 84#if wxUSE_DISPLAY
84267f0d
VZ
85 // convert video mode to textual description
86 wxString VideoModeToText(const wxVideoMode& mode);
22d679f3 87#endif // wxUSE_DISPLAY
84267f0d
VZ
88
89 // GUI controls
2ad495fb 90 wxBookCtrl *m_book;
84267f0d 91
be5a51fb 92 // any class wishing to process wxWidgets events must use this macro
c32b1077
VZ
93 DECLARE_EVENT_TABLE()
94};
95
84267f0d
VZ
96// Client data class for the choice control containing the video modes
97class MyVideoModeClientData : public wxClientData
98{
99public:
100 MyVideoModeClientData(const wxVideoMode& m) : mode(m) { }
101
102 const wxVideoMode mode;
103};
104
c32b1077
VZ
105// ----------------------------------------------------------------------------
106// constants
107// ----------------------------------------------------------------------------
108
109// IDs for the controls and the menu commands
110enum
111{
112 // menu items
2ad495fb 113 Display_FromPoint = wxID_HIGHEST + 1,
84267f0d
VZ
114 Display_FullScreen,
115
116 // controls
2ad495fb 117 Display_ChangeMode,
84267f0d
VZ
118 Display_ResetMode,
119 Display_CurrentMode,
120
e9b77bcc 121
c32b1077
VZ
122 // it is important for the id corresponding to the "About" command to have
123 // this standard value as otherwise it won't be handled properly under Mac
124 // (where it is special and put into the "Apple" menu)
2ad495fb 125 Display_Quit = wxID_EXIT,
c32b1077
VZ
126 Display_About = wxID_ABOUT
127};
128
129// ----------------------------------------------------------------------------
be5a51fb 130// event tables and other macros for wxWidgets
c32b1077
VZ
131// ----------------------------------------------------------------------------
132
be5a51fb 133// the event tables connect the wxWidgets events with the functions (event
c32b1077
VZ
134// handlers) which process them. It can be also done at run-time, but for the
135// simple menu events like this the static method is much simpler.
136BEGIN_EVENT_TABLE(MyFrame, wxFrame)
137 EVT_MENU(Display_Quit, MyFrame::OnQuit)
e9b77bcc 138 EVT_MENU(Display_FromPoint, MyFrame::OnFromPoint)
84267f0d 139 EVT_MENU(Display_FullScreen, MyFrame::OnFullScreen)
c32b1077 140 EVT_MENU(Display_About, MyFrame::OnAbout)
e9b77bcc 141
22d679f3 142#if wxUSE_DISPLAY
84267f0d
VZ
143 EVT_CHOICE(Display_ChangeMode, MyFrame::OnChangeMode)
144 EVT_BUTTON(Display_ResetMode, MyFrame::OnResetMode)
145
84267f0d 146 EVT_DISPLAY_CHANGED(MyFrame::OnDisplayChanged)
22d679f3
VZ
147#endif // wxUSE_DISPLAY
148
149 EVT_LEFT_UP(MyFrame::OnLeftClick)
c32b1077
VZ
150END_EVENT_TABLE()
151
be5a51fb 152// Create a new application object: this macro will allow wxWidgets to create
c32b1077
VZ
153// the application object during program execution (it's better than using a
154// static object for many reasons) and also declares the accessor function
155// wxGetApp() which will return the reference of the right type (i.e. MyApp and
156// not wxApp)
157IMPLEMENT_APP(MyApp)
158
159// ============================================================================
160// implementation
161// ============================================================================
162
163// ----------------------------------------------------------------------------
164// the application class
165// ----------------------------------------------------------------------------
166
167// 'Main program' equivalent: the program execution "starts" here
168bool MyApp::OnInit()
169{
45e6e6f8
VZ
170 if ( !wxApp::OnInit() )
171 return false;
172
e40bef9f 173#ifdef __WXMSW__
9a83f860 174 if ( argc == 2 && !wxStricmp(argv[1], wxT("/dx")) )
e40bef9f 175 {
9a83f860 176 wxSystemOptions::SetOption(wxT("msw.display.directdraw"), 1);
e40bef9f
VZ
177 }
178#endif // __WXMSW__
179
c32b1077 180 // create the main application window
be5a51fb 181 MyFrame *frame = new MyFrame(_("Display wxWidgets Sample"),
6ae4d29a 182 wxDefaultPosition, wxDefaultSize);
c32b1077
VZ
183
184 // and show it (the frames, unlike simple controls, are not shown when
185 // created initially)
84267f0d 186 frame->Show();
c32b1077
VZ
187
188 // success: wxApp::OnRun() will be called which will enter the main message
6ae4d29a 189 // loop and the application will run. If we returned false here, the
c32b1077 190 // application would exit immediately.
6ae4d29a 191 return true;
c32b1077
VZ
192}
193
194// ----------------------------------------------------------------------------
195// main frame
196// ----------------------------------------------------------------------------
197
198// frame constructor
199MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size, long style)
6ae4d29a 200 : wxFrame(NULL, wxID_ANY, title, pos, size, style)
c32b1077
VZ
201{
202 // set the frame icon
63c51a93 203 SetIcon(wxICON(sample));
c32b1077
VZ
204
205#if wxUSE_MENUS
206 // create a menu bar
e9b77bcc 207 wxMenu *menuDisplay = new wxMenu;
84267f0d
VZ
208 menuDisplay->Append(Display_FromPoint, _("Find from &point..."));
209 menuDisplay->AppendSeparator();
210 menuDisplay->AppendCheckItem(Display_FullScreen, _("Full &screen\tF12"));
e9b77bcc
VZ
211 menuDisplay->AppendSeparator();
212 menuDisplay->Append(Display_Quit, _("E&xit\tAlt-X"), _("Quit this program"));
c32b1077
VZ
213
214 // the "About" item should be in the help menu
215 wxMenu *helpMenu = new wxMenu;
216 helpMenu->Append(Display_About, _("&About...\tF1"), _("Show about dialog"));
217
c32b1077
VZ
218 // now append the freshly created menu to the menu bar...
219 wxMenuBar *menuBar = new wxMenuBar();
e9b77bcc 220 menuBar->Append(menuDisplay, _("&Display"));
c32b1077
VZ
221 menuBar->Append(helpMenu, _("&Help"));
222
223 // ... and attach this menu bar to the frame
224 SetMenuBar(menuBar);
225#endif // wxUSE_MENUS
226
8520f137 227#if wxUSE_STATUSBAR
e9b77bcc
VZ
228 // create status bar
229 CreateStatusBar();
8520f137 230#endif // wxUSE_STATUSBAR
e9b77bcc 231
c32b1077 232 // create child controls
6ae4d29a
DS
233 wxPanel *panel = new wxPanel(this, wxID_ANY);
234
2ad495fb 235 m_book = new wxBookCtrl(panel, wxID_ANY);
c32b1077 236 const size_t count = wxDisplay::GetCount();
84267f0d 237 for ( size_t nDpy = 0; nDpy < count; nDpy++ )
c32b1077 238 {
84267f0d 239 wxDisplay display(nDpy);
c32b1077 240
2ad495fb 241 wxWindow *page = new wxPanel(m_book, wxID_ANY);
c32b1077
VZ
242
243 // create 2 column flex grid sizer with growable 2nd column
244 wxFlexGridSizer *sizer = new wxFlexGridSizer(2, 10, 20);
245 sizer->AddGrowableCol(1);
246
247 const wxRect r(display.GetGeometry());
9a83f860 248 sizer->Add(new wxStaticText(page, wxID_ANY, wxT("Origin: ")));
e9b77bcc
VZ
249 sizer->Add(new wxStaticText
250 (
251 page,
6ae4d29a 252 wxID_ANY,
9a83f860 253 wxString::Format(wxT("(%d, %d)"),
e9b77bcc
VZ
254 r.x, r.y)
255 ));
256
9a83f860 257 sizer->Add(new wxStaticText(page, wxID_ANY, wxT("Size: ")));
c32b1077
VZ
258 sizer->Add(new wxStaticText
259 (
260 page,
6ae4d29a 261 wxID_ANY,
9a83f860 262 wxString::Format(wxT("(%d, %d)"),
e9b77bcc 263 r.width, r.height)
c32b1077
VZ
264 ));
265
6c5d6291 266 const wxRect rc(display.GetClientArea());
9a83f860 267 sizer->Add(new wxStaticText(page, wxID_ANY, wxT("Client area: ")));
6c5d6291
VZ
268 sizer->Add(new wxStaticText
269 (
270 page,
271 wxID_ANY,
9a83f860 272 wxString::Format(wxT("(%d, %d)-(%d, %d)"),
6c5d6291
VZ
273 rc.x, rc.y, rc.width, rc.height)
274 ));
c32b1077 275
9a83f860 276 sizer->Add(new wxStaticText(page, wxID_ANY, wxT("Name: ")));
6ae4d29a 277 sizer->Add(new wxStaticText(page, wxID_ANY, display.GetName()));
e9b77bcc 278
22d679f3
VZ
279 wxSizer *sizerTop = new wxBoxSizer(wxVERTICAL);
280 sizerTop->Add(sizer, 1, wxALL | wxEXPAND, 10);
281
282#if wxUSE_DISPLAY
84267f0d
VZ
283 wxChoice *choiceModes = new wxChoice(page, Display_ChangeMode);
284 const wxArrayVideoModes modes = display.GetModes();
285 const size_t count = modes.GetCount();
286 for ( size_t nMode = 0; nMode < count; nMode++ )
287 {
288 const wxVideoMode& mode = modes[nMode];
289
290 choiceModes->Append(VideoModeToText(mode),
291 new MyVideoModeClientData(mode));
292 }
293
9a83f860 294 sizer->Add(new wxStaticText(page, wxID_ANY, wxT("&Modes: ")));
84267f0d 295 sizer->Add(choiceModes, 0, wxEXPAND);
c32b1077 296
9a83f860 297 sizer->Add(new wxStaticText(page, wxID_ANY, wxT("Current: ")));
84267f0d
VZ
298 sizer->Add(new wxStaticText(page, Display_CurrentMode,
299 VideoModeToText(display.GetCurrentMode())));
300
301 // add it to another sizer to have borders around it and button below
9a83f860 302 sizerTop->Add(new wxButton(page, Display_ResetMode, wxT("&Reset mode")),
84267f0d 303 0, wxALL | wxCENTRE, 5);
22d679f3
VZ
304#endif // wxUSE_DISPLAY
305
c32b1077
VZ
306 page->SetSizer(sizerTop);
307
2ad495fb 308 m_book->AddPage(page,
9a83f860 309 wxString::Format(wxT("Display %lu"),
2ad495fb 310 (unsigned long)nDpy));
c32b1077 311 }
6ae4d29a 312
adbf2d73 313 wxBoxSizer *sizer = new wxBoxSizer(wxHORIZONTAL);
2ad495fb 314 sizer->Add(m_book, 1, wxEXPAND);
adbf2d73 315 panel->SetSizer(sizer);
adbf2d73 316 sizer->SetSizeHints(this);
c32b1077
VZ
317}
318
2c1957be 319#if wxUSE_DISPLAY
22d679f3 320
84267f0d
VZ
321wxString MyFrame::VideoModeToText(const wxVideoMode& mode)
322{
323 wxString s;
9a83f860 324 s.Printf(wxT("%dx%d"), mode.w, mode.h);
84267f0d
VZ
325
326 if ( mode.bpp )
327 {
9a83f860 328 s += wxString::Format(wxT(", %dbpp"), mode.bpp);
84267f0d
VZ
329 }
330
331 if ( mode.refresh )
332 {
9a83f860 333 s += wxString::Format(wxT(", %dHz"), mode.refresh);
84267f0d
VZ
334 }
335
336 return s;
337}
22d679f3
VZ
338
339#endif // wxUSE_DISPLAY
c32b1077
VZ
340
341// event handlers
342
343void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
344{
6ae4d29a
DS
345 // true is to force the frame to close
346 Close(true);
c32b1077
VZ
347}
348
349void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
350{
9a83f860
VZ
351 wxMessageBox(wxT("Demo program for wxDisplay class.\n\n(c) 2003-2006 Vadim Zeitlin"),
352 wxT("About Display Sample"),
c32b1077
VZ
353 wxOK | wxICON_INFORMATION,
354 this);
355}
e9b77bcc
VZ
356
357void MyFrame::OnFromPoint(wxCommandEvent& WXUNUSED(event))
358{
8520f137 359#if wxUSE_STATUSBAR
9a83f860 360 SetStatusText(wxT("Press the mouse anywhere..."));
8520f137 361#endif // wxUSE_STATUSBAR
e9b77bcc
VZ
362
363 CaptureMouse();
364}
365
84267f0d
VZ
366void MyFrame::OnFullScreen(wxCommandEvent& event)
367{
368 ShowFullScreen(event.IsChecked());
369}
370
22d679f3
VZ
371#if wxUSE_DISPLAY
372
84267f0d
VZ
373void MyFrame::OnChangeMode(wxCommandEvent& event)
374{
2ad495fb 375 wxDisplay dpy(m_book->GetSelection());
84267f0d
VZ
376
377 // you wouldn't write this in real code, would you?
378 if ( !dpy.ChangeMode(((MyVideoModeClientData *)
379 wxDynamicCast(event.GetEventObject(), wxChoice)->
380 GetClientObject(event.GetInt()))->mode) )
381 {
9a83f860 382 wxLogError(wxT("Changing video mode failed!"));
84267f0d
VZ
383 }
384}
385
386void MyFrame::OnResetMode(wxCommandEvent& WXUNUSED(event))
387{
2ad495fb 388 wxDisplay dpy(m_book->GetSelection());
84267f0d
VZ
389
390 dpy.ResetMode();
391}
392
22d679f3
VZ
393#endif // wxUSE_DISPLAY
394
e9b77bcc
VZ
395void MyFrame::OnLeftClick(wxMouseEvent& event)
396{
397 if ( HasCapture() )
398 {
399 // mouse events are in client coords, wxDisplay works in screen ones
400 const wxPoint ptScreen = ClientToScreen(event.GetPosition());
401 int dpy = wxDisplay::GetFromPoint(ptScreen);
402 if ( dpy == wxNOT_FOUND )
403 {
9a83f860 404 wxLogError(wxT("Mouse clicked outside of display!?"));
e9b77bcc
VZ
405 }
406
9a83f860 407 wxLogStatus(this, wxT("Mouse clicked in display %d (at (%d, %d))"),
e9b77bcc
VZ
408 dpy, ptScreen.x, ptScreen.y);
409
410 ReleaseMouse();
411 }
412}
413
2c1957be 414#if wxUSE_DISPLAY
22d679f3 415
84267f0d
VZ
416void MyFrame::OnDisplayChanged(wxDisplayChangedEvent& event)
417{
418 // update the current mode text
2ad495fb 419 for ( size_t n = 0; n < m_book->GetPageCount(); n++ )
84267f0d 420 {
2ad495fb 421 wxStaticText *label = wxDynamicCast(m_book->GetPage(n)->
84267f0d
VZ
422 FindWindow(Display_CurrentMode),
423 wxStaticText);
424 if ( label )
425 label->SetLabel(VideoModeToText(wxDisplay(n).GetCurrentMode()));
426 }
427
428
9a83f860 429 wxLogStatus(this, wxT("Display resolution was changed."));
84267f0d
VZ
430
431 event.Skip();
432}
2c1957be 433
22d679f3 434#endif // wxUSE_DISPLAY