f31522130f
Build system (5 gaps hardened): - COOKBOOK_OFFLINE defaults to true (fork-mode) - normalize_patch handles diff -ruN format - New 'repo validate-patches' command (25/25 relibc patches) - 14 patched Qt/Wayland/display recipes added to protected list - relibc archive regenerated with current patch chain Boot fixes (fixable): - Full ISO EFI partition: 16 MiB → 1 MiB (matches mini, BIOS hardcoded 2 MiB offset) - D-Bus system bus: absolute /usr/bin/dbus-daemon path (was skipped) - redbear-sessiond: absolute /usr/bin/redbear-sessiond path (was skipped) - daemon framework: silenced spurious INIT_NOTIFY warnings for oneshot_async services (P0-daemon-silence-init-notify.patch) - udev-shim: demoted INIT_NOTIFY warning to INFO (expected for oneshot_async) - relibc: comprehensive named semaphores (sem_open/close/unlink) replacing upstream todo!() stubs - greeterd: Wayland socket timeout 15s → 30s (compositor DRM wait) - greeter-ui: built and linked (header guard unification, sem_compat stubs removed) - mc: un-ignored in both configs, fixed glib/libiconv/pcre2 transitive deps - greeter config: removed stale keymapd dependency from display/greeter services - prefix toolchain: relibc headers synced, _RELIBC_STDLIB_H guard unified Unfixable (diagnosed, upstream): - i2c-hidd: abort on no-I2C-hardware (QEMU) — process::exit → relibc abort - kded6/greeter-ui: page fault 0x8 — Qt library null deref - Thread panics fd != -1 — Rust std library on Redox - DHCP timeout / eth0 MAC — QEMU user-mode networking - hwrngd/thermald — no hardware RNG/thermal in VM - live preload allocation — BIOS memory fragmentation, continues on demand
182 lines
6.7 KiB
C++
182 lines
6.7 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
#undef QT_NO_FOREACH // this file contains unported legacy Q_FOREACH uses
|
|
|
|
#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()) {
|
|
QFile file(fname);
|
|
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
|
QMessageBox::critical(
|
|
window(),
|
|
tr("Unable to open file"),
|
|
tr("Cannot open file %1 for loading: %2").arg(fname, file.errorString())
|
|
);
|
|
return;
|
|
}
|
|
m_filename = fname;
|
|
ui_textEdit->clear();
|
|
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()) {
|
|
QFile file(fname);
|
|
if (!file.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text)) {
|
|
QMessageBox::critical(
|
|
window(),
|
|
tr("Unable to open file"),
|
|
tr("Cannot open file %1 for saving: %2").arg(fname, file.errorString())
|
|
);
|
|
return;
|
|
}
|
|
m_filename = fname;
|
|
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;
|
|
}
|