kio Library API Documentation

job.h

00001 // -*- c++ -*-
00002 /* This file is part of the KDE libraries
00003     Copyright (C) 2000 Stephan Kulow <coolo@kde.org>
00004                        David Faure <faure@kde.org>
00005 
00006     This library is free software; you can redistribute it and/or
00007     modify it under the terms of the GNU Library General Public
00008     License as published by the Free Software Foundation; either
00009     version 2 of the License, or (at your option) any later version.
00010 
00011     This library is distributed in the hope that it will be useful,
00012     but WITHOUT ANY WARRANTY; without even the implied warranty of
00013     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014     Library General Public License for more details.
00015 
00016     You should have received a copy of the GNU Library General Public License
00017     along with this library; see the file COPYING.LIB.  If not, write to
00018     the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00019     Boston, MA 02111-1307, USA.
00020 */
00021 
00022 #ifndef __kio_job_h__
00023 #define __kio_job_h__
00024 
00025 #include <kio/jobclasses.h>
00026 
00027 namespace KIO {
00028 
00029 
00041     SimpleJob * mkdir( const KURL& url, int permissions = -1 );
00042 
00053     SimpleJob * rmdir( const KURL& url );
00054 
00064     SimpleJob * chmod( const KURL& url, int permissions );
00065 
00077     SimpleJob * rename( const KURL& src, const KURL & dest, bool overwrite );
00078 
00090     SimpleJob * symlink( const QString & target, const KURL& dest, bool overwrite, bool showProgressInfo = true );
00091 
00104     SimpleJob * special( const KURL& url, const QByteArray & data, bool showProgressInfo = true );
00105 
00118     SimpleJob *mount( bool ro, const char *fstype, const QString& dev, const QString& point, bool showProgressInfo = true );
00119 
00129     SimpleJob *unmount( const QString & point, bool showProgressInfo = true );
00130 
00140     SimpleJob *http_update_cache( const KURL& url, bool no_cache, time_t expireDate);
00141 
00149     StatJob * stat( const KURL& url, bool showProgressInfo = true );
00177     StatJob * stat( const KURL& url, bool sideIsSource, short int details, bool showProgressInfo = true );
00178 
00188     TransferJob *get( const KURL& url, bool reload=false, bool showProgressInfo = true );
00189 
00201     TransferJob *put( const KURL& url, int permissions,
00202                       bool overwrite, bool resume, bool showProgressInfo = true );
00203 
00232     TransferJob *http_post( const KURL& url, const QByteArray &postData,
00233                             bool showProgressInfo = true );
00234 
00243     MultiGetJob *multi_get( long id, const KURL &url, const MetaData &metaData);
00244 
00252     MimetypeJob * mimetype( const KURL& url,
00253                             bool showProgressInfo = true );
00254 
00268     FileCopyJob *file_copy( const KURL& src, const KURL& dest, int permissions=-1,
00269                             bool overwrite=false, bool resume=false,
00270                             bool showProgressInfo = true);
00271 
00285     FileCopyJob *file_move( const KURL& src, const KURL& dest, int permissions=-1,
00286                             bool overwrite=false, bool resume=false,
00287                             bool showProgressInfo = true);
00288 
00296     SimpleJob *file_delete( const KURL& src, bool showProgressInfo = true);
00297 
00310     ListJob *listDir( const KURL& url, bool showProgressInfo = true,
00311                       bool includeHidden = true );
00312 
00325     ListJob *listRecursive( const KURL& url, bool showProgressInfo = true,
00326                             bool includeHidden = true );
00327 
00341     CopyJob *copy( const KURL& src, const KURL& dest, bool showProgressInfo = true );
00342 
00356     CopyJob *copyAs( const KURL& src, const KURL& dest, bool showProgressInfo = true );
00357 
00366     CopyJob *copy( const KURL::List& src, const KURL& dest, bool showProgressInfo = true );
00367 
00378     CopyJob *move( const KURL& src, const KURL& dest, bool showProgressInfo = true );
00389     CopyJob *moveAs( const KURL& src, const KURL& dest, bool showProgressInfo = true );
00399     CopyJob *move( const KURL::List& src, const KURL& dest, bool showProgressInfo = true );
00400 
00411     CopyJob *link( const KURL& src, const KURL& destDir, bool showProgressInfo = true );
00412 
00424     CopyJob *link( const KURL::List& src, const KURL& destDir, bool showProgressInfo = true );
00425 
00439     CopyJob *linkAs( const KURL& src, const KURL& dest, bool showProgressInfo = true );
00440 
00450     DeleteJob *del( const KURL& src, bool shred = false, bool showProgressInfo = true );
00451 
00461     DeleteJob *del( const KURL::List& src, bool shred = false, bool showProgressInfo = true );
00462 }
00463 
00464 #endif
00465 
KDE Logo
This file is part of the documentation for kio Library Version 3.2.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Tue Feb 14 09:17:07 2006 by doxygen 1.3.6 written by Dimitri van Heesch, © 1997-2003