#include "CommandPage.hpp" #include #include #include #include #include #include #include "Application.hpp" #include "controllers/commands/CommandController.hpp" #include "controllers/commands/CommandModel.hpp" #include "util/LayoutCreator.hpp" #include "util/StandardItemHelper.hpp" #include "widgets/helper/EditableModelView.hpp" //#include "widgets/helper/ComboBoxItemDelegate.hpp" #include "util/CombinePath.hpp" #include #include // clang-format off #define TEXT "{1} => first word     {1+} => first word and after     {{ => {     more info" // clang-format on namespace chatterino { namespace { QString c1settingsPath() { return combinePath(qgetenv("appdata"), "Chatterino\\Custom\\Commands.txt"); } } // namespace CommandPage::CommandPage() { auto app = getApp(); LayoutCreator layoutCreator(this); auto layout = layoutCreator.setLayoutType(); EditableModelView *view = layout.emplace(app->commands->createModel(nullptr)) .getElement(); view->setTitles({"Trigger", "Command"}); view->getTableView()->horizontalHeader()->setStretchLastSection(true); view->addButtonPressed.connect([] { getApp()->commands->items_.append( Command{"/command", "I made a new command HeyGuys"}); }); // TODO: asyncronously check path if (QFile(c1settingsPath()).exists()) { auto button = new QPushButton("Import commands from Chatterino 1"); view->addCustomButton(button); QObject::connect(button, &QPushButton::clicked, this, [] { QFile c1settings = c1settingsPath(); c1settings.open(QIODevice::ReadOnly); for (auto line : QString(c1settings.readAll()) .split(QRegularExpression("[\r\n]"), QString::SkipEmptyParts)) { if (int index = line.indexOf(' '); index != -1) { getApp()->commands->items_.insert( Command(line.mid(0, index), line.mid(index + 1))); } } }); } layout.append( this->createCheckBox("Also match the trigger at the end of the message", getSettings()->allowCommandsAtEnd)); QLabel *text = layout.emplace(TEXT).getElement(); text->setWordWrap(true); text->setStyleSheet("color: #bbb"); text->setOpenExternalLinks(true); // ---- end of layout this->commandsEditTimer_.setSingleShot(true); } } // namespace chatterino