diff options
author | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-02-21 19:35:52 +0100 |
---|---|---|
committer | Orochimarufan <orochimarufan.x3@gmail.com> | 2013-02-21 19:35:52 +0100 |
commit | 576e979df4a54df9bf5ffeae3559f488b3045268 (patch) | |
tree | de5042847ce0189e2c982daa84e83f2a04cf923c /gui/aboutdialog.h | |
parent | 519f66efeee2a28aab89ae70a1f63fecb6de1aa1 (diff) | |
download | MultiMC-576e979df4a54df9bf5ffeae3559f488b3045268.tar MultiMC-576e979df4a54df9bf5ffeae3559f488b3045268.tar.gz MultiMC-576e979df4a54df9bf5ffeae3559f488b3045268.tar.lz MultiMC-576e979df4a54df9bf5ffeae3559f488b3045268.tar.xz MultiMC-576e979df4a54df9bf5ffeae3559f488b3045268.zip |
Implement About Dialog
Prepared XDG icon theme in :/icons/multimc. will only be usefull as soon
as Qt decides to support custom fallback themes. use the resources
directly for now.
Diffstat (limited to 'gui/aboutdialog.h')
-rw-r--r-- | gui/aboutdialog.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gui/aboutdialog.h b/gui/aboutdialog.h new file mode 100644 index 00000000..d462de28 --- /dev/null +++ b/gui/aboutdialog.h @@ -0,0 +1,22 @@ +#ifndef ABOUTDIALOG_H +#define ABOUTDIALOG_H + +#include <QDialog> + +namespace Ui { +class AboutDialog; +} + +class AboutDialog : public QDialog +{ + Q_OBJECT + +public: + explicit AboutDialog(QWidget *parent = 0); + ~AboutDialog(); + +private: + Ui::AboutDialog *ui; +}; + +#endif // ABOUTDIALOG_H |