From 90825e2392b2d70e43c7a25b8a3752299a933894 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdejava/koala/org/kde/koala/BrowserInterface.java | 55 +++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 kdejava/koala/org/kde/koala/BrowserInterface.java (limited to 'kdejava/koala/org/kde/koala/BrowserInterface.java') diff --git a/kdejava/koala/org/kde/koala/BrowserInterface.java b/kdejava/koala/org/kde/koala/BrowserInterface.java new file mode 100644 index 00000000..7a951e0e --- /dev/null +++ b/kdejava/koala/org/kde/koala/BrowserInterface.java @@ -0,0 +1,55 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.QMetaObject; +import org.kde.qt.QtSupport; +import org.kde.qt.QObject; +import org.kde.qt.QVariant; +import org.kde.qt.QObject; + +/** + + The purpose of this interface is to allow a direct communication between + a KPart and the hosting browser shell (for example Konqueror) . A + shell implementing this interface can propagate it to embedded kpart + components by using the setBrowserInterface call of the part's + KParts.BrowserExtension object. + This interface looks not very rich, but the main functionality is + implemented using the callMethod method for part.shell + communication and using Qt properties for allowing a part to + to explicitly query information from the shell. + Konqueror in particular, as 'reference' implementation, provides + the following functionality through this interface: + Qt properties: + + Q_PROPERTY( uint historyLength READ historyLength ); + + Callable methods: + + void goHistory( int ); + + @short The purpose of this interface is to allow a direct communication between a KPart and the hosting browser shell (for example Konqueror) . + +*/ +public class BrowserInterface extends QObject { + protected BrowserInterface(Class dummy){super((Class) null);} + public native QMetaObject metaObject(); + public native String className(); + public BrowserInterface(QObject parent, String name) { + super((Class) null); + newBrowserInterface(parent,name); + } + private native void newBrowserInterface(QObject parent, String name); + public BrowserInterface(QObject parent) { + super((Class) null); + newBrowserInterface(parent); + } + private native void newBrowserInterface(QObject parent); + /** + Perform a dynamic invocation of a method in the BrowserInterface + implementation. Methods are to be implemented as simple Qt slots. + @short Perform a dynamic invocation of a method in the BrowserInterface implementation. + */ + public native void callMethod(String name, QVariant argument); +} -- cgit v1.2.3