17 lines
280 B
Plaintext
Executable File
17 lines
280 B
Plaintext
Executable File
class AboutWindow : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QWidget *window;
|
|
QVBoxLayout *layout;
|
|
struct Logo : public QWidget {
|
|
void paintEvent(QPaintEvent*);
|
|
} *logo;
|
|
QLabel *info;
|
|
QWidget *spacer;
|
|
|
|
void setup();
|
|
|
|
public slots:
|
|
} *winAbout;
|