summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KPassivePopup.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KPassivePopup.java')
-rw-r--r--kdejava/koala/org/kde/koala/KPassivePopup.java148
1 files changed, 74 insertions, 74 deletions
diff --git a/kdejava/koala/org/kde/koala/KPassivePopup.java b/kdejava/koala/org/kde/koala/KPassivePopup.java
index c4c1c571..2cccf9cd 100644
--- a/kdejava/koala/org/kde/koala/KPassivePopup.java
+++ b/kdejava/koala/org/kde/koala/KPassivePopup.java
@@ -2,17 +2,17 @@
package org.kde.koala;
import org.kde.qt.Qt;
-import org.kde.qt.QRect;
-import org.kde.qt.QHideEvent;
-import org.kde.qt.QMetaObject;
+import org.kde.qt.TQRect;
+import org.kde.qt.TQHideEvent;
+import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
-import org.kde.qt.QPixmap;
-import org.kde.qt.QPaintEvent;
-import org.kde.qt.QPoint;
-import org.kde.qt.QMouseEvent;
-import org.kde.qt.QWidget;
-import org.kde.qt.QVBox;
-import org.kde.qt.QFrame;
+import org.kde.qt.TQPixmap;
+import org.kde.qt.TQPaintEvent;
+import org.kde.qt.TQPoint;
+import org.kde.qt.TQMouseEvent;
+import org.kde.qt.TQWidget;
+import org.kde.qt.TQVBox;
+import org.kde.qt.TQFrame;
/**
@@ -31,7 +31,7 @@ import org.kde.qt.QFrame;
Skip Taskbar Windows: The popup is placed adjact to the window
itself if it is visible, and at the edge of the desktop otherwise.
</li>
- You also have the option of calling show with a QPoint as a parameter that
+ You also have the option of calling show with a TQPoint as a parameter that
removes the automatic placing of KPassivePopup and shows it in the point you want.
The most basic use of KPassivePopup displays a popup containing a piece of text:
<pre>
@@ -39,19 +39,19 @@ import org.kde.qt.QFrame;
</pre>
We can create popups with titles and icons too, as this example shows:
<pre>
- QPixmap px;
+ TQPixmap px;
px.load( "hi32-app-logtracker.png" );
KPassivePopup.message( "Some title", "This is the main text", px, this );
</pre>
- For more control over the popup, you can use the setView(QWidget ) method
+ For more control over the popup, you can use the setView(TQWidget ) method
to create a custom popup.
<pre>
KPassivePopup pop = new KPassivePopup( parent );
- QVBox vb = new QVBox( pop );
- new QLabel( vb, "<b>Isn't this great?</b>" );
- QHBox box = new QHBox( vb );
- new QPushButton( box, "Yes" );
- new QPushButton( box, "No" );
+ TQVBox vb = new TQVBox( pop );
+ new TQLabel( vb, "<b>Isn't this great?</b>" );
+ TQHBox box = new TQHBox( vb );
+ new TQPushButton( box, "Yes" );
+ new TQPushButton( box, "No" );
pop.setView( vb );
pop.show();
</pre>
@@ -63,7 +63,7 @@ import org.kde.qt.QFrame;
@short A dialog-like popup that displays messages without interupting the user.
*/
-public class KPassivePopup extends QFrame {
+public class KPassivePopup extends TQFrame {
protected KPassivePopup(Class dummy){super((Class) null);}
/**
Styles that a KPassivePopup can have.
@@ -73,27 +73,27 @@ public class KPassivePopup extends QFrame {
public static final int Balloon = 1;
public static final int CustomStyle = 128;
- public native QMetaObject metaObject();
+ public native TQMetaObject metaObject();
public native String className();
/**
Creates a popup for the specified widget.
@short Creates a popup for the specified widget.
*/
- public KPassivePopup(QWidget parent, String name, int f) {
+ public KPassivePopup(TQWidget parent, String name, int f) {
super((Class) null);
newKPassivePopup(parent,name,f);
}
- private native void newKPassivePopup(QWidget parent, String name, int f);
- public KPassivePopup(QWidget parent, String name) {
+ private native void newKPassivePopup(TQWidget parent, String name, int f);
+ public KPassivePopup(TQWidget parent, String name) {
super((Class) null);
newKPassivePopup(parent,name);
}
- private native void newKPassivePopup(QWidget parent, String name);
- public KPassivePopup(QWidget parent) {
+ private native void newKPassivePopup(TQWidget parent, String name);
+ public KPassivePopup(TQWidget parent) {
super((Class) null);
newKPassivePopup(parent);
}
- private native void newKPassivePopup(QWidget parent);
+ private native void newKPassivePopup(TQWidget parent);
public KPassivePopup() {
super((Class) null);
newKPassivePopup();
@@ -122,21 +122,21 @@ public class KPassivePopup extends QFrame {
Creates a popup for the specified widget.
@short Creates a popup for the specified widget.
*/
- public KPassivePopup(int popupStyle, QWidget parent, String name, int f) {
+ public KPassivePopup(int popupStyle, TQWidget parent, String name, int f) {
super((Class) null);
newKPassivePopup(popupStyle,parent,name,f);
}
- private native void newKPassivePopup(int popupStyle, QWidget parent, String name, int f);
- public KPassivePopup(int popupStyle, QWidget parent, String name) {
+ private native void newKPassivePopup(int popupStyle, TQWidget parent, String name, int f);
+ public KPassivePopup(int popupStyle, TQWidget parent, String name) {
super((Class) null);
newKPassivePopup(popupStyle,parent,name);
}
- private native void newKPassivePopup(int popupStyle, QWidget parent, String name);
- public KPassivePopup(int popupStyle, QWidget parent) {
+ private native void newKPassivePopup(int popupStyle, TQWidget parent, String name);
+ public KPassivePopup(int popupStyle, TQWidget parent) {
super((Class) null);
newKPassivePopup(popupStyle,parent);
}
- private native void newKPassivePopup(int popupStyle, QWidget parent);
+ private native void newKPassivePopup(int popupStyle, TQWidget parent);
public KPassivePopup(int popupStyle) {
super((Class) null);
newKPassivePopup(popupStyle);
@@ -165,35 +165,35 @@ public class KPassivePopup extends QFrame {
Sets the main view to be the specified widget (which must be a child of the popup).
@short Sets the main view to be the specified widget (which must be a child of the popup).
*/
- public native void setView(QWidget child);
+ public native void setView(TQWidget child);
/**
- Creates a standard view then calls setView(QWidget) .
- @short Creates a standard view then calls setView(QWidget ) .
+ Creates a standard view then calls setView(TQWidget) .
+ @short Creates a standard view then calls setView(TQWidget ) .
*/
public native void setView(String caption, String text);
public native void setView(String caption);
/**
- Creates a standard view then calls setView(QWidget) .
- @short Creates a standard view then calls setView(QWidget ) .
+ Creates a standard view then calls setView(TQWidget) .
+ @short Creates a standard view then calls setView(TQWidget ) .
*/
- public native void setView(String caption, String text, QPixmap icon);
+ public native void setView(String caption, String text, TQPixmap icon);
/**
Returns a widget that is used as standard view if one of the
setView() methods taking the String arguments is used.
You can use the returned widget to customize the passivepopup while
keeping the look similar to the "standard" passivepopups.
- After customizing the widget, pass it to setView( QWidget )
+ After customizing the widget, pass it to setView( TQWidget )
@param caption The window caption (title) on the popup
@param text The text for the popup
@param icon The icon to use for the popup
- @param parent The parent widget used for the returned QVBox. If left null,
+ @param parent The parent widget used for the returned TQVBox. If left null,
then "this", i.e. the passive popup object will be used.
- @return a QVBox containing the given arguments, looking like the
+ @return a TQVBox containing the given arguments, looking like the
standard passivepopups.
@short Returns a widget that is used as standard view if one of the setView() methods taking the String arguments is used.
@see #setView(
- @see org.kde.qt.QWidget
+ @see org.kde.qt.TQWidget
@see #setView(
@see #const
@see #const
@@ -201,15 +201,15 @@ public class KPassivePopup extends QFrame {
@see #const
@see #const
@see #const
- @see org.kde.qt.QPixmap&
+ @see org.kde.qt.TQPixmap&
*/
- public native QVBox standardView(String caption, String text, QPixmap icon, QWidget parent);
- public native QVBox standardView(String caption, String text, QPixmap icon);
+ public native TQVBox standardView(String caption, String text, TQPixmap icon, TQWidget parent);
+ public native TQVBox standardView(String caption, String text, TQPixmap icon);
/**
Returns the main view.
@short Returns the main view.
*/
- public native QWidget view();
+ public native TQWidget view();
/**
Returns the delay before the popup is removed automatically.
@short Returns the delay before the popup is removed automatically.
@@ -235,7 +235,7 @@ public class KPassivePopup extends QFrame {
itself somehow around the point.
@short Sets the anchor of this balloon.
*/
- public native void setAnchor(QPoint anchor);
+ public native void setAnchor(TQPoint anchor);
/**
Sets the delay for the popup is removed automatically. Setting the delay to 0
disables the timeout, if you're doing this, you may want to connect the
@@ -254,7 +254,7 @@ public class KPassivePopup extends QFrame {
Shows the popup in the given point
@short Shows the popup in the given point
*/
- public native void show(QPoint p);
+ public native void show(TQPoint p);
/**
Convenience method that displays popup with the specified message beside the
icon of the specified widget.
@@ -262,8 +262,8 @@ public class KPassivePopup extends QFrame {
@short Convenience method that displays popup with the specified message beside the icon of the specified widget.
@see #setAutoDelete
*/
- public static native KPassivePopup message(String text, QWidget parent, String name);
- public static native KPassivePopup message(String text, QWidget parent);
+ public static native KPassivePopup message(String text, TQWidget parent, String name);
+ public static native KPassivePopup message(String text, TQWidget parent);
/**
Convenience method that displays popup with the specified caption and message
beside the icon of the specified widget.
@@ -271,8 +271,8 @@ public class KPassivePopup extends QFrame {
@short Convenience method that displays popup with the specified caption and message beside the icon of the specified widget.
@see #setAutoDelete
*/
- public static native KPassivePopup message(String caption, String text, QWidget parent, String name);
- public static native KPassivePopup message(String caption, String text, QWidget parent);
+ public static native KPassivePopup message(String caption, String text, TQWidget parent, String name);
+ public static native KPassivePopup message(String caption, String text, TQWidget parent);
/**
Convenience method that displays popup with the specified icon, caption and
message beside the icon of the specified widget.
@@ -280,9 +280,9 @@ public class KPassivePopup extends QFrame {
@short Convenience method that displays popup with the specified icon, caption and message beside the icon of the specified widget.
@see #setAutoDelete
*/
- public static native KPassivePopup message(String caption, String text, QPixmap icon, QWidget parent, String name, int timeout);
- public static native KPassivePopup message(String caption, String text, QPixmap icon, QWidget parent, String name);
- public static native KPassivePopup message(String caption, String text, QPixmap icon, QWidget parent);
+ public static native KPassivePopup message(String caption, String text, TQPixmap icon, TQWidget parent, String name, int timeout);
+ public static native KPassivePopup message(String caption, String text, TQPixmap icon, TQWidget parent, String name);
+ public static native KPassivePopup message(String caption, String text, TQPixmap icon, TQWidget parent);
/**
Convenience method that displays popup with the specified icon, caption and
message beside the icon of the specified window.
@@ -290,9 +290,9 @@ public class KPassivePopup extends QFrame {
@short Convenience method that displays popup with the specified icon, caption and message beside the icon of the specified window.
@see #setAutoDelete
*/
- public static native KPassivePopup message(String caption, String text, QPixmap icon, long parent, String name, int timeout);
- public static native KPassivePopup message(String caption, String text, QPixmap icon, long parent, String name);
- public static native KPassivePopup message(String caption, String text, QPixmap icon, long parent);
+ public static native KPassivePopup message(String caption, String text, TQPixmap icon, long parent, String name, int timeout);
+ public static native KPassivePopup message(String caption, String text, TQPixmap icon, long parent, String name);
+ public static native KPassivePopup message(String caption, String text, TQPixmap icon, long parent);
/**
Convenience method that displays popup with the specified popup-style and message beside the
icon of the specified widget.
@@ -300,8 +300,8 @@ public class KPassivePopup extends QFrame {
@short Convenience method that displays popup with the specified popup-style and message beside the icon of the specified widget.
@see #setAutoDelete
*/
- public static native KPassivePopup message(int popupStyle, String text, QWidget parent, String name);
- public static native KPassivePopup message(int popupStyle, String text, QWidget parent);
+ public static native KPassivePopup message(int popupStyle, String text, TQWidget parent, String name);
+ public static native KPassivePopup message(int popupStyle, String text, TQWidget parent);
/**
Convenience method that displays popup with the specified popup-style, caption and message
beside the icon of the specified widget.
@@ -309,8 +309,8 @@ public class KPassivePopup extends QFrame {
@short Convenience method that displays popup with the specified popup-style, caption and message beside the icon of the specified widget.
@see #setAutoDelete
*/
- public static native KPassivePopup message(int popupStyle, String caption, String text, QWidget parent, String name);
- public static native KPassivePopup message(int popupStyle, String caption, String text, QWidget parent);
+ public static native KPassivePopup message(int popupStyle, String caption, String text, TQWidget parent, String name);
+ public static native KPassivePopup message(int popupStyle, String caption, String text, TQWidget parent);
/**
Convenience method that displays popup with the specified popup-style, icon, caption and
message beside the icon of the specified widget.
@@ -318,9 +318,9 @@ public class KPassivePopup extends QFrame {
@short Convenience method that displays popup with the specified popup-style, icon, caption and message beside the icon of the specified widget.
@see #setAutoDelete
*/
- public static native KPassivePopup message(int popupStyle, String caption, String text, QPixmap icon, QWidget parent, String name, int timeout);
- public static native KPassivePopup message(int popupStyle, String caption, String text, QPixmap icon, QWidget parent, String name);
- public static native KPassivePopup message(int popupStyle, String caption, String text, QPixmap icon, QWidget parent);
+ public static native KPassivePopup message(int popupStyle, String caption, String text, TQPixmap icon, TQWidget parent, String name, int timeout);
+ public static native KPassivePopup message(int popupStyle, String caption, String text, TQPixmap icon, TQWidget parent, String name);
+ public static native KPassivePopup message(int popupStyle, String caption, String text, TQPixmap icon, TQWidget parent);
/**
Convenience method that displays popup with the specified popup-style, icon, caption and
message beside the icon of the specified window.
@@ -328,9 +328,9 @@ public class KPassivePopup extends QFrame {
@short Convenience method that displays popup with the specified popup-style, icon, caption and message beside the icon of the specified window.
@see #setAutoDelete
*/
- public static native KPassivePopup message(int popupStyle, String caption, String text, QPixmap icon, long parent, String name, int timeout);
- public static native KPassivePopup message(int popupStyle, String caption, String text, QPixmap icon, long parent, String name);
- public static native KPassivePopup message(int popupStyle, String caption, String text, QPixmap icon, long parent);
+ public static native KPassivePopup message(int popupStyle, String caption, String text, TQPixmap icon, long parent, String name, int timeout);
+ public static native KPassivePopup message(int popupStyle, String caption, String text, TQPixmap icon, long parent, String name);
+ public static native KPassivePopup message(int popupStyle, String caption, String text, TQPixmap icon, long parent);
/**
This method positions the popup.
@short This method positions the popup.
@@ -341,28 +341,28 @@ public class KPassivePopup extends QFrame {
enabled.
@short Reimplemented to destroy the object when autoDelete() is enabled.
*/
- protected native void hideEvent(QHideEvent arg1);
+ protected native void hideEvent(TQHideEvent arg1);
/**
Moves the popup to be adjacent to the icon of the specified rectangle.
@short Moves the popup to be adjacent to the icon of the specified rectangle.
*/
- protected native void moveNear(QRect target);
+ protected native void moveNear(TQRect target);
/**
Reimplemented to detect mouse clicks.
@short Reimplemented to detect mouse clicks.
*/
- protected native void mouseReleaseEvent(QMouseEvent e);
+ protected native void mouseReleaseEvent(TQMouseEvent e);
/**
If no relative window (eg taskbar button, system tray window) is
available, use this rectangle (pass it to moveNear()).
Basically KWinModule.workArea() with width and height set to 0
so that moveNear uses the upper-left position.
- @return The QRect to be passed to moveNear() if no other is
+ @return The TQRect to be passed to moveNear() if no other is
available.
@short If no relative window (eg taskbar button, system tray window) is available, use this rectangle (pass it to moveNear()).
*/
- protected native QRect defaultArea();
+ protected native TQRect defaultArea();
/**
Updates the transparency mask. Unused if PopupStyle == Boxed
@short Updates the transparency mask.
@@ -373,7 +373,7 @@ public class KPassivePopup extends QFrame {
Unused if PopupStyle == Boxed
@short Overwrite to paint the border when PopupStyle == Balloon.
*/
- protected native void paintEvent(QPaintEvent pe);
+ protected native void paintEvent(TQPaintEvent pe);
/** Deletes the wrapped C++ instance */
protected native void finalize() throws InternalError;
/** Delete the wrapped C++ instance ahead of finalize() */