summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDirOperator.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KDirOperator.java')
-rw-r--r--kdejava/koala/org/kde/koala/KDirOperator.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/kdejava/koala/org/kde/koala/KDirOperator.java b/kdejava/koala/org/kde/koala/KDirOperator.java
index 711ad491..c422056c 100644
--- a/kdejava/koala/org/kde/koala/KDirOperator.java
+++ b/kdejava/koala/org/kde/koala/KDirOperator.java
@@ -24,7 +24,7 @@ import org.kde.qt.TQWidget;
show either a simple or detailed view and additionally a preview widget
(see setPreviewWidget()). KImageFilePreview is one implementation
of a preview widget, that displays previews for all supported filetypes
- utilizing KIO.PreviewJob.
+ utilizing TDEIO.PreviewJob.
Currently, those classes don't support Drag&Drop out of the box -- there
you have to use your own view-classes. You can use some DnD-aware views
from Bj�n Sahlstr� <bjorn@kbear.org> until they will be integrated
@@ -528,22 +528,22 @@ public class KDirOperator extends TQWidget {
public native boolean mkdir(String directory, boolean enterDirectory);
public native boolean mkdir(String directory);
/**
- Starts and returns a KIO.DeleteJob to delete the given <code>items.</code>
+ Starts and returns a TDEIO.DeleteJob to delete the given <code>items.</code>
@param items the list of items to be deleted
@param ask specifies whether a confirmation dialog should be shown
@param showProgress passed to the DeleteJob to show a progress dialog
- @short Starts and returns a KIO.DeleteJob to delete the given <code>items.</code>
+ @short Starts and returns a TDEIO.DeleteJob to delete the given <code>items.</code>
*/
public native DeleteJob del(ArrayList items, boolean ask, boolean showProgress);
public native DeleteJob del(ArrayList items, boolean ask);
public native DeleteJob del(ArrayList items);
/**
- Starts and returns a KIO.DeleteJob to delete the given <code>items.</code>
+ Starts and returns a TDEIO.DeleteJob to delete the given <code>items.</code>
@param items the list of items to be deleted
@param parent the parent widget used for the confirmation dialog
@param ask specifies whether a confirmation dialog should be shown
@param showProgress passed to the DeleteJob to show a progress dialog
- @short Starts and returns a KIO.DeleteJob to delete the given <code>items.</code>
+ @short Starts and returns a TDEIO.DeleteJob to delete the given <code>items.</code>
*/
public native DeleteJob del(ArrayList items, TQWidget parent, boolean ask, boolean showProgress);
public native DeleteJob del(ArrayList items, TQWidget parent, boolean ask);
@@ -596,12 +596,12 @@ public class KDirOperator extends TQWidget {
*/
public native void setDropOptions(int options);
/**
- Starts and returns a KIO.CopyJob to trash the given <code>items.</code>
+ Starts and returns a TDEIO.CopyJob to trash the given <code>items.</code>
@param items the list of items to be trashed
@param parent the parent widget used for the confirmation dialog
@param ask specifies whether a confirmation dialog should be shown
@param showProgress passed to the CopyJob to show a progress dialog
- @short Starts and returns a KIO.CopyJob to trash the given <code>items.</code>
+ @short Starts and returns a TDEIO.CopyJob to trash the given <code>items.</code>
*/
public native CopyJob trash(ArrayList items, TQWidget parent, boolean ask, boolean showProgress);
public native CopyJob trash(ArrayList items, TQWidget parent, boolean ask);
@@ -725,10 +725,10 @@ public class KDirOperator extends TQWidget {
*/
protected native void prepareCompletionObjects();
/**
- Checks if there support from KIO.PreviewJob for the currently
+ Checks if there support from TDEIO.PreviewJob for the currently
shown files, taking mimeFilter() and nameFilter() into account
Enables/disables the preview-action accordingly.
- @short Checks if there support from KIO.PreviewJob for the currently shown files, taking mimeFilter() and nameFilter() into account Enables/disables the preview-action accordingly.
+ @short Checks if there support from TDEIO.PreviewJob for the currently shown files, taking mimeFilter() and nameFilter() into account Enables/disables the preview-action accordingly.
*/
protected native boolean checkPreviewSupport();
/**