You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
#include "KDChartWrapperFactory.h"
|
|
#include <KDChartTable.h>
|
|
#include <tqfont.h>
|
|
#include "wrappers/KDChartParamsWrapper.h"
|
|
#include "wrappers/KDChartTableDataWrapper.h"
|
|
#include "wrappers/KDChartCustomBoxWrapper.h"
|
|
#include <KDChartCustomBox.h>
|
|
#include "wrappers/KDChartAxisParamsWrapper.h"
|
|
|
|
KDChartWrapperFactory::KDChartWrapperFactory()
|
|
{
|
|
registerWrapper( "KDChartParams", "KDChartParamsWrapper" );
|
|
registerWrapper( "KDChartVectorTableData", "KDChartTableDataWrapper" );
|
|
registerWrapper( "KDChartCustomBox", "KDChartCustomBoxWrapper" );
|
|
registerWrapper( "KDChartAxisParams", "KDChartAxisParamsWrapper" );
|
|
}
|
|
|
|
TQObject* KDChartWrapperFactory::create( const TQString& className, void* ptr )
|
|
{
|
|
if ( className == TQString::fromLatin1( "KDChartParams" ) )
|
|
return new KDChartParamsWrapper( static_cast<KDChartParams*>( ptr ) );
|
|
|
|
if ( className == TQString::fromLatin1( "KDChartVectorTableData" ) )
|
|
return new KDChartTableDataWrapper( static_cast<KDChartTableData*>( ptr ) );
|
|
|
|
if ( className == TQString::fromLatin1( "KDChartCustomBox" ) )
|
|
return new KDChartCustomBoxWrapper( static_cast<KDChartCustomBox*>( ptr ) );
|
|
|
|
if ( className == TQString::fromLatin1( "KDChartAxisParams" ) )
|
|
return new KDChartAxisParamsWrapper( static_cast<KDChartAxisParams*>( ptr ) );
|
|
|
|
return 0;
|
|
}
|