Subversion Repositories svn1

Rev

Rev 189 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 189 Rev 203
Line 3... Line 3...
3
 
3
 
4
#include <QMainWindow>
4
#include <QMainWindow>
5
#include <QTextCursor>
5
#include <QTextCursor>
6
#include <QTextDocument>
6
#include <QTextDocument>
7
 
7
 
-
 
8
class QmReportWindow;
-
 
9
 
8
namespace Ui {
10
namespace Ui {
9
    class MainWindow;
11
    class MainWindow;
10
}
12
}
11
 
13
 
12
class MainWindow : public QMainWindow {
14
class MainWindow : public QMainWindow {
13
    Q_OBJECT
15
    Q_OBJECT
14
public:
16
public:
15
    MainWindow(QWidget *parent = 0);
17
    MainWindow(QWidget *parent = 0);
16
    ~MainWindow();
18
    ~MainWindow();
17
    static void showMessage( const QString &msg, int timeout = 0);
19
    static void showMessage( const QString &msg, int timeout = 0);
-
 
20
    static void registerReport(const QString &report, const QString &name);
18
 
21
 
19
protected:
22
protected:
20
    void changeEvent(QEvent *e);
23
    void changeEvent(QEvent *e);
21
 
24
 
22
private:
25
private:
23
    Ui::MainWindow *ui;
26
    Ui::MainWindow *ui;
-
 
27
    QmReportWindow *reportWindow;
24
 
28
 
25
public slots:
29
public slots:
26
    void setStartTimes(void);
30
    void setStartTimes(void);
27
    void clearLegTimes(void);
31
    void clearLegTimes(void);
28
    void resetTeamData(void);
32
    void resetTeamData(void);