mirror-chatterino2/src/widgets/settingspages/AboutPage.hpp

23 lines
405 B
C++
Raw Normal View History

2018-01-12 23:09:05 +01:00
#pragma once
2018-06-26 14:09:39 +02:00
#include "widgets/settingspages/SettingsPage.hpp"
2018-01-12 23:09:05 +01:00
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 {
class AboutPage : public SettingsPage
{
public:
AboutPage();
2018-01-13 00:04:47 +01:00
private:
2018-07-06 19:23:47 +02:00
void addLicense(QFormLayout *form, const QString &name_, const QString &website,
2018-06-04 17:28:27 +02:00
const QString &licenseLink);
2018-07-06 19:23:47 +02:00
QLabel *logo_;
2018-01-12 23:09:05 +01:00
};
2018-01-12 23:09:05 +01:00
} // namespace chatterino