2018-01-12 23:09:05 +01:00
|
|
|
#include "logspage.hpp"
|
2018-04-27 22:11:19 +02:00
|
|
|
|
|
|
|
#include "application.hpp"
|
2018-02-03 16:17:59 +01:00
|
|
|
#include "singletons/pathmanager.hpp"
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-01-28 14:23:55 +01:00
|
|
|
#include <QFormLayout>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#include "util/layoutcreator.hpp"
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
namespace settingspages {
|
2018-01-28 14:23:55 +01:00
|
|
|
|
2018-02-03 16:17:59 +01: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>");
|
|
|
|
}
|
|
|
|
|
|
|
|
return QString("<a href=\"" + url + "\"><span style=\"color: white;\">" + url + "</span></a>");
|
|
|
|
}
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
LogsPage::LogsPage()
|
2018-01-23 23:10:27 +01:00
|
|
|
: SettingsPage("Logs", "")
|
2018-01-12 23:09:05 +01:00
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
|
|
|
|
2018-01-28 14:23:55 +01:00
|
|
|
util::LayoutCreator<LogsPage> layoutCreator(this);
|
|
|
|
auto layout = layoutCreator.emplace<QVBoxLayout>().withoutMargin();
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
auto logPath = app->paths->logsFolderPath;
|
2018-01-28 14:23:55 +01:00
|
|
|
|
2018-02-03 16:17:59 +01: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);
|
2018-04-27 22:11:19 +02:00
|
|
|
layout.append(this->createCheckBox("Enable logging", app->settings->enableLogging));
|
2018-01-28 14:23:55 +01:00
|
|
|
|
|
|
|
layout->addStretch(1);
|
2018-01-12 23:09:05 +01:00
|
|
|
}
|
2018-01-28 14:23:55 +01:00
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
} // namespace settingspages
|
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|