mirror-chatterino2/src/widgets/settingspages/LogsPage.cpp

50 lines
1.5 KiB
C++
Raw Normal View History

2018-06-26 14:09:39 +02:00
//#include "LogsPage.hpp"
2018-06-26 14:09:39 +02:00
//#include "Application.hpp"
//#include "singletons/PathManager.hpp"
2018-01-12 23:09:05 +01:00
2018-05-17 12:29:14 +02:00
//#include <QFormLayout>
//#include <QVBoxLayout>
2018-06-26 14:09:39 +02:00
//#include "util/LayoutCreator.hpp"
2018-05-17 12:29:14 +02:00
// namespace chatterino {
// namespace widgets {
// namespace settingspages {
2018-05-17 12:29:14 +02:00
// inline QString CreateLink(const QString &url, bool file = false)
//{
// if (file) {
// return QString("<a href=\"file:///" + url + "\"><span style=\"color: white;\">" + url +
// "</span></a>");
// }
2018-02-03 16:17:59 +01:00
2018-05-17 12:29:14 +02:00
// return QString("<a href=\"" + url + "\"><span style=\"color: white;\">" + url +
// "</span></a>");
//}
2018-02-03 16:17:59 +01:00
2018-05-17 12:29:14 +02:00
// LogsPage::LogsPage()
// : SettingsPage("Logs", "")
//{
// auto app = getApp();
2018-06-26 17:06:17 +02:00
// LayoutCreator<LogsPage> layoutCreator(this);
2018-05-17 12:29:14 +02:00
// auto layout = layoutCreator.emplace<QVBoxLayout>().withoutMargin();
2018-05-17 12:29:14 +02:00
// auto logPath = app->paths->logsFolderPath;
2018-05-17 12:29:14 +02:00
// 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));
2018-05-17 12:29:14 +02:00
// layout->addStretch(1);
//}
2018-05-17 12:29:14 +02:00
//} // namespace settingspages
//} // namespace widgets
//} // namespace chatterino