You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KDirNotify.java

51 lines
2.0 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QtSupport;
import java.util.ArrayList;
/**
An abstract class that receives notifications of added and removed files
in any directory, local or remote.
The information comes from the konqueror/kdesktop instance where the
operation was done, and can interest KDirListers, bookmark handlers, etc.
@short An abstract class that receives notifications of added and removed files in any directory, local or remote.
*/
public class KDirNotify extends DCOPObject {
protected KDirNotify(Class dummy){super((Class) null);}
/**
Notify that files have been added in <code>directory</code>
Note: this is ASYNC so that it can be used with a broadcast.
@param directory the directory that contains the new files
@short Notify that files have been added in <code>directory</code> Note: this is ASYNC so that it can be used with a broadcast.
*/
// void FilesAdded(const KURL& arg1); >>>> NOT CONVERTED
/**
Notify that files have been deleted.
Note: this is ASYNC so that it can be used with a broadcast
@param fileList the files that have been deleted
@short Notify that files have been deleted.
*/
// void FilesRemoved(const KURL::List& arg1); >>>> NOT CONVERTED
/**
Notify that files have been changed.
At the moment, this is only used for new icon, but it could be
used for size etc. as well.
Note: this is ASYNC so that it can be used with a broadcast.
@param fileList the list of changed files
@short Notify that files have been changed.
*/
// void FilesChanged(const KURL::List& arg1); >>>> NOT CONVERTED
/**
Notify that a file has been renamed.
Note: this is ASYNC so that it can be used with a broadcast
@param src a list containing original names of the renamed files
@param dst a list of original names of the renamed files
@short Notify that a file has been renamed.
*/
// void FileRenamed(const KURL& arg1,const KURL& arg2); >>>> NOT CONVERTED
}