DataPlayer/ChaosDataPlayer/SetScalesform.h

32 lines
551 B
C
Raw Permalink Normal View History

2022-07-30 11:50:01 +08:00
#ifndef SETSCALESFORM_H
#define SETSCALESFORM_H
#include <QWidget>
#include "BaseWgt.h"
#include <QKeyEvent>
#include "msgbox.h"
namespace Ui {
class SetScalesForm;
}
class SetScalesForm : public BaseWgt
{
Q_OBJECT
public:
2022-11-07 14:02:09 +08:00
explicit SetScalesForm(QString m_strSacles,QWidget *parent = nullptr);
2022-07-30 11:50:01 +08:00
~SetScalesForm();
private:
Ui::SetScalesForm *ui;
private slots:
void SetScales();
void Cancel();
protected:
virtual void keyPressEvent(QKeyEvent *event);
signals:
void sgSetScales(QString);
};
#endif // SETSCALESFORM_H