]>
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( LeadingAndDescent
);
50 CPPUNIT_TEST( WindowGetTextExtent
);
51 CPPUNIT_TEST( GetPartialTextExtent
);
53 CPPUNIT_TEST( GraphicsGetTextExtent
);
55 CPPUNIT_TEST_SUITE_END();
57 void DCGetTextExtent();
58 void LeadingAndDescent();
59 void WindowGetTextExtent();
61 void GetPartialTextExtent();
64 void GraphicsGetTextExtent();
67 DECLARE_NO_COPY_CLASS(MeasuringTextTestCase
)
70 // register in the unnamed registry so that these tests are run by default
71 CPPUNIT_TEST_SUITE_REGISTRATION( MeasuringTextTestCase
);
73 // also include in its own registry so that these tests can be run alone
74 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( MeasuringTextTestCase
, "MeasuringTextTestCase" );
76 // ----------------------------------------------------------------------------
77 // helper for XXXTextExtent() methods
78 // ----------------------------------------------------------------------------
81 struct GetTextExtentTester
83 // Constructor runs a couple of simple tests for GetTextExtent().
84 GetTextExtentTester(const T
& obj
)
86 // Test that getting the height only doesn't crash.
88 obj
.GetTextExtent("H", NULL
, &y
);
90 CPPUNIT_ASSERT( y
> 1 );
92 wxSize size
= obj
.GetTextExtent("Hello");
93 CPPUNIT_ASSERT( size
.x
> 1 );
94 CPPUNIT_ASSERT_EQUAL( y
, size
.y
);
98 // ----------------------------------------------------------------------------
100 // ----------------------------------------------------------------------------
102 void MeasuringTextTestCase::DCGetTextExtent()
104 wxClientDC
dc(wxTheApp
->GetTopWindow());
106 GetTextExtentTester
<wxClientDC
> testDC(dc
);
109 dc
.GetMultiLineTextExtent("Good\nbye", &w
, NULL
);
110 const wxSize sz
= dc
.GetTextExtent("Good");
111 CPPUNIT_ASSERT_EQUAL( sz
.x
, w
);
113 CPPUNIT_ASSERT( dc
.GetMultiLineTextExtent("Good\nbye").y
>= 2*sz
.y
);
115 // Test the functions with some other DC kinds also.
116 #if wxUSE_PRINTING_ARCHITECTURE && wxUSE_POSTSCRIPT
118 // wxPostScriptDC doesn't have any font set by default but its
119 // GetTextExtent() requires one to be set. This is probably a bug and we
120 // should set the default font in it implicitly but for now just work
122 psdc
.SetFont(*wxNORMAL_FONT
);
123 GetTextExtentTester
<wxPostScriptDC
> testPS(psdc
);
126 #if wxUSE_ENH_METAFILE
127 wxEnhMetaFileDC metadc
;
128 GetTextExtentTester
<wxEnhMetaFileDC
> testMF(metadc
);
132 void MeasuringTextTestCase::LeadingAndDescent()
134 wxClientDC
dc(wxTheApp
->GetTopWindow());
136 // Retrieving just the descent should work.
138 dc
.GetTextExtent("foo", NULL
, NULL
, &descent
);
139 CPPUNIT_ASSERT( descent
!= -17 );
141 // Same for external leading.
143 dc
.GetTextExtent("foo", NULL
, NULL
, NULL
, &leading
);
144 CPPUNIT_ASSERT( leading
!= -289 );
146 // And both should also work for the empty string as they retrieve the
147 // values valid for the entire font and not just this string.
150 dc
.GetTextExtent("", NULL
, NULL
, &descent2
, &leading2
);
152 CPPUNIT_ASSERT_EQUAL( descent
, descent2
);
153 CPPUNIT_ASSERT_EQUAL( leading
, leading2
);
156 void MeasuringTextTestCase::WindowGetTextExtent()
158 wxWindow
* const win
= wxTheApp
->GetTopWindow();
160 GetTextExtentTester
<wxWindow
> testWin(*win
);
163 void MeasuringTextTestCase::GetPartialTextExtent()
165 wxClientDC
dc(wxTheApp
->GetTopWindow());
168 CPPUNIT_ASSERT( dc
.GetPartialTextExtents("Hello", widths
) );
169 CPPUNIT_ASSERT_EQUAL( 5, widths
.size() );
170 CPPUNIT_ASSERT_EQUAL( widths
[0], dc
.GetTextExtent("H").x
);
171 CPPUNIT_ASSERT_EQUAL( widths
[4], dc
.GetTextExtent("Hello").x
);
176 void MeasuringTextTestCase::GraphicsGetTextExtent()
178 wxGraphicsRenderer
* renderer
= wxGraphicsRenderer::GetDefaultRenderer();
179 CPPUNIT_ASSERT(renderer
);
180 wxGraphicsContext
* context
= renderer
->CreateMeasuringContext();
181 CPPUNIT_ASSERT(context
);
182 wxFont
font(12, wxFONTFAMILY_DEFAULT
, wxFONTSTYLE_NORMAL
, wxFONTWEIGHT_NORMAL
);
183 CPPUNIT_ASSERT(font
.IsOk());
184 context
->SetFont(font
, *wxBLACK
);
185 double width
, height
, descent
, externalLeading
= 0.0;
186 context
->GetTextExtent("x", &width
, &height
, &descent
, &externalLeading
);
188 // TODO: Determine a way to make these tests more robust.
189 CPPUNIT_ASSERT(width
> 0.0);
190 CPPUNIT_ASSERT(height
> 0.0);