2009-04-15 18:38:53 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2009-06-20 19:33:55 -04:00
|
|
|
// Name: tests/graphics/measuring.cpp
|
|
|
|
// Purpose: Tests for wxGraphicsRenderer::CreateMeasuringContext
|
2012-10-17 18:35:49 -04:00
|
|
|
// Author: Kevin Ollivier, Vadim Zeitlin (non wxGC parts)
|
2009-04-15 18:38:53 -04:00
|
|
|
// Created: 2008-02-12
|
2010-09-17 07:17:55 -04:00
|
|
|
// RCS-ID: $Id$
|
2009-06-20 19:33:55 -04:00
|
|
|
// Copyright: (c) 2008 Kevin Ollivier <kevino@theolliviers.com>
|
2012-10-17 18:35:49 -04:00
|
|
|
// (c) 2012 Vadim Zeitlin <vadim@wxwidgets.org>
|
2009-04-15 18:38:53 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "testprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/app.h"
|
|
|
|
#include "wx/font.h"
|
|
|
|
#include "wx/window.h"
|
|
|
|
#endif // WX_PRECOMP
|
|
|
|
|
2012-10-17 18:35:49 -04:00
|
|
|
// wxCairoRenderer::CreateMeasuringContext() is not implement for wxX11
|
|
|
|
#if wxUSE_GRAPHICS_CONTEXT && !defined(__WXX11__)
|
|
|
|
#include "wx/graphics.h"
|
|
|
|
#define TEST_GC
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/dcclient.h"
|
|
|
|
|
2009-04-15 18:38:53 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// test class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2012-10-17 18:35:49 -04:00
|
|
|
class MeasuringTextTestCase : public CppUnit::TestCase
|
2009-04-15 18:38:53 -04:00
|
|
|
{
|
|
|
|
public:
|
2012-10-17 18:35:49 -04:00
|
|
|
MeasuringTextTestCase() { }
|
2009-04-15 18:38:53 -04:00
|
|
|
|
|
|
|
private:
|
2012-10-17 18:35:49 -04:00
|
|
|
CPPUNIT_TEST_SUITE( MeasuringTextTestCase );
|
|
|
|
CPPUNIT_TEST( DCGetTextExtent );
|
|
|
|
CPPUNIT_TEST( WindowGetTextExtent );
|
|
|
|
CPPUNIT_TEST( GetPartialTextExtent );
|
|
|
|
#ifdef TEST_GC
|
|
|
|
CPPUNIT_TEST( GraphicsGetTextExtent );
|
|
|
|
#endif // TEST_GC
|
2009-04-15 18:38:53 -04:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
2012-10-17 18:35:49 -04:00
|
|
|
template <typename T>
|
|
|
|
void DoTestGetTextExtent(const T& obj);
|
2009-04-15 18:38:53 -04:00
|
|
|
|
2012-10-17 18:35:49 -04:00
|
|
|
void DCGetTextExtent();
|
|
|
|
void WindowGetTextExtent();
|
|
|
|
|
|
|
|
void GetPartialTextExtent();
|
|
|
|
|
|
|
|
#ifdef TEST_GC
|
|
|
|
void GraphicsGetTextExtent();
|
|
|
|
#endif // TEST_GC
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(MeasuringTextTestCase)
|
2009-04-15 18:38:53 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
2012-10-17 18:35:49 -04:00
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( MeasuringTextTestCase );
|
2009-04-15 18:38:53 -04:00
|
|
|
|
2011-04-30 06:57:04 -04:00
|
|
|
// also include in its own registry so that these tests can be run alone
|
2012-10-17 18:35:49 -04:00
|
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( MeasuringTextTestCase, "MeasuringTextTestCase" );
|
2009-04-15 18:38:53 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// tests themselves
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2012-10-17 18:35:49 -04:00
|
|
|
template <typename T>
|
|
|
|
void MeasuringTextTestCase::DoTestGetTextExtent(const T& obj)
|
|
|
|
{
|
|
|
|
// Test that getting the height only doesn't crash.
|
|
|
|
int y;
|
|
|
|
obj.GetTextExtent("H", NULL, &y);
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT( y > 1 );
|
|
|
|
|
|
|
|
wxSize size = obj.GetTextExtent("Hello");
|
|
|
|
CPPUNIT_ASSERT( size.x > 1 );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( y, size.y );
|
|
|
|
}
|
|
|
|
|
|
|
|
void MeasuringTextTestCase::DCGetTextExtent()
|
|
|
|
{
|
|
|
|
wxClientDC dc(wxTheApp->GetTopWindow());
|
|
|
|
|
|
|
|
DoTestGetTextExtent(dc);
|
2012-10-17 19:06:07 -04:00
|
|
|
|
|
|
|
int w;
|
|
|
|
dc.GetMultiLineTextExtent("Good\nbye", &w, NULL);
|
|
|
|
const wxSize sz = dc.GetTextExtent("Good");
|
|
|
|
CPPUNIT_ASSERT_EQUAL( sz.x, w );
|
|
|
|
|
|
|
|
CPPUNIT_ASSERT( dc.GetMultiLineTextExtent("Good\nbye").y >= 2*sz.y );
|
2012-10-17 18:35:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void MeasuringTextTestCase::WindowGetTextExtent()
|
|
|
|
{
|
|
|
|
wxWindow* const win = wxTheApp->GetTopWindow();
|
|
|
|
|
|
|
|
DoTestGetTextExtent(*win);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MeasuringTextTestCase::GetPartialTextExtent()
|
|
|
|
{
|
|
|
|
wxClientDC dc(wxTheApp->GetTopWindow());
|
|
|
|
|
|
|
|
wxArrayInt widths;
|
|
|
|
CPPUNIT_ASSERT( dc.GetPartialTextExtents("Hello", widths) );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( 5, widths.size() );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( widths[0], dc.GetTextExtent("H").x );
|
|
|
|
CPPUNIT_ASSERT_EQUAL( widths[4], dc.GetTextExtent("Hello").x );
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef TEST_GC
|
|
|
|
|
|
|
|
void MeasuringTextTestCase::GraphicsGetTextExtent()
|
2009-04-15 18:38:53 -04:00
|
|
|
{
|
|
|
|
wxGraphicsRenderer* renderer = wxGraphicsRenderer::GetDefaultRenderer();
|
|
|
|
CPPUNIT_ASSERT(renderer);
|
|
|
|
wxGraphicsContext* context = renderer->CreateMeasuringContext();
|
|
|
|
CPPUNIT_ASSERT(context);
|
|
|
|
wxFont font(12, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL);
|
|
|
|
CPPUNIT_ASSERT(font.IsOk());
|
|
|
|
context->SetFont(font, *wxBLACK);
|
|
|
|
double width, height, descent, externalLeading = 0.0;
|
|
|
|
context->GetTextExtent("x", &width, &height, &descent, &externalLeading);
|
|
|
|
|
|
|
|
// TODO: Determine a way to make these tests more robust.
|
|
|
|
CPPUNIT_ASSERT(width > 0.0);
|
|
|
|
CPPUNIT_ASSERT(height > 0.0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-17 18:35:49 -04:00
|
|
|
#endif // TEST_GC
|