mirror-chatterino2/src/widgets/settingspages/LogsPage.cpp
2018-06-26 17:06:17 +02:00

50 lines
1.5 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();
// 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