36 lines
670 B
C
36 lines
670 B
C
|
|
#ifndef SHUTTLEBOTTOMLINEDIALOG_H
|
||
|
|
#define SHUTTLEBOTTOMLINEDIALOG_H
|
||
|
|
|
||
|
|
#include <QDialog>
|
||
|
|
#include "machine/comm/protocol.h"
|
||
|
|
|
||
|
|
namespace Ui {
|
||
|
|
class shuttlebottomlineDialog;
|
||
|
|
}
|
||
|
|
|
||
|
|
class shuttlebottomlineDialog : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit shuttlebottomlineDialog(QWidget *parent = 0);
|
||
|
|
~shuttlebottomlineDialog();
|
||
|
|
|
||
|
|
void showShuttlenumber(int remainShuttle , int NowBottom);
|
||
|
|
|
||
|
|
MCStatus m_mcStatus;
|
||
|
|
|
||
|
|
public slots:
|
||
|
|
void initControlStyle();//初始化窗体控件样式
|
||
|
|
|
||
|
|
private slots:
|
||
|
|
void on_buttonOk_clicked();
|
||
|
|
|
||
|
|
void on_buttonCancel_clicked();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::shuttlebottomlineDialog *ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // SHUTTLEBOTTOMLINEDIALOG_H
|