Added ghost image for gate placement

This commit is contained in:
Robert 2020-12-01 16:11:45 +01:00
parent e81622f8f3
commit edf6a0ad2b
11 changed files with 198 additions and 28 deletions

View file

@ -10,6 +10,9 @@ class Component : public QFrame
{ {
public: public:
explicit Component(QWidget* parent); explicit Component(QWidget* parent);
explicit Component(QWidget* parent, const QString& resource);
void mouseMoveEvent(QMouseEvent* event) override;
private: private:
Ui::Component* ui; Ui::Component* ui;

19
include/GhostLabel.hpp Normal file
View file

@ -0,0 +1,19 @@
#pragma once
#include <qlabel.h>
class GhostLabel : public QLabel
{
public:
explicit GhostLabel(QWidget* parent) :
QLabel(parent)
{
setMouseTracking(true);
}
void mouseMoveEvent(QMouseEvent* event) override
{
// Ignore all mouse move events, who cares tbh
event->ignore();
}
};

View file

@ -7,6 +7,8 @@ namespace Ui {
} }
class Component; class Component;
class QActionGroup;
class GhostLabel;
class Window : public QMainWindow class Window : public QMainWindow
{ {
@ -21,6 +23,8 @@ protected:
private: private:
void ToggleSimulation(); void ToggleSimulation();
void ToggleComponentPlacer();
void LoadGhostLabel(const QString& resource);
Ui::Window* ui; Ui::Window* ui;
bool simulating; bool simulating;
@ -29,4 +33,8 @@ private:
Component* component; Component* component;
QPoint relativePos; QPoint relativePos;
} dragInfo; } dragInfo;
GhostLabel* ghostImage;
QString resourcePath;
QActionGroup* componentGroup;
}; };

View file

@ -1,9 +1,27 @@
#include "Component.hpp" #include "Component.hpp"
#include "ui_Component.h" #include "ui_Component.h"
#include <iostream>
#include <qevent.h>
Component::Component(QWidget* parent) : Component::Component(QWidget* parent) :
Component(parent, ":/components/and.png")
{
}
Component::Component(QWidget* parent, const QString& resource) :
QFrame(parent), ui(nullptr) QFrame(parent), ui(nullptr)
{ {
ui = new Ui::Component(); ui = new Ui::Component();
ui->setupUi(this); ui->setupUi(this);
}
ui->label->setPixmap(QPixmap(":/components/and.png"));
std::cout << "Created Component --" << ui->label->pos().x() << ", " << ui->label->pos().y() << std::endl;
}
void Component::mouseMoveEvent(QMouseEvent* event)
{
event->ignore();
}

View file

@ -1,16 +1,35 @@
#include "Window.hpp" #include "Window.hpp"
#include "ui_Window.h" #include "ui_Window.h"
#include "Component.hpp"
#include <iostream> #include <iostream>
#include <qevent.h> #include <qevent.h>
#include "GhostLabel.hpp"
#include <qlayout.h>
#include <qpainter.h>
#include <qactiongroup.h>
Window::Window() : Window::Window() :
QMainWindow(), ui(nullptr), simulating(false) QMainWindow(), ui(nullptr), simulating(false), dragInfo{nullptr, QPoint()},
ghostImage(nullptr), componentGroup(nullptr)
{ {
ui = new Ui::Window(); ui = new Ui::Window();
ui->setupUi(this); ui->setupUi(this);
ui->centralwidget->setAttribute(Qt::WA_TransparentForMouseEvents);
setMouseTracking(true);
LoadGhostLabel(":/components/and.png");
componentGroup = new QActionGroup(this);
componentGroup->addAction(ui->actionAddAND);
componentGroup->addAction(ui->actionAddOR);
componentGroup->setExclusionPolicy(QActionGroup::ExclusionPolicy::ExclusiveOptional);
connect(ui->actionStart, &QAction::triggered, this, &Window::ToggleSimulation); connect(ui->actionStart, &QAction::triggered, this, &Window::ToggleSimulation);
connect(ui->actionAddAND, &QAction::triggered, this, [this]() {resourcePath = ":/components/and.png"; ToggleComponentPlacer(); });
connect(ui->actionAddOR, &QAction::triggered, this, [this]() {resourcePath = ":/components/or.png"; ToggleComponentPlacer(); });
} }
Window::~Window() Window::~Window()
@ -25,20 +44,47 @@ void Window::mousePressEvent(QMouseEvent* event)
ui->centralwidget->findChildren<Component*>(); ui->centralwidget->findChildren<Component*>();
QFrame* child = static_cast<QFrame*>(ui->centralwidget->childAt(event->pos())); QFrame* child = static_cast<QFrame*>(ui->centralwidget->childAt(event->pos()));
if (child == nullptr)
return;
if (!child->isAncestorOf(ui->centralwidget)) QAction* toggledAction = componentGroup->checkedAction();
child = static_cast<QFrame*>(child->parentWidget()); if (toggledAction == nullptr)
{
if (child == nullptr)
return;
dragInfo.component = static_cast<Component*>(child); if (!child->isAncestorOf(ui->centralwidget))
dragInfo.relativePos = event->pos() - child->pos(); child = static_cast<QFrame*>(child->parentWidget());
dragInfo.component = static_cast<Component*>(child);
dragInfo.relativePos = event->pos() - child->pos();
}
else
{
if (child != nullptr)
return;
// So Qt can't add widgets outside of the constructor apparently
// So component cannot be a QFrame, it will have to become just a normal object
// And I need one of these open gl gsjdööööööööööööööl<
// TODO: I'll just let this leak for now, I just wanna eat dinner...
Component* leak = new Component(this, resourcePath);
QPoint pos = event->pos() - QPoint {50, 25};
leak->setGeometry(QRect(280, 160, 100, 50));
leak->setFrameShape(QFrame::StyledPanel);
leak->setFrameShadow(QFrame::Raised);
std::cout << leak->pos().x() << ", " << leak->pos().y() << std::endl;
}
} }
void Window::mouseMoveEvent(QMouseEvent* event) void Window::mouseMoveEvent(QMouseEvent* event)
{ {
if (dragInfo.component != nullptr) if (dragInfo.component != nullptr)
dragInfo.component->move(event->pos() - dragInfo.relativePos); dragInfo.component->move(event->pos() - dragInfo.relativePos);
if (ghostImage != nullptr)
ghostImage->move(event->pos() - QPoint{50, 25}); // TODO: Hardcoded
event->accept();
} }
void Window::mouseReleaseEvent(QMouseEvent* event) void Window::mouseReleaseEvent(QMouseEvent* event)
@ -51,3 +97,36 @@ void Window::ToggleSimulation()
simulating = !simulating; simulating = !simulating;
ui->actionStart->setIcon(QIcon(simulating ? ":/toolbar/stop.png" : ":/toolbar/start.png")); ui->actionStart->setIcon(QIcon(simulating ? ":/toolbar/stop.png" : ":/toolbar/start.png"));
} }
void Window::ToggleComponentPlacer()
{
QAction* toggledAction = componentGroup->checkedAction();
if (toggledAction == nullptr)
{
delete ghostImage;
ghostImage = nullptr;
}
else
{
LoadGhostLabel(resourcePath);
}
}
void Window::LoadGhostLabel(const QString& resource)
{
if (ghostImage == nullptr) {
ghostImage = new GhostLabel(this);
ghostImage->setGeometry({ 0, 0, 100, 50 });
ghostImage->setScaledContents(true);
}
QPainter p;
QImage image(resource);
p.begin(&image);
p.setCompositionMode(QPainter::CompositionMode_DestinationIn);
p.fillRect(image.rect(), QColor(0, 0, 0, 50));
p.end();
ghostImage->setPixmap(QPixmap::fromImage(image));
}

