summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/ProgressBase.java
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-08 16:06:53 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-08 16:06:53 -0600
commita3c2194df529034bd2e1be44f969619bf6d2f162 (patch)
tree22bfa4c3513bcaa6f33472494f72f1ca060af0cc /kdejava/koala/org/kde/koala/ProgressBase.java
parent60b0254722703ce6c4e4a8742abbd4c041447c6d (diff)
downloadtdebindings-a3c2194df529034bd2e1be44f969619bf6d2f162.tar.gz
tdebindings-a3c2194df529034bd2e1be44f969619bf6d2f162.zip
Fix references to KIO
Diffstat (limited to 'kdejava/koala/org/kde/koala/ProgressBase.java')
-rw-r--r--kdejava/koala/org/kde/koala/ProgressBase.java44
1 files changed, 22 insertions, 22 deletions
diff --git a/kdejava/koala/org/kde/koala/ProgressBase.java b/kdejava/koala/org/kde/koala/ProgressBase.java
index 476c2287..c661280c 100644
--- a/kdejava/koala/org/kde/koala/ProgressBase.java
+++ b/kdejava/koala/org/kde/koala/ProgressBase.java
@@ -21,7 +21,7 @@ import org.kde.qt.TQWidget;
Custom progress dialog will be used like this :
<pre>
// create job
- CopyJob job = KIO.copy(...);
+ CopyJob job = TDEIO.copy(...);
// create a dialog
MyCustomProgress customProgress;
customProgress = new MyCustomProgress();
@@ -52,33 +52,33 @@ public class ProgressBase extends TQWidget {
}
private native void newProgressBase(TQWidget parent);
/**
- Assign a KIO.Job to this progress dialog.
+ Assign a TDEIO.Job to this progress dialog.
@param job the job to assign
- @short Assign a KIO.Job to this progress dialog.
+ @short Assign a TDEIO.Job to this progress dialog.
*/
public native void setJob(Job job);
/**
- Assign a KIO.Job to this progress dialog.
+ Assign a TDEIO.Job to this progress dialog.
@param job the job to assign
- @short Assign a KIO.Job to this progress dialog.
+ @short Assign a TDEIO.Job to this progress dialog.
*/
public native void setJob(CopyJob job);
/**
- Assign a KIO.Job to this progress dialog.
+ Assign a TDEIO.Job to this progress dialog.
@param job the job to assign
- @short Assign a KIO.Job to this progress dialog.
+ @short Assign a TDEIO.Job to this progress dialog.
*/
public native void setJob(DeleteJob job);
public native void setStopOnClose(boolean stopOnClose);
public native boolean stopOnClose();
/**
This controls whether the dialog should be deleted or only cleaned when
- the KIO.Job is finished (or canceled).
+ the TDEIO.Job is finished (or canceled).
If your dialog is an embedded widget and not a separate window, you should
setOnlyClean(true) in the constructor of your custom dialog.
@param onlyClean If true the dialog will only call method slotClean.
If false the dialog will be deleted.
- @short This controls whether the dialog should be deleted or only cleaned when the KIO.Job is finished (or canceled).
+ @short This controls whether the dialog should be deleted or only cleaned when the TDEIO.Job is finished (or canceled).
@see #onlyClean
*/
public native void setOnlyClean(boolean onlyClean);
@@ -110,63 +110,63 @@ public class ProgressBase extends TQWidget {
public native void slotClean();
/**
Called to set the total size.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param size the total size in bytes
@short Called to set the total size.
*/
public native void slotTotalSize(Job job, long size);
/**
Called to set the total number of files.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param files the number of files
@short Called to set the total number of files.
*/
public native void slotTotalFiles(Job job, long files);
/**
Called to set the total number of directories.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param dirs the number of directories
@short Called to set the total number of directories.
*/
public native void slotTotalDirs(Job job, long dirs);
/**
Called to set the processed size.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param bytes the processed size in bytes
@short Called to set the processed size.
*/
public native void slotProcessedSize(Job job, long bytes);
/**
Called to set the number of processed files.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param files the number of files
@short Called to set the number of processed files.
*/
public native void slotProcessedFiles(Job job, long files);
/**
Called to set the number of processed directories.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param dirs the number of directories
@short Called to set the number of processed directories.
*/
public native void slotProcessedDirs(Job job, long dirs);
/**
Called to set the speed.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param speed the speed in bytes/second
@short Called to set the speed.
*/
public native void slotSpeed(Job job, long speed);
/**
Called to set the percentage.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param percent the percentage
@short Called to set the percentage.
*/
public native void slotPercent(Job job, long percent);
/**
Called when the job is copying.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param src the source of the operation
@param dest the destination of the operation
@short Called when the job is copying.
@@ -174,7 +174,7 @@ public class ProgressBase extends TQWidget {
public native void slotCopying(Job job, KURL src, KURL dest);
/**
Called when the job is moving.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param src the source of the operation
@param dest the destination of the operation
@short Called when the job is moving.
@@ -182,21 +182,21 @@ public class ProgressBase extends TQWidget {
public native void slotMoving(Job job, KURL src, KURL dest);
/**
Called when the job is deleting.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param url the URL to delete
@short Called when the job is deleting.
*/
public native void slotDeleting(Job job, KURL url);
/**
Called when the job is creating a directory.
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param dir the URL of the directory to create
@short Called when the job is creating a directory.
*/
public native void slotCreatingDir(Job job, KURL dir);
/**
Called when the job is resuming..
- @param job the KIO.Job
+ @param job the TDEIO.Job
@param from the position to resume from in bytes
@short Called when the job is resuming.
*/