summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/StatusBarExtension.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/StatusBarExtension.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/StatusBarExtension.java85
1 files changed, 85 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/StatusBarExtension.java b/tdejava/koala/org/trinitydesktop/koala/StatusBarExtension.java
new file mode 100644
index 00000000..69202636
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/StatusBarExtension.java
@@ -0,0 +1,85 @@
+//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.TQEvent;
+import org.trinitydesktop.qt.TQWidget;
+import org.trinitydesktop.qt.TQObject;
+
+/**
+
+ Every part can use this class to customize the statusbar as long as it is active.
+ Add items via addStatusBarItem() and remove an item with removeStatusBarItem().
+ IMPORTANT: do NOT add any items immediately after constructing the extension.
+ Give the application time to set the statusbar in the extension if necessary.
+ @short An extension for KParts that allows more sophisticated statusbar handling.
+
+*/
+public class StatusBarExtension extends TQObject {
+ protected StatusBarExtension(Class dummy){super((Class) null);}
+ public native TQMetaObject metaObject();
+ public native String className();
+ public StatusBarExtension(ReadOnlyPart parent, String name) {
+ super((Class) null);
+ newStatusBarExtension(parent,name);
+ }
+ private native void newStatusBarExtension(ReadOnlyPart parent, String name);
+ public StatusBarExtension(ReadOnlyPart parent) {
+ super((Class) null);
+ newStatusBarExtension(parent);
+ }
+ private native void newStatusBarExtension(ReadOnlyPart parent);
+ /**
+ This adds a widget to the statusbar for this part.
+ If you use this method instead of using statusBar() directly,
+ this extension will take care of removing the items when the parts GUI
+ is deactivated and will re-add them when it is reactivated.
+ The parameters are the same as TQStatusBar.addWidget().
+ Note that you can't use KStatusBar methods (inserting text items by id)
+ but you can create a KStatusBarLabel with a dummy id instead, and use
+ it directly in order to get the same look and feel.
+ @param widget the widget to add
+ @param stretch the stretch factor. 0 for a minimum size.
+ @param permanent passed to TQStatusBar.addWidget as the "permanent" boolean.
+ Note that the item isn't really permanent though, it goes away when
+ the part is unactivated. This simply controls where temporary messages
+ hide the <code>widget</code>, and whether it's added to the left or to the right side.
+ IMPORTANT: do NOT add any items immediately after constructing the extension.
+ Give the application time to set the statusbar in the extension if necessary.
+ @short This adds a widget to the statusbar for this part.
+ */
+ public native void addStatusBarItem(TQWidget widget, int stretch, boolean permanent);
+ /**
+ Remove a <code>widget</code> from the statusbar for this part.
+ @short Remove a <code>widget</code> from the statusbar for this part.
+ */
+ public native void removeStatusBarItem(TQWidget widget);
+ /**
+ @return the statusbar of the TDEMainWindow in which this part is currently embedded.
+ WARNING: this could return 0L
+
+ @short
+ */
+ public native KStatusBar statusBar();
+ /**
+ This allows the hosting application to set a particular KStatusBar
+ for this part. If it doesn't do this, the statusbar used will be
+ the one of the TDEMainWindow in which the part is embedded.
+ Konqueror uses this to assign a view-statusbar to the part.
+ The part should never call this method!
+ @short This allows the hosting application to set a particular KStatusBar for this part.
+ */
+ public native void setStatusBar(KStatusBar status);
+ /** @internal @short @internal
+ */
+ public native boolean eventFilter(TQObject watched, TQEvent ev);
+ /**
+ Queries <code>obj</code> for a child object which inherits from this
+ BrowserExtension class. Convenience method.
+ @short Queries <code>obj</code> for a child object which inherits from this BrowserExtension class.
+ */
+ public static native StatusBarExtension childObject(TQObject arg1);
+}