mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
405 B
C++
23 lines
405 B
C++
#pragma once
|
|
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
|
|
|
class QLabel;
|
|
class QFormLayout;
|
|
|
|
namespace chatterino {
|
|
|
|
class AboutPage : public SettingsPage
|
|
{
|
|
public:
|
|
AboutPage();
|
|
|
|
private:
|
|
void addLicense(QFormLayout *form, const QString &name_,
|
|
const QString &website, const QString &licenseLink);
|
|
|
|
QLabel *logo_;
|
|
};
|
|
|
|
} // namespace chatterino
|