Add some system info to the help/about dialog

I'll see what other info can be useful.
This commit is contained in:
Luis Ángel San Martín
2022-01-16 11:19:19 +01:00
parent be684514e3
commit c948ee70cb
2 changed files with 58 additions and 8 deletions

View File

@ -12,7 +12,6 @@ class HelpAboutDialog : public QDialog
public:
HelpAboutDialog(QWidget *parent = 0);
HelpAboutDialog(const QString &pathAbout, const QString &pathHelp, QWidget *parent = 0);
~HelpAboutDialog();
public slots:
void loadAboutInformation(const QString &path);
void loadHelp(const QString &path);
@ -21,7 +20,9 @@ private:
QTabWidget *tabWidget;
QTextBrowser *aboutText;
QTextBrowser *helpText;
QTextBrowser *systemInfoText;
QString fileToString(const QString &path);
void loadSystemInfo();
};
#endif // HELP_ABOUT_DIALOG_H
#endif // HELP_ABOUT_DIALOG_H