You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
424 B
C++
23 lines
424 B
C++
#ifndef QADDTIMEDLG_H
|
|
#define QADDTIMEDLG_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_qaddtimedlg.h"
|
|
struct TimeStruct;
|
|
class QAddTimeDlg : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QAddTimeDlg(QWidget *parent = 0);
|
|
~QAddTimeDlg();
|
|
Q_SLOT void SlotOK();
|
|
Q_SLOT void SlotCancle();
|
|
void SetInfo(TimeStruct m_timeStruct, int model=0);
|
|
void GetInfo(TimeStruct &m_timeStruct);
|
|
private:
|
|
Ui::QAddTimeDlg ui;
|
|
};
|
|
|
|
#endif // QADDTIMEDLG_H
|