-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutdialog.h
28 lines (22 loc) · 953 Bytes
/
aboutdialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//-----------------------------------------------------------------------------------------------------------
// Emby Explorer (Qt) (w) 2024-2025 by Jan Buchholz
// UI, About dialog
//-----------------------------------------------------------------------------------------------------------
#pragma once
#include <QDialog>
namespace Ui {
class AboutDialog;
}
class AboutDialog : public QDialog {
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog();
private:
Ui::AboutDialog *ui;
QString const about_1 = "(w) 2024 - 2025 Jan Buchholz";
QString const about_2 = tr("Danksagung an:\nDaniel Nicoletti (dantti) und Jay Two (j2Doll) für \"QXlsx\"\n" \
"https://github.com/QtExcel/QXlsx\n&\n" \
"Dazzle-UI für die \"Dazzle-UI\" SVG Icons");
QString const about_3 = tr("Erstellt mit Qt Community Edition v");
};