##// 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
downloadhistory.h
28 lines | 507 B | text/x-c | CLexer
#ifndef DOWNLOADHISTORY_H
#define DOWNLOADHISTORY_H
#include <QWidget>
#include <downloadhistoryelement.h>
#include <QVBoxLayout>
namespace Ui {
class DownLoadHistory;
}
class DownLoadHistory : public QWidget
{
Q_OBJECT
public:
explicit DownLoadHistory(QWidget *parent = 0);
~DownLoadHistory();
void addElement(DownloadHistoryElement* element);
protected:
void changeEvent(QEvent *e);
private:
Ui::DownLoadHistory *ui;
QVBoxLayout* vblayout;
};
#endif // DOWNLOADHISTORY_H