ae26b835b6
Things that were once singletons are no longer singletons, but are instead stored in the "Application" singleton Some singletons still remain, and some renaming/renamespacing is left
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
#include "logspage.hpp"
|
|
|
|
#include "application.hpp"
|
|
#include "singletons/pathmanager.hpp"
|
|
|
|
#include <QFormLayout>
|
|
#include <QVBoxLayout>
|
|
|
|
#include "util/layoutcreator.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
namespace settingspages {
|
|
|
|
inline QString CreateLink(const QString &url, bool file = false)
|
|
{
|
|
if (file) {
|
|
return QString("<a href=\"file:///" + url + "\"><span style=\"color: white;\">" + url +
|
|
"</span></a>");
|
|
}
|
|
|
|
return QString("<a href=\"" + url + "\"><span style=\"color: white;\">" + url + "</span></a>");
|
|
}
|
|
|
|
LogsPage::LogsPage()
|
|
: SettingsPage("Logs", "")
|
|
{
|
|
auto app = getApp();
|
|
|
|
util::LayoutCreator<LogsPage> layoutCreator(this);
|
|
auto layout = layoutCreator.emplace<QVBoxLayout>().withoutMargin();
|
|
|
|
auto logPath = app->paths->logsFolderPath;
|
|
|
|
auto created = layout.emplace<QLabel>();
|
|
created->setText("Logs are saved to " + CreateLink(logPath, true));
|
|
created->setTextFormat(Qt::RichText);
|
|
created->setTextInteractionFlags(Qt::TextBrowserInteraction | Qt::LinksAccessibleByKeyboard |
|
|
Qt::LinksAccessibleByKeyboard);
|
|
created->setOpenExternalLinks(true);
|
|
layout.append(this->createCheckBox("Enable logging", app->settings->enableLogging));
|
|
|
|
layout->addStretch(1);
|
|
}
|
|
|
|
} // namespace settingspages
|
|
} // namespace widgets
|
|
} // namespace chatterino
|