diff options
Diffstat (limited to 'tdeparts/browserinterface.cpp')
-rw-r--r-- | tdeparts/browserinterface.cpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/tdeparts/browserinterface.cpp b/tdeparts/browserinterface.cpp new file mode 100644 index 000000000..e02ae34cc --- /dev/null +++ b/tdeparts/browserinterface.cpp @@ -0,0 +1,58 @@ + +#include "browserinterface.h" + +#include <tqmetaobject.h> + +#include <config.h> +#include <tqucomextra_p.h> + +using namespace KParts; + +BrowserInterface::BrowserInterface( TQObject *parent, const char *name ) + : TQObject( parent, name ) +{ +} + +BrowserInterface::~BrowserInterface() +{ +} + +void BrowserInterface::callMethod( const char *name, const TQVariant &argument ) +{ + int slot = metaObject()->findSlot( name ); + + if ( slot == -1 ) + return; + + TQUObject o[ 2 ]; + TQStringList strLst; + uint i; + + switch ( argument.type() ) + { + case TQVariant::Invalid: + break; + case TQVariant::String: + static_TQUType_TQString.set( o + 1, argument.toString() ); + break; + case TQVariant::StringList: + strLst = argument.toStringList(); + static_TQUType_ptr.set( o + 1, &strLst ); + break; + case TQVariant::Int: + static_TQUType_int.set( o + 1, argument.toInt() ); + break; + case TQVariant::UInt: + i = argument.toUInt(); + static_TQUType_ptr.set( o + 1, &i ); + break; + case TQVariant::Bool: + static_TQUType_bool.set( o + 1, argument.toBool() ); + break; + default: return; + } + + tqt_invoke( slot, o ); +} + +#include "browserinterface.moc" |