]> git.saurik.com Git - wxWidgets.git/blame - samples/multimon/multimon_test.cpp
Implemended column header mouse clicks.
[wxWidgets.git] / samples / multimon / multimon_test.cpp
CommitLineData
a536e411
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: multimon_test.cpp
3// Purpose: tests wxDisplay class
4// Author: Royce Mitchell III
5// Modified by:
6// Created: 06/21/02
7// RCS-ID: $Id$
be5a51fb 8// Copyright: (c) wxWidgets team
a536e411
JS
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
b20edf8b
WS
12#include "wx/wx.h"
13#include "wx/display.h"
a536e411
JS
14
15class TestApp : public wxApp
16{
b20edf8b 17 bool OnInit();
a536e411
JS
18};
19
20DECLARE_APP(TestApp)
21IMPLEMENT_APP(TestApp)
22
23bool TestApp::OnInit()
24{
b20edf8b 25 bool is_use_display =
25088f1e 26 #if wxUSE_DISPLAY
80343f88 27 true
25088f1e 28 #else
80343f88 29 false
25088f1e
JS
30 #endif
31 ;
32 if( !is_use_display )
33 {
34 wxMessageBox( _T("This sample has to be compiled with wxUSE_DISPLAY"), _T("Building error"), wxOK);
35 }
b20edf8b 36#if wxUSE_DISPLAY
25088f1e
JS
37 else
38 {
b143cf70
PC
39 unsigned count = wxDisplay::GetCount();
40 wxLogDebug ( _T("I detected %u display(s) on your system"), count );
41 for (unsigned i = 0; i < count; i++)
b20edf8b
WS
42 {
43 wxDisplay display ( i );
44 wxRect r = display.GetGeometry();
b143cf70 45 wxLogDebug ( _T("Display #%u \"%s\" = ( %i, %i, %i, %i ) @ %i bits"),
b20edf8b
WS
46 i, display.GetName().c_str(), r.GetLeft(), r.GetTop(), r.GetWidth(), r.GetHeight(),
47 display.GetCurrentMode().GetDepth() );
b20edf8b 48 }
25088f1e 49 }
b20edf8b
WS
50#endif
51 return false;
a536e411 52}