//Auto-generated by kalyptus. DO NOT EDIT. package org.kde.koala; import org.kde.qt.Qt; import org.kde.qt.TQMetaObject; import org.kde.qt.QtSupport; /** The FileCopyJob copies data from one place to another. @short The FileCopyJob copies data from one place to another. @see #file_copy @see #file_move */ public class FileCopyJob extends Job { protected FileCopyJob(Class dummy){super((Class) null);} public native TQMetaObject metaObject(); public native String className(); /** Do not create a FileCopyJob directly. Use KIO.file_move() or KIO.file_copy() instead. @param src the source URL @param dest the destination URL @param permissions the permissions of the resulting resource @param move true to move, false to copy @param overwrite true to allow overwriting, false otherwise @param resume true to resume an operation, false otherwise @param showProgressInfo true to show progress information to the user @short Do not create a FileCopyJob directly. */ /** If you know the size of the source file, call this method to inform this job. It will be displayed in the "resume" dialog. @param size the size of the source file @short If you know the size of the source file, call this method to inform this job. */ public native void setSourceSize64(long size); /** Returns the source URL. @return the source URL @short Returns the source URL. */ public native KURL srcURL(); /** Returns the destination URL. @return the destination URL @short Returns the destination URL. */ public native KURL destURL(); public native void slotStart(); public native void slotData(Job arg1, byte[] data); public native void slotDataReq(Job arg1, byte[] data); }