2018-01-12 23:09:05 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "widgets/settingspages/settingspage.hpp"
|
|
|
|
|
2018-01-13 00:04:47 +01:00
|
|
|
class QLabel;
|
2018-06-04 17:28:27 +02:00
|
|
|
class QFormLayout;
|
2018-01-13 00:04:47 +01:00
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
namespace settingspages {
|
|
|
|
|
|
|
|
class AboutPage : public SettingsPage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AboutPage();
|
2018-01-13 00:04:47 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
QLabel *logo;
|
2018-06-04 17:28:27 +02:00
|
|
|
|
|
|
|
void addLicense(QFormLayout *form, const QString &name, const QString &website,
|
|
|
|
const QString &licenseLink);
|
2018-01-12 23:09:05 +01:00
|
|
|
};
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
} // namespace settingspages
|
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|