summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/BrowserInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/BrowserInterface.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/BrowserInterface.java55
1 files changed, 55 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/BrowserInterface.java b/tdejava/koala/org/trinitydesktop/koala/BrowserInterface.java
new file mode 100644
index 00000000..8cf496ca
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/BrowserInterface.java
@@ -0,0 +1,55 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.TQMetaObject;
+import org.trinitydesktop.qt.QtSupport;
+import org.trinitydesktop.qt.TQObject;
+import org.trinitydesktop.qt.TQVariant;
+import org.trinitydesktop.qt.TQObject;
+
+/**
+
+ 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:
+ <code>
+ TQ_PROPERTY( uint historyLength READ historyLength );
+ </code>
+ Callable methods:
+ <code>
+ void goHistory( int );
+ </code>
+ @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 TQObject {
+ protected BrowserInterface(Class dummy){super((Class) null);}
+ public native TQMetaObject metaObject();
+ public native String className();
+ public BrowserInterface(TQObject parent, String name) {
+ super((Class) null);
+ newBrowserInterface(parent,name);
+ }
+ private native void newBrowserInterface(TQObject parent, String name);
+ public BrowserInterface(TQObject parent) {
+ super((Class) null);
+ newBrowserInterface(parent);
+ }
+ private native void newBrowserInterface(TQObject 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, TQVariant argument);
+}