Menu

[b73cc1]: / ctimedialog.h  Maximize  Restore  History

Download this file

50 lines (32 with data), 811 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef CTIMEDIALOG_H
#define CTIMEDIALOG_H
#include <QWidget>
#include "cmapview.h"
namespace Ui {
class CTimeDialog;
}
class CTimeDialog : public QWidget
{
Q_OBJECT
public:
explicit CTimeDialog(QWidget *parent = 0);
~CTimeDialog();
void updateTime(mapView_t *view);
void timeChanged();
protected:
void changeEvent(QEvent *e);
void updateLabel();
mapView_t *m_view;
private slots:
void on_radioButton_clicked();
void on_radioButton_2_clicked();
void on_comboBox_currentIndexChanged(int index);
void on_spinBox_valueChanged(int arg1);
void on_spinBox_2_valueChanged(int arg1);
void on_spinBox_3_valueChanged(int arg1);
void on_spinBox_5_valueChanged(int arg1);
void on_spinBox_4_valueChanged(int arg1);
private:
Ui::CTimeDialog *ui;
};
#endif // CTIMEDIALOG_H