2018-05-17 12:29:14 +02:00
|
|
|
//#include "logspage.hpp"
|
2018-04-27 22:11:19 +02:00
|
|
|
|
2018-05-17 12:29:14 +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-01-28 14:23:55 +01:00
|
|
|
|
2018-05-17 12:29:14 +02:00
|
|
|
//#include "util/layoutcreator.hpp"
|
2018-01-28 14:23:55 +01:00
|
|
|
|
2018-05-17 12:29:14 +02:00
|
|
|
// namespace chatterino {
|
|
|
|
// namespace widgets {
|
|
|
|
// namespace settingspages {
|
2018-01-28 14:23:55 +01:00
|
|
|
|
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-04-27 22:11:19 +02:00
|
|
|
|
2018-05-17 12:29:14 +02:00
|
|
|
// util::LayoutCreator<LogsPage> layoutCreator(this);
|
|
|
|
// auto layout = layoutCreator.emplace<QVBoxLayout>().withoutMargin();
|
2018-01-28 14:23:55 +01:00
|
|
|
|
2018-05-17 12:29:14 +02:00
|
|
|
// auto logPath = app->paths->logsFolderPath;
|
2018-01-28 14:23:55 +01:00
|
|
|
|
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-01-28 14:23:55 +01:00
|
|
|
|
2018-05-17 12:29:14 +02:00
|
|
|
// layout->addStretch(1);
|
|
|
|
//}
|
2018-01-28 14:23:55 +01:00
|
|
|
|
2018-05-17 12:29:14 +02:00
|
|
|
//} // namespace settingspages
|
|
|
|
//} // namespace widgets
|
|
|
|
//} // namespace chatterino
|