32 lines
489 B
C++
32 lines
489 B
C++
#ifndef POINTNAME_H
|
|
#define POINTNAME_H
|
|
|
|
#include <QWidget>
|
|
#include "data_config.h"
|
|
|
|
namespace Ui {
|
|
class PointName;
|
|
}
|
|
|
|
class PointName : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PointName(int slot_no_,int cardtype,QWidget *parent = nullptr);
|
|
~PointName();
|
|
int slot_no;
|
|
CardType car_type;
|
|
private slots:
|
|
void on_pushButton_cancel_clicked();
|
|
|
|
void on_pushButton_confirm_clicked();
|
|
|
|
private:
|
|
Ui::PointName *ui;
|
|
|
|
void Init();
|
|
};
|
|
|
|
#endif // POINTNAME_H
|