-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutdialog.h
More file actions
28 lines (22 loc) · 894 Bytes
/
aboutdialog.h
File metadata and controls
28 lines (22 loc) · 894 Bytes
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
// last change: 20251128
//-----------------------------------------------------------------------------------------------------------
#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("Thanks to:\nDaniel Nicoletti (dantti) and Jay Two (j2Doll) for \"QXlsx\"\n" \
"https://github.com/QtExcel/QXlsx");
QString const about_3 = tr("Created using Qt Community Edition v");
};