-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutdialog.h
More file actions
32 lines (24 loc) · 891 Bytes
/
aboutdialog.h
File metadata and controls
32 lines (24 loc) · 891 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
29
30
/////////////////////////////////////////////////////////////////////////////
// Name: aboutdialog.h
// Purpose: About dialog header
// Author: Jan Buchholz
// Created: 2025-10-13
/////////////////////////////////////////////////////////////////////////////
#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 TITLE_ABOUT = tr("About SimpleJournalQt");
QString TxtAboutJournal = tr("SimpleJournalQt (w) 2025 Jan Buchholz\n***\n") +
tr("Created with Qt Community Edition v") + qVersion() + tr(" (https://www.qt.io).") +
tr("\n***\nThanks to Martin Mitáš (mity)\n") +
tr("and all contributors to the \"md4c\" library:\nhttps://github.com/mity/md4c");
};