Qt Utilities
6.4.1
Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models
|
The AboutDialog class provides a simple about dialog. More...
#include <aboutdialog.h>
Public Member Functions | |
AboutDialog (QWidget *parent, const QString &applicationName, const QString &creator, const QString &version, const QString &website=QString(), const QString &description=QString(), const QImage &image=QImage()) | |
Constructs an about dialog with the specified information. More... | |
AboutDialog (QWidget *parent, const QString &applicationName, const QString &creator, const QString &version, const std::vector< const char * > &dependencyVersions, const QString &website=QString(), const QString &description=QString(), const QImage &image=QImage()) | |
Constructs an about dialog with the provided information. More... | |
AboutDialog (QWidget *parent, const QString &website=QString(), const QString &description=QString(), const QImage &image=QImage()) | |
Constructs an about dialog with the specified parent, description and image. More... | |
~AboutDialog () override | |
Destroys the about dialog. More... | |
The AboutDialog class provides a simple about dialog.
Definition at line 18 of file aboutdialog.h.
|
explicit |
Constructs an about dialog with the specified information.
Definition at line 99 of file aboutdialog.cpp.
|
explicit |
Constructs an about dialog with the provided information.
parent | Specifies the parent widget. |
applicationName | Specifies the name of the application. If empty, QApplication::applicationName() will be used. |
creator | Specifies the creator of the application. If empty, QApplication::organizationName() will be used. |
version | Specifies the version of the application. If empty, QApplication::applicationVersion() will be used. |
dependencyVersions | Specifies the dependency versions which were present at link-time. If empty, the application info from c++utilities is used. |
description | Specifies a short description about the application. |
website | Specifies the URL to the website of the application. |
image | Specifies the application icon. If the image is null, the standard information icon will be used. |
Definition at line 40 of file aboutdialog.cpp.
|
explicit |
Constructs an about dialog with the specified parent, description and image.
Definition at line 109 of file aboutdialog.cpp.
|
override |
Destroys the about dialog.
Definition at line 117 of file aboutdialog.cpp.