kio Library API Documentation

renamedlg.h

00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2000 Stephan Kulow <coolo@kde.org> 00003 David Faure <faure@kde.org> 00004 2001 Holger Freyther <freyther@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_rename_dlg__ 00023 #define __kio_rename_dlg__ "$Id: renamedlg.h,v 1.13 2004/06/13 09:52:53 faure Exp $" 00024 00025 #include <kurl.h> 00026 #include <qdialog.h> 00027 #include <qstring.h> 00028 #include <sys/types.h> 00029 00030 #include <kio/global.h> 00031 00032 namespace KIO { 00033 00034 // KDE4: get rid of M_OVERWRITE_ITSELF, trigger it internally if src==dest 00035 enum RenameDlg_Mode { M_OVERWRITE = 1, M_OVERWRITE_ITSELF = 2, M_SKIP = 4, M_SINGLE = 8, M_MULTI = 16, M_RESUME = 32, M_NORENAME = 64 }; 00036 00040 enum RenameDlg_Result { R_RESUME = 6, R_RESUME_ALL = 7, R_OVERWRITE = 4, R_OVERWRITE_ALL = 5, R_SKIP = 2, R_AUTO_SKIP = 3, R_RENAME = 1, R_CANCEL = 0 }; 00041 00042 00048 class RenameDlg : public QDialog 00049 { 00050 Q_OBJECT 00051 public: 00068 RenameDlg( QWidget *parent, const QString & caption, 00069 // KDE4: make those KURLs, and use prettyURL(0, KURL::StripFileProtocol) internally. 00070 const QString & src, const QString & dest, 00071 RenameDlg_Mode mode, 00072 KIO::filesize_t sizeSrc = (KIO::filesize_t) -1, 00073 KIO::filesize_t sizeDest = (KIO::filesize_t) -1, 00074 time_t ctimeSrc = (time_t) -1, 00075 time_t ctimeDest = (time_t) -1, 00076 time_t mtimeSrc = (time_t) -1, 00077 time_t mtimeDest = (time_t) -1, 00078 bool modal = false ); 00079 ~RenameDlg(); 00080 00085 KURL newDestURL(); 00086 00087 00088 00089 public slots: 00091 void b0Pressed(); 00092 void b1Pressed(); 00093 void b2Pressed(); 00094 void b3Pressed(); 00095 void b4Pressed(); 00096 void b5Pressed(); 00097 void b6Pressed(); 00098 void b7Pressed(); 00099 void b8Pressed(); 00100 00101 protected slots: 00102 void enableRenameButton(const QString &); 00103 private: 00104 class RenameDlgPrivate; 00105 RenameDlgPrivate *d; 00106 void pluginHandling( ); 00107 }; 00108 00131 RenameDlg_Result open_RenameDlg( const QString & caption, 00132 // KDE4: make those KURLs, and use prettyURL(0, KURL::StripFileProtocol) internally. 00133 const QString& src, const QString & dest, 00134 RenameDlg_Mode mode, QString& newDestPath, 00135 KIO::filesize_t sizeSrc = (KIO::filesize_t) -1, 00136 KIO::filesize_t sizeDest = (KIO::filesize_t) -1, 00137 time_t ctimeSrc = (time_t) -1, 00138 time_t ctimeDest = (time_t) -1, 00139 time_t mtimeSrc = (time_t) -1, 00140 time_t mtimeDest = (time_t) -1 00141 ); 00142 00145 } 00146 #endif
KDE Logo
This file is part of the documentation for kio Library Version 3.3.1.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Sun Oct 17 11:29:31 2004 by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2003