View file

@ -6,8 +6,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>100</width> <width>102</width>
<height>100</height> <height>50</height>
</rect> </rect>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">
@ -21,6 +21,9 @@
<pointsize>19</pointsize> <pointsize>19</pointsize>
</font> </font>
</property> </property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="windowTitle"> <property name="windowTitle">
<string>Form</string> <string>Form</string>
</property> </property>
@ -36,15 +39,12 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>100</width> <width>100</width>
<height>100</height> <height>50</height>
</rect> </rect>
</property> </property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>
<property name="pixmap">
<pixmap resource="assets/resources.qrc">:/components/and.png</pixmap>
</property>
<property name="scaledContents"> <property name="scaledContents">
<bool>true</bool> <bool>true</bool>
</property> </property>

View file

@ -6,8 +6,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>800</width> <width>924</width>
<height>600</height> <height>700</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
@ -20,23 +20,17 @@
<widget class="Component" name="frame"> <widget class="Component" name="frame">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>170</x> <x>360</x>
<y>180</y> <y>180</y>
<width>100</width> <width>120</width>
<height>100</height> <height>80</height>
</rect> </rect>
</property> </property>
<property name="autoFillBackground">
<bool>false</bool>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="frameShape"> <property name="frameShape">
<enum>QFrame::NoFrame</enum> <enum>QFrame::StyledPanel</enum>
</property> </property>
<property name="frameShadow"> <property name="frameShadow">
<enum>QFrame::Plain</enum> <enum>QFrame::Raised</enum>
</property> </property>
</widget> </widget>
</widget> </widget>
@ -52,6 +46,9 @@
<bool>false</bool> <bool>false</bool>
</attribute> </attribute>
<addaction name="actionStart"/> <addaction name="actionStart"/>
<addaction name="separator"/>
<addaction name="actionAddAND"/>
<addaction name="actionAddOR"/>
</widget> </widget>
<action name="actionStart"> <action name="actionStart">
<property name="icon"> <property name="icon">
@ -68,6 +65,46 @@
<string>F5</string> <string>F5</string>
</property> </property>
</action> </action>
<action name="actionAddAND">
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="assets/resources.qrc">
<normaloff>:/components/and.png</normaloff>:/components/and.png</iconset>
</property>
<property name="text">
<string>AddAND</string>
</property>
<property name="toolTip">
<string>Create an AND gate</string>
</property>
<property name="shortcut">
<string>1</string>
</property>
</action>
<action name="actionAddOR">
<property name="checkable">
<bool>true</bool>
</property>
<property name="icon">
<iconset resource="assets/resources.qrc">
<normaloff>:/components/or.png</normaloff>
<selectedoff>:/components/and.png</selectedoff>:/components/or.png</iconset>
</property>
<property name="text">
<string>AddOR</string>
</property>
<property name="toolTip">
<string>Create an OR gate</string>
</property>
<property name="shortcut">
<string>2</string>
</property>
</action>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget> <customwidget>

View file

@ -1 +1,6 @@
Start/Stop icons taken from https://iconsmind.com/ (modified) Start/Stop icons taken from https://iconsmind.com/ (modified)
Logic Gates taken from Wikimedia Commons. The authors are
* jjbeard (AND, OR)
The Wikimedia icons are part of the public domain

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5 KiB

After

Width:  |  Height:  |  Size: 717 B

BIN
ui/assets/or.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 956 B

View file

@ -5,5 +5,6 @@
</qresource> </qresource>
<qresource prefix="/components"> <qresource prefix="/components">
<file>and.png</file> <file>and.png</file>
<file>or.png</file>
</qresource> </qresource>
</RCC> </RCC>