2009-03-22 17:31:34 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tests/events/clone.cpp
|
|
|
|
// Purpose: Test wxEvent::Clone() implementation by all event classes
|
|
|
|
// Author: Vadim Zeitlin, based on the code by Francesco Montorsi
|
|
|
|
// Created: 2009-03-22
|
|
|
|
// Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "testprec.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/event.h"
|
2019-07-12 10:10:26 -04:00
|
|
|
#include "wx/timer.h"
|
2009-03-22 17:31:34 -04:00
|
|
|
#endif // WX_PRECOMP
|
|
|
|
|
2019-07-14 08:12:25 -04:00
|
|
|
TEST_CASE("EventClone", "[wxEvent][clone]")
|
2009-03-22 17:31:34 -04:00
|
|
|
{
|
2019-07-12 10:10:26 -04:00
|
|
|
// Dummy timer needed just to create a wxTimerEvent.
|
|
|
|
wxTimer dummyTimer;
|
|
|
|
|
2009-03-22 17:31:34 -04:00
|
|
|
// check if event classes implement Clone() correctly
|
|
|
|
// NOTE: the check is done against _all_ event classes which are linked to
|
|
|
|
// the executable currently running, which are not necessarily all
|
|
|
|
// wxWidgets event classes.
|
|
|
|
const wxClassInfo *ci = wxClassInfo::GetFirst();
|
|
|
|
for (; ci; ci = ci->GetNext())
|
|
|
|
{
|
2009-03-23 07:01:33 -04:00
|
|
|
wxString cn = wxString(ci->GetClassName());
|
2018-07-29 05:09:17 -04:00
|
|
|
|
2009-03-22 17:31:34 -04:00
|
|
|
// is this class derived from wxEvent?
|
|
|
|
if ( !ci->IsKindOf(CLASSINFO(wxEvent)) ||
|
2009-03-23 07:01:33 -04:00
|
|
|
cn == "wxEvent" )
|
2009-03-22 17:31:34 -04:00
|
|
|
continue;
|
|
|
|
|
2019-07-12 10:10:26 -04:00
|
|
|
INFO("Event class \"" << cn << "\"");
|
|
|
|
|
|
|
|
wxEvent* test;
|
|
|
|
if ( ci->IsDynamic() )
|
|
|
|
{
|
|
|
|
test = wxDynamicCast(ci->CreateObject(),wxEvent);
|
|
|
|
}
|
|
|
|
else if ( cn == "wxTimerEvent" )
|
|
|
|
{
|
|
|
|
test = new wxTimerEvent(dummyTimer);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FAIL("Can't create objects of type " + cn);
|
|
|
|
continue;
|
|
|
|
}
|
2009-03-22 17:31:34 -04:00
|
|
|
|
2019-07-12 10:10:26 -04:00
|
|
|
REQUIRE( test );
|
2009-03-22 17:31:34 -04:00
|
|
|
|
|
|
|
wxEvent * const cloned = test->Clone();
|
|
|
|
delete test;
|
|
|
|
|
2019-07-12 10:10:26 -04:00
|
|
|
REQUIRE( cloned );
|
|
|
|
CHECK( cloned->GetClassInfo() == ci );
|
2009-03-22 17:31:34 -04:00
|
|
|
|
|
|
|
delete cloned;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|