summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KPassivePopup.java
blob: 2cccf9cde94e78aed7e065ab756276dc58b633b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQRect;
import org.kde.qt.TQHideEvent;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
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;

/**

 The simplest uses of KPassivePopup are by using the various message() static
 methods. The position the popup appears at depends on the type of the parent window:

	<li>
	Normal Windows: The popup is placed adjacent to the icon of the window.
	</li>
	
	<li>
	System Tray Windows: The popup is placed adjact to the system tray window itself.
	</li>
	
	<li>
	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 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>
    KPassivePopup.message( "This is the message", this );
 </pre>
 We can create popups with titles and icons too, as this example shows:
 <pre>
    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(TQWidget ) method
 to create a custom popup.
 <pre>
    KPassivePopup pop = new KPassivePopup( parent );
    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>
 See {@link KPassivePopupSignals} for signals emitted by KPassivePopup
		@author Sascha Cunz, sascha.cunz@tiscali.de
 
		@version $Id$

		@short A dialog-like popup that displays messages without interupting the user.

*/
public class KPassivePopup extends TQFrame  {
	protected KPassivePopup(Class dummy){super((Class) null);}
	/**	
		 Styles that a KPassivePopup can have.
				@short    Styles that a KPassivePopup can have.
	*/
	public static final int Boxed = 0;
	public static final int Balloon = 1;
	public static final int CustomStyle = 128;

	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(TQWidget parent, String name, int f) {
		super((Class) null);
		newKPassivePopup(parent,name,f);
	}
	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(TQWidget parent, String name);
	public KPassivePopup(TQWidget parent) {
		super((Class) null);
		newKPassivePopup(parent);
	}
	private native void newKPassivePopup(TQWidget parent);
	public KPassivePopup() {
		super((Class) null);
		newKPassivePopup();
	}
	private native void newKPassivePopup();
	/**	
		 Creates a popup for the specified window.
		     		@short    Creates a popup for the specified window.
	*/
	public KPassivePopup(long parent, String name, int f) {
		super((Class) null);
		newKPassivePopup(parent,name,f);
	}
	private native void newKPassivePopup(long parent, String name, int f);
	public KPassivePopup(long parent, String name) {
		super((Class) null);
		newKPassivePopup(parent,name);
	}
	private native void newKPassivePopup(long parent, String name);
	public KPassivePopup(long parent) {
		super((Class) null);
		newKPassivePopup(parent);
	}
	private native void newKPassivePopup(long parent);
	/**	
		 Creates a popup for the specified widget.
				@short    Creates a popup for the specified widget.
	*/
	public KPassivePopup(int popupStyle, TQWidget parent, String name, int f) {
		super((Class) null);
		newKPassivePopup(popupStyle,parent,name,f);
	}
	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, TQWidget parent, String name);
	public KPassivePopup(int popupStyle, TQWidget parent) {
		super((Class) null);
		newKPassivePopup(popupStyle,parent);
	}
	private native void newKPassivePopup(int popupStyle, TQWidget parent);
	public KPassivePopup(int popupStyle) {
		super((Class) null);
		newKPassivePopup(popupStyle);
	}
	private native void newKPassivePopup(int popupStyle);
	/**	
		 Creates a popup for the specified window.
				@short    Creates a popup for the specified window.
	*/
	public KPassivePopup(int popupStyle, long parent, String name, int f) {
		super((Class) null);
		newKPassivePopup(popupStyle,parent,name,f);
	}
	private native void newKPassivePopup(int popupStyle, long parent, String name, int f);
	public KPassivePopup(int popupStyle, long parent, String name) {
		super((Class) null);
		newKPassivePopup(popupStyle,parent,name);
	}
	private native void newKPassivePopup(int popupStyle, long parent, String name);
	public KPassivePopup(int popupStyle, long parent) {
		super((Class) null);
		newKPassivePopup(popupStyle,parent);
	}
	private native void newKPassivePopup(int popupStyle, long parent);
	/**	
		 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(TQWidget child);
	/**	
		 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(TQWidget) .
		     		@short    Creates a standard view then calls setView(TQWidget ) .
	*/
	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( 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 TQVBox. If left null,
		 then "this", i.e. the passive popup object will be used.
				@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.TQWidget
		@see #setView(
		@see #const
		@see #const
		@see #setView(
		@see #const
		@see #const
		@see #const
		@see org.kde.qt.TQPixmap&
	*/
	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 TQWidget view();
	/**	
		 Returns the delay before the popup is removed automatically.
		     		@short    Returns the delay before the popup is removed automatically.
	*/
	public native int timeout();
	/**	
		 Enables / disables auto-deletion of this widget when the timeout
		 occurs.
		 The default is false. If you use the class-methods message(),
		 auto-delection is turned on by default.
		     		@short    Enables / disables auto-deletion of this widget when the timeout  occurs.
	*/
	public native void setAutoDelete(boolean autoDelete);
	/**	
				@return true if the widget auto-deletes itself when the timeout occurs.

		@short   
		@see #setAutoDelete
	*/
	public native boolean autoDelete();
	/**	
		 Sets the anchor of this balloon. The balloon tries automatically to adjust
		 itself somehow around the point.
				@short    Sets the anchor of this balloon.
	*/
	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
		 clicked() signal to the hide() slot.
		 Setting the delay to -1 makes it use the default value.
				@short    Sets the delay for the popup is removed automatically.
		@see #timeout
	*/
	public native void setTimeout(int delay);
	/**	
		 Reimplemented to reposition the popup.
		     		@short    Reimplemented to reposition the popup.
	*/
	public native void show();
	/**	
		 Shows the popup in the given point
				@short    Shows the popup in the given point
	*/
	public native void show(TQPoint p);
	/**	
		 Convenience method that displays popup with the specified  message  beside the
		 icon of the specified widget.
		 Note that the returned object is destroyed when it is hidden.
				@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, 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.
		 Note that the returned object is destroyed when it is hidden.
				@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, 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.
		 Note that the returned object is destroyed when it is hidden.
				@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, 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.
		 Note that the returned object is destroyed when it is hidden.
				@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, 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.
		 Note that the returned object is destroyed when it is hidden.
				@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, 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.
		 Note that the returned object is destroyed when it is hidden.
				@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, 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.
		 Note that the returned object is destroyed when it is hidden.
				@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, 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.
		 Note that the returned object is destroyed when it is hidden.
				@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, 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.
	*/
	protected native void positionSelf();
	/**	
		 Reimplemented to destroy the object when autoDelete() is
		 enabled.
		     		@short    Reimplemented to destroy the object when autoDelete() is  enabled.
	*/
	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(TQRect target);
	/**	
		 Reimplemented to detect mouse clicks.
		     		@short    Reimplemented to detect mouse clicks.
	*/
	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 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 TQRect defaultArea();
	/**	
		 Updates the transparency mask. Unused if PopupStyle == Boxed
				@short    Updates the transparency mask.
	*/
	protected native void updateMask();
	/**	
		 Overwrite to paint the border when PopupStyle == Balloon.
		 Unused if PopupStyle == Boxed
		     		@short    Overwrite to paint the border when PopupStyle == Balloon.
	*/
	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() */
	public native void dispose();
	/** Has the wrapped C++ instance been deleted? */
	public native boolean isDisposed();
}