]>
git.saurik.com Git - wxWidgets.git/blob - tests/graphics/measuring.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/graphics/measuring.cpp
3 // Purpose: Tests for wxGraphicsRenderer::CreateMeasuringContext
4 // Author: Kevin Ollivier, Vadim Zeitlin (non wxGC parts)
7 // Copyright: (c) 2008 Kevin Ollivier <kevino@theolliviers.com>
8 // (c) 2012 Vadim Zeitlin <vadim@wxwidgets.org>
9 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
24 #include "wx/window.h"
27 // wxCairoRenderer::CreateMeasuringContext() is not implement for wxX11
28 #if wxUSE_GRAPHICS_CONTEXT && !defined(__WXX11__)
29 #include "wx/graphics.h"
33 #include "wx/dcclient.h"
35 #include "wx/metafile.h"
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
41 class MeasuringTextTestCase
: public CppUnit::TestCase
44 MeasuringTextTestCase() { }
47 CPPUNIT_TEST_SUITE( MeasuringTextTestCase
);
48 CPPUNIT_TEST( DCGetTextExtent
);
49 CPPUNIT_TEST( WindowGetTextExtent
);
50 CPPUNIT_TEST( GetPartialTextExtent
);
52 CPPUNIT_TEST( GraphicsGetTextExtent
);
54 CPPUNIT_TEST_SUITE_END();
56 void DCGetTextExtent();
57 void WindowGetTextExtent();
59 void GetPartialTextExtent();
62 void GraphicsGetTextExtent();
65 DECLARE_NO_COPY_CLASS(MeasuringTextTestCase
)
68 // register in the unnamed registry so that these tests are run by default
69 CPPUNIT_TEST_SUITE_REGISTRATION( MeasuringTextTestCase
);
71 // also include in its own registry so that these tests can be run alone
72 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( MeasuringTextTestCase
, "MeasuringTextTestCase" );
74 // ----------------------------------------------------------------------------
75 // helper for XXXTextExtent() methods
76 // ----------------------------------------------------------------------------
79 struct GetTextExtentTester
81 // Constructor runs a couple of simple tests for GetTextExtent().
82 GetTextExtentTester(const T
& obj
)
84 // Test that getting the height only doesn't crash.
86 obj
.GetTextExtent("H", NULL
, &y
);
88 CPPUNIT_ASSERT( y
> 1 );
90 wxSize size
= obj
.GetTextExtent("Hello");
91 CPPUNIT_ASSERT( size
.x
> 1 );
92 CPPUNIT_ASSERT_EQUAL( y
, size
.y
);
96 // ----------------------------------------------------------------------------
98 // ----------------------------------------------------------------------------
100 void MeasuringTextTestCase::DCGetTextExtent()
102 wxClientDC
dc(wxTheApp
->GetTopWindow());
104 GetTextExtentTester
<wxClientDC
> testDC(dc
);
107 dc
.GetMultiLineTextExtent("Good\nbye", &w
, NULL
);
108 const wxSize sz
= dc
.GetTextExtent("Good");
109 CPPUNIT_ASSERT_EQUAL( sz
.x
, w
);
111 CPPUNIT_ASSERT( dc
.GetMultiLineTextExtent("Good\nbye").y
>= 2*sz
.y
);
113 // Test the functions with some other DC kinds also.
114 #if wxUSE_PRINTING_ARCHITECTURE && wxUSE_POSTSCRIPT
116 // wxPostScriptDC doesn't have any font set by default but its
117 // GetTextExtent() requires one to be set. This is probably a bug and we
118 // should set the default font in it implicitly but for now just work
120 psdc
.SetFont(*wxNORMAL_FONT
);
121 GetTextExtentTester
<wxPostScriptDC
> testPS(psdc
);
124 #if wxUSE_ENH_METAFILE
125 wxEnhMetaFileDC metadc
;
126 GetTextExtentTester
<wxEnhMetaFileDC
> testMF(metadc
);
130 void MeasuringTextTestCase::WindowGetTextExtent()
132 wxWindow
* const win
= wxTheApp
->GetTopWindow();
134 GetTextExtentTester
<wxWindow
> testWin(*win
);
137 void MeasuringTextTestCase::GetPartialTextExtent()
139 wxClientDC
dc(wxTheApp
->GetTopWindow());
142 CPPUNIT_ASSERT( dc
.GetPartialTextExtents("Hello", widths
) );
143 CPPUNIT_ASSERT_EQUAL( 5, widths
.size() );
144 CPPUNIT_ASSERT_EQUAL( widths
[0], dc
.GetTextExtent("H").x
);
145 CPPUNIT_ASSERT_EQUAL( widths
[4], dc
.GetTextExtent("Hello").x
);
150 void MeasuringTextTestCase::GraphicsGetTextExtent()
152 wxGraphicsRenderer
* renderer
= wxGraphicsRenderer::GetDefaultRenderer();
153 CPPUNIT_ASSERT(renderer
);
154 wxGraphicsContext
* context
= renderer
->CreateMeasuringContext();
155 CPPUNIT_ASSERT(context
);
156 wxFont
font(12, wxFONTFAMILY_DEFAULT
, wxFONTSTYLE_NORMAL
, wxFONTWEIGHT_NORMAL
);
157 CPPUNIT_ASSERT(font
.IsOk());
158 context
->SetFont(font
, *wxBLACK
);
159 double width
, height
, descent
, externalLeading
= 0.0;
160 context
->GetTextExtent("x", &width
, &height
, &descent
, &externalLeading
);
162 // TODO: Determine a way to make these tests more robust.
163 CPPUNIT_ASSERT(width
> 0.0);
164 CPPUNIT_ASSERT(height
> 0.0);