mirror of
https://github.com/LapplandSP/QtAdb.git
synced 2025-07-09 15:56:06 +08:00
46 lines
718 B
C++
46 lines
718 B
C++
#ifndef ABOUT_H
|
|
#define ABOUT_H
|
|
|
|
#include <QWidget>
|
|
#include <QDesktopServices>
|
|
#include <QGraphicsDropShadowEffect>
|
|
#include "basepage.h"
|
|
#include "sonPages/pay.h"
|
|
#include "animationwidget.h"
|
|
#include "sonPages/links.h"
|
|
|
|
namespace Ui {
|
|
class about;
|
|
}
|
|
|
|
class about : public basePage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit about(QWidget *parent = nullptr);
|
|
~about();
|
|
|
|
private slots:
|
|
void on_btn_website_clicked();
|
|
|
|
void on_btn_coolapk_clicked();
|
|
|
|
void on_btn_github_clicked();
|
|
|
|
void on_btn_money_2_clicked();
|
|
|
|
void on_btn_links_clicked();
|
|
|
|
void on_btn_version_clicked();
|
|
|
|
void on_btn_qq_dis_clicked();
|
|
|
|
void on_btn_qgroup_clicked();
|
|
|
|
private:
|
|
Ui::about *ui;
|
|
};
|
|
|
|
#endif // ABOUT_H
|