mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 1999-2006 David Faure <faure@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License version 2 as published by the Free Software Foundation.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef KIOCLIENT_H
|
|
#define KIOCLIENT_H
|
|
|
|
#include <QApplication>
|
|
#include <kio/udsentry.h>
|
|
class KUrl;
|
|
class KJob;
|
|
namespace KIO { class Job; }
|
|
|
|
class ClientApp : public QApplication
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ClientApp(int &argc, char **argv );
|
|
|
|
/** Parse command-line arguments and "do it" */
|
|
static bool doIt();
|
|
|
|
private Q_SLOTS:
|
|
void slotPrintData(KIO::Job *job, const QByteArray &data);
|
|
void slotEntries(KIO::Job* job, const KIO::UDSEntryList& );
|
|
void slotResult( KJob * );
|
|
void delayedQuit();
|
|
void slotDialogCanceled();
|
|
void deref();
|
|
|
|
private:
|
|
bool kde_open( const KUrl& url, const QString& mimeType, bool allowExec );
|
|
bool doCopy( int firstArg );
|
|
bool doMove( int firstArg );
|
|
bool doList( int firstArg );
|
|
bool doRemove( int firstArg );
|
|
|
|
static bool m_ok;
|
|
};
|
|
|
|
#endif
|