Subversion Repositories svn1-original

Rev

Rev 207 | Rev 209 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
160 - 1
#ifndef QMREPORTWINDOW_H
2
#define QMREPORTWINDOW_H
3
 
4
#include <QTabWidget>
208 - 5
#include <QLineEdit>
6
#include <QPushButton>
160 - 7
 
172 david 8
class QWebView;
9
class QWidget;
160 - 10
 
208 - 11
class QmReportWindow : public QWidget
160 - 12
{
13
    Q_OBJECT
14
 
15
public:
16
    explicit QmReportWindow(QWidget *parent = 0);
17
    ~QmReportWindow();
207 - 18
    void addReport(const QString &report, const QString &name);
208 - 19
 
20
private:
21
    QTabWidget *tabWidget;
22
    QLineEdit *tabPath;
23
    QPushButton *pb_original;
24
    QPushButton *pb_back;
25
    QPushButton *pb_print;
26
 
27
private slots:
28
    void deleteTab(int tab);
29
    void tabChanged(int tab);
30
    void back(void);
160 - 31
};
32
 
33
#endif // QMREPORTWINDOW_H