kopia lustrzana https://gitlab.com/eliggett/wfview
27 wiersze
342 B
C++
27 wiersze
342 B
C++
#ifndef ABOUTBOX_H
|
|
#define ABOUTBOX_H
|
|
|
|
#include <QWidget>
|
|
#include <QDesktopServices>
|
|
|
|
namespace Ui {
|
|
class aboutbox;
|
|
}
|
|
|
|
class aboutbox : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit aboutbox(QWidget *parent = 0);
|
|
~aboutbox();
|
|
|
|
private slots:
|
|
void on_logoBtn_clicked();
|
|
|
|
private:
|
|
Ui::aboutbox *ui;
|
|
};
|
|
|
|
#endif // ABOUTBOX_H
|