##// END OF EJS Templates
Added Python Console and some Wrappers....
Added Python Console and some Wrappers. More code cleaning, WIP.

File last commit:

r4:b41a5ed0a855 default
r5:92e4585e8fab default
Show More
downloadhistoryelement.h
29 lines | 574 B | text/x-c | CLexer
/ src / Core / Widgets / downloadhistoryelement.h
#ifndef DOWNLOADHISTORYELEMENT_H
#define DOWNLOADHISTORYELEMENT_H
#include <QWidget>
#include <filedownloadertask.h>
namespace Ui {
class DownloadHistoryElement;
}
class DownloadHistoryElement : public QWidget
{
Q_OBJECT
public:
explicit DownloadHistoryElement(FileDownloaderTask* task, QWidget *parent = 0);
~DownloadHistoryElement();
public slots:
void updateProgress(int percent);
protected:
void changeEvent(QEvent *e);
private:
Ui::DownloadHistoryElement *ui;
FileDownloaderTask* associatedTask;
};
#endif // DOWNLOADHISTORYELEMENT_H