summaryrefslogtreecommitdiffstats
path: root/kparts/browserinterface.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch)
tree5ac38a06f3dde268dc7927dc155896926aaf7012 /kparts/browserinterface.cpp
downloadtdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz
tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kparts/browserinterface.cpp')
-rw-r--r--kparts/browserinterface.cpp58
1 files changed, 58 insertions, 0 deletions
diff --git a/kparts/browserinterface.cpp b/kparts/browserinterface.cpp
new file mode 100644
index 000000000..77e12e2b8
--- /dev/null
+++ b/kparts/browserinterface.cpp
@@ -0,0 +1,58 @@
+
+#include "browserinterface.h"
+
+#include <qmetaobject.h>
+
+#include <config.h>
+#include <private/qucomextra_p.h>
+
+using namespace KParts;
+
+BrowserInterface::BrowserInterface( QObject *parent, const char *name )
+ : QObject( parent, name )
+{
+}
+
+BrowserInterface::~BrowserInterface()
+{
+}
+
+void BrowserInterface::callMethod( const char *name, const QVariant &argument )
+{
+ int slot = metaObject()->findSlot( name );
+
+ if ( slot == -1 )
+ return;
+
+ QUObject o[ 2 ];
+ QStringList strLst;
+ uint i;
+
+ switch ( argument.type() )
+ {
+ case QVariant::Invalid:
+ break;
+ case QVariant::String:
+ static_QUType_QString.set( o + 1, argument.toString() );
+ break;
+ case QVariant::StringList:
+ strLst = argument.toStringList();
+ static_QUType_ptr.set( o + 1, &strLst );
+ break;
+ case QVariant::Int:
+ static_QUType_int.set( o + 1, argument.toInt() );
+ break;
+ case QVariant::UInt:
+ i = argument.toUInt();
+ static_QUType_ptr.set( o + 1, &i );
+ break;
+ case QVariant::Bool:
+ static_QUType_bool.set( o + 1, argument.toBool() );
+ break;
+ default: return;
+ }
+
+ qt_invoke( slot, o );
+}
+
+#include "browserinterface.moc"