31 lines
456 B
C++
31 lines
456 B
C++
#ifndef MAXTU_H
|
|
#define MAXTU_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class maxtu;
|
|
}
|
|
|
|
class maxtu : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit maxtu(QWidget *parent = nullptr);
|
|
~maxtu();
|
|
|
|
private:
|
|
Ui::maxtu *ui;
|
|
private slots:
|
|
void getyuan(QPixmap p);
|
|
|
|
void getlujing(QString str1,QString str2);
|
|
void getlujing2(QString str1,QString str2);
|
|
void on_pushButton_3_clicked();
|
|
signals:
|
|
void guanmeng();
|
|
};
|
|
|
|
#endif // MAXTU_H
|