kde-workspace/kioclient/kioclient.h

51 lines
1.5 KiB
C
Raw Normal View History

2014-11-15 04:16:00 +02:00
/* 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.
*/
2015-07-11 18:25:01 +03:00
#ifndef KIOCLIENT_H
#define KIOCLIENT_H
2014-11-15 04:16:00 +02:00
#include <kapplication.h>
#include <kurl.h>
2014-11-15 04:16:00 +02:00
#include <kio/udsentry.h>
#include <kio/job.h>
2014-11-15 04:16:00 +02:00
class ClientApp : public KApplication
2014-11-15 04:16:00 +02:00
{
Q_OBJECT
public:
/** 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 slotDialogCanceled();
private:
bool kde_open( const KUrl& url, const QString& mimeType );
2014-11-15 04:16:00 +02:00
bool doCopy( int firstArg );
bool doMove( int firstArg );
bool doList( int firstArg );
bool doRemove( int firstArg );
static bool m_ok;
};
#endif