KHTML
kjavadownloader.h
Go to the documentation of this file.00001 /* This file is part of the KDE project 00002 * 00003 * Copyright (C) 2000 Wynn Wilkes <wynnw@caldera.com> 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Library General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Library General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Library General Public License 00016 * along with this library; see the file COPYING.LIB. If not, write to 00017 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00018 * Boston, MA 02110-1301, USA. 00019 */ 00020 00021 00022 #ifndef KJAVADOWNLOADER_H 00023 #define KJAVADOWNLOADER_H 00024 00025 #include <QtCore/QObject> 00026 00036 class KJob; 00037 namespace KIO { 00038 class Job; 00039 } 00040 00041 class KJavaDownloaderPrivate; 00042 class KJavaUploaderPrivate; 00043 00044 class KJavaKIOJob : public QObject 00045 { 00046 Q_OBJECT 00047 public: 00048 virtual ~KJavaKIOJob(); 00049 virtual void jobCommand( int cmd ) = 0; 00050 virtual void data( const QByteArray& qb ); 00051 }; 00052 00053 class KJavaDownloader : public KJavaKIOJob 00054 { 00055 Q_OBJECT 00056 00057 public: 00058 KJavaDownloader( int ID, const QString& url ); 00059 ~KJavaDownloader(); 00060 00061 virtual void jobCommand( int cmd ); 00062 protected Q_SLOTS: 00063 void slotData( KIO::Job*, const QByteArray& ); 00064 void slotConnected( KIO::Job* ); 00065 void slotMimetype( KIO::Job*, const QString& ); 00066 void slotResult( KJob* ); 00067 00068 private: 00069 KJavaDownloaderPrivate* const d; 00070 00071 }; 00072 00073 class KJavaUploader : public KJavaKIOJob 00074 { 00075 Q_OBJECT 00076 00077 public: 00078 KJavaUploader( int ID, const QString& url ); 00079 ~KJavaUploader(); 00080 00081 virtual void jobCommand( int cmd ); 00082 virtual void data( const QByteArray& qb ); 00083 void start(); 00084 protected Q_SLOTS: 00085 void slotDataRequest( KIO::Job*, QByteArray& ); 00086 void slotResult( KJob* ); 00087 private: 00088 KJavaUploaderPrivate* const d; 00089 00090 }; 00091 #endif