summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/ReadOnlyPartSignals.java
blob: 812762548c7e2ab1532263d0a5bac14baf12f18e (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQObject;

public interface ReadOnlyPartSignals {
	/**	
		 The part emits this when starting data.
		 If using a TDEIO.Job, it sets the job in the signal, so that
		 progress information can be shown. Otherwise, job is 0.
				@short    The part emits this when starting data.
	*/
	void started(Job arg1);
	/**	
		 Emit this when you have completed loading data.
		 Hosting apps will want to know when the process of loading the data
		 is finished, so that they can access the data when everything is loaded.
				@short    Emit this when you have completed loading data.
	*/
	void completed();
	/**	
		 Same as the above signal except it indicates whether there is
		 a pending action to be executed on a delay timer. An example of
		 this is the meta-refresh tags on web pages used to reload/redirect
		 after a certain period of time. This signal is useful if you want
		 to give the user the ability to cancel such pending actions.
			@param pendingAction true if a pending action exists, false otherwise.
		   		@short    Same as the above signal except it indicates whether there is  a pending action to be executed on a delay timer.
	*/
	void completed(boolean pendingAction);
	/**	
		 Emit this if loading is canceled by the user or by an error.
			@param errMsg the error message, empty if the user canceled the loading voluntarily.
		   		@short    Emit this if loading is canceled by the user or by an error.
	*/
	void canceled(String errMsg);
}