You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ksquirrel/ksquirrel/ksquirrelpart/sq_diroperator.h

59 lines
1.7 KiB

/***************************************************************************
sq_diroperator.h - description
-------------------
begin : Thu Nov 29 2007
copyright : (C) 2007 by Baryshev Dmitry
email : ksquirrel.iv@gmail.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef SQ_DIROPERATOR_H
#define SQ_DIROPERATOR_H
#include <tdefileitem.h>
#include <tqobject.h>
class SQ_Downloader;
class KURL;
class SQ_DirOperator : public TQObject
{
TQ_OBJECT
public:
SQ_DirOperator(TQObject *parent = 0);
~SQ_DirOperator();
static SQ_DirOperator* instance() { return m_inst; }
void execute(KFileItem *item);
void del(const KURL &u, TQWidget *parent = 0);
private:
void executePrivate(KFileItem *);
private slots:
void slotDownloadPercents(int);
void slotDownloaderResult(const KURL &);
private:
SQ_Downloader *down;
static SQ_DirOperator *m_inst;
};
#endif