##// END OF EJS Templates
Removed hack from QCustomPlot, moved to QCustomPlotVect class.
Removed hack from QCustomPlot, moved to QCustomPlotVect class.

File last commit:

r4:b41a5ed0a855 default
r7:6e23aedd1ca8 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