Subversion Repositories svn1

Rev

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

Rev Author Line No. Line
156 - 1
#ifndef QMREPORTWINDOW_H
2
#define QMREPORTWINDOW_H
3
 
4
#include <QTabWidget>
204 - 5
#include <QLineEdit>
6
#include <QPushButton>
156 - 7
 
168 david 8
class QWebView;
9
class QWidget;
156 - 10
 
204 - 11
class QmReportWindow : public QWidget
156 - 12
{
13
    Q_OBJECT
14
 
15
public:
16
    explicit QmReportWindow(QWidget *parent = 0);
17
    ~QmReportWindow();
203 - 18
    void addReport(const QString &report, const QString &name);
204 - 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);
156 - 31
};
32
 
33
#endif // QMREPORTWINDOW_H