1
0
Files
sarasacw-picture/app/aboutdialog.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
504 B
C
Raw Permalink Normal View History

// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
//
// SPDX-License-Identifier: MIT
2025-07-23 21:20:34 +08:00
2020-09-28 20:10:33 +08:00
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
2025-07-23 21:20:34 +08:00
2020-09-28 20:10:33 +08:00
#include <QDialog>
2025-07-23 21:20:34 +08:00
2020-09-28 20:10:33 +08:00
QT_BEGIN_NAMESPACE
namespace Ui {
class AboutDialog;
}
2020-09-28 20:10:33 +08:00
QT_END_NAMESPACE
2025-07-23 21:20:34 +08:00
2020-09-28 20:10:33 +08:00
class AboutDialog : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog() override;
2025-07-23 21:20:34 +08:00
QSize sizeHint() const override;
2025-07-23 21:20:34 +08:00
2020-09-28 20:10:33 +08:00
private:
QT_PREPEND_NAMESPACE(Ui::AboutDialog) *ui;
2020-09-28 20:10:33 +08:00
};
2025-07-23 21:20:34 +08:00
2020-09-28 20:10:33 +08:00
#endif // ABOUTDIALOG_H