1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "interactivewidget.h"
#include <QtWidgets>
InteractiveWidget::InteractiveWidget()
{
m_onScreenWidget = new OnScreenWidget<QWidget>("");
m_onScreenWidget->setMinimumSize(320, 240);
setCentralWidget(m_onScreenWidget);
ui_textEdit = new QTextEdit();
ui_textEdit->installEventFilter(this);
QWidget *panelContent = new QWidget();
QVBoxLayout *vlayout = new QVBoxLayout(panelContent);
vlayout->setContentsMargins(0, 0, 0, 0);
vlayout->setSpacing(0);
// create and populate the command toolbox
m_commandsToolBox = new QToolBox();
QListWidget *currentListWidget = nullptr;
foreach (PaintCommands::PaintCommandInfos paintCommandInfo, PaintCommands::s_commandInfoTable) {
if (paintCommandInfo.isSectionHeader()) {
currentListWidget = new QListWidget();
m_commandsToolBox->addItem(currentListWidget, QIcon(":/icons/tools.png"), "commands - "+paintCommandInfo.identifier);
connect(currentListWidget, SIGNAL(itemActivated(QListWidgetItem*)), SLOT(cmdSelected(QListWidgetItem*)));
} else {
(new QListWidgetItem(paintCommandInfo.identifier, currentListWidget))->setToolTip(paintCommandInfo.syntax);
}
}
// create and populate the enumerations toolbox
m_enumsToolBox = new QToolBox();
typedef QPair<QString,QStringList> EnumListType;
foreach (EnumListType enumInfos, PaintCommands::s_enumsTable) {
currentListWidget = new QListWidget();
m_commandsToolBox->addItem(currentListWidget, QIcon(":/icons/enum.png"), "enums - "+enumInfos.first);
connect(currentListWidget, SIGNAL(itemActivated(QListWidgetItem*)), SLOT(enumSelected(QListWidgetItem*)));
foreach (QString enumItem, enumInfos.second)
new QListWidgetItem(enumItem, currentListWidget);
}
// add other widgets and layout
vlayout->addWidget(m_commandsToolBox);
vlayout->addWidget(m_enumsToolBox);
QPushButton *run = new QPushButton("&Run");
QPushButton *load = new QPushButton("&Load");
QPushButton *save = new QPushButton("&Save");
run->setFocusPolicy(Qt::NoFocus);
vlayout->addSpacing(20);
vlayout->addWidget(run);
vlayout->addWidget(load);
vlayout->addWidget(save);
QDockWidget *panel = new QDockWidget("Commands");
panel->setWidget(panelContent);
addDockWidget(Qt::LeftDockWidgetArea, panel);
QDockWidget *editor = new QDockWidget("Editor");
editor->setWidget(ui_textEdit);
addDockWidget(Qt::RightDockWidgetArea, editor);
// connect gui signals
connect(run, SIGNAL(clicked()), SLOT(run()));
connect(load, SIGNAL(clicked()), SLOT(load()));
connect(save, SIGNAL(clicked()), SLOT(save()));
}
/***************************************************************************************************/
void InteractiveWidget::run()
{
m_onScreenWidget->m_commands.clear();
QString script = ui_textEdit->toPlainText();
QStringList lines = script.split("\n");
for (int i = 0; i < lines.size(); ++i)
m_onScreenWidget->m_commands.append(lines.at(i));
m_onScreenWidget->repaint();
}
/***************************************************************************************************/
void InteractiveWidget::cmdSelected(QListWidgetItem *item)
{
if (ui_textEdit->textCursor().atBlockStart()) {
ui_textEdit->insertPlainText(PaintCommands::findCommandById(item->text())->sample + "\n");
} else {
ui_textEdit->moveCursor(QTextCursor::EndOfLine);
ui_textEdit->insertPlainText("\n" + PaintCommands::findCommandById(item->text())->sample);
}
ui_textEdit->setFocus();
}
/***************************************************************************************************/
void InteractiveWidget::enumSelected(QListWidgetItem *item)
{
ui_textEdit->insertPlainText(item->text());
ui_textEdit->setFocus();
}
/***************************************************************************************************/
void InteractiveWidget::load()
{
QString fname = QFileDialog::getOpenFileName(
this,
QString("Load QPaintEngine Script"),
QFileInfo(m_filename).absoluteFilePath(),
QString("QPaintEngine Script (*.qps);;All files (*.*)"));
load(fname);
}
/***************************************************************************************************/
void InteractiveWidget::load(const QString &fname)
{
if (!fname.isEmpty()) {
m_filename = fname;
ui_textEdit->clear();
QFile file(fname);
file.open(QIODevice::ReadOnly | QIODevice::Text);
QTextStream textFile(&file);
QString script = textFile.readAll();
ui_textEdit->setPlainText(script);
m_onScreenWidget->m_filename = fname;
}
}
/***************************************************************************************************/
void InteractiveWidget::save()
{
QString script = ui_textEdit->toPlainText();
if (!script.endsWith("\n"))
script += QString("\n");
QString fname = QFileDialog::getSaveFileName(this,
QString("Save QPaintEngine Script"),
QFileInfo(m_filename).absoluteFilePath(),
QString("QPaintEngine Script (*.qps);;All files (*.*)"));
if (!fname.isEmpty()) {
m_filename = fname;
QFile file(fname);
file.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text);
QTextStream textFile(&file);
textFile << script;
m_onScreenWidget->m_filename = fname;
}
}
/***************************************************************************************************/
bool InteractiveWidget::eventFilter(QObject *o, QEvent *e)
{
if (qobject_cast<QTextEdit *>(o) && e->type() == QEvent::KeyPress) {
QKeyEvent *ke = static_cast<QKeyEvent *>(e);
if (ke->key() == Qt::Key_Tab) {
m_commandsToolBox->currentWidget()->setFocus();
return true;
} else if (ke->key() == Qt::Key_Return && ke->modifiers() == Qt::ControlModifier) {
run();
return true;
}
}
return false;
}
|