widgets/matrixeditor.h

Fri, 01 Jul 2022 16:46:43 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Fri, 01 Jul 2022 16:46:43 +0300
changeset 312
2637134bc37c
parent 253
8b994c917f69
permissions
-rw-r--r--

Fix right click to delete not really working properly
Instead of removing the point that had been added, it would remove
the point that is being drawn, which would cause it to overwrite the
previous point using the new point, causing a bit of a delay

#pragma once
#include <QWidget>
#include <glm/glm.hpp>

class MatrixEditor : public QWidget
{
	Q_OBJECT
public:
	explicit MatrixEditor(QWidget *parent = nullptr);
	explicit MatrixEditor(const glm::mat4 value, QWidget* parent = nullptr);
	~MatrixEditor();
	glm::mat4 value() const;
	void setValue(const glm::mat4& value);
Q_SIGNALS:
	void valueChanged(const glm::mat4& value);
private:
	constexpr int matrixSize() const;
	Q_SLOT void multiplyButtonPressed();
	class QDoubleSpinBox* spinboxes[4][3];
	class Ui_MatrixEditor *ui;
};

constexpr int MatrixEditor::matrixSize() const
{
	return 4;
}

mercurial