##// END OF EJS Templates
added quick fileName generation for data export, and fixed wrong date reading...
added quick fileName generation for data export, and fixed wrong date reading on cassini data files.

File last commit:

r4:b41a5ed0a855 default
r10:63067c6877ba 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