Subversion Repositories svn1

Rev

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

Rev Author Line No. Line
129 david 1
#ifndef QMDIALOGLEGSTARTTIMES_H
2
#define QMDIALOGLEGSTARTTIMES_H
3
 
4
#include <QDialog>
5
 
6
namespace Ui {
7
    class QmDialogLegStartTimes;
8
}
9
 
10
class QmDialogLegStartTimes : public QDialog
11
{
12
    Q_OBJECT
13
 
14
public:
130 - 15
    explicit QmDialogLegStartTimes(const QString &title, QWidget *parent = 0);
129 david 16
    ~QmDialogLegStartTimes();
131 david 17
    void setTimeLabel(const QString &label);
18
    void setDeltaTimeLabel(const QString &label);
130 - 19
    time_t getTime(void);
131 david 20
    time_t getDeltaTime(void);
130 - 21
    int getLeg(void);
22
    bool getReport(void);
23
    bool getClear(void);
129 david 24
 
25
private:
26
    Ui::QmDialogLegStartTimes *ui;
131 david 27
 
28
public slots:
29
    void enableDone(int val);
129 david 30
};
31
 
32
#endif // QMDIALOGLEGSTARTTIMES_H