src/widgets/colorindexinput.h

Sun, 03 Jul 2022 21:47:44 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Sun, 03 Jul 2022 21:47:44 +0300
changeset 323
3c09c937848c
parent 264
76a025db4948
permissions
-rw-r--r--

Fix normal of the plane used to find cylinder height

#pragma once
#include "src/colors.h"

class ColorIndexInput : public QWidget
{
	Q_OBJECT
	const ColorTable* colorTable = nullptr;
	class Ui_ColorIndexInput& ui;
public:
	ColorIndexInput(QWidget *parent = nullptr);
	~ColorIndexInput();
	ldraw::Color selectedColor() const;
	void setSelectedColor(ldraw::Color color);
Q_SIGNALS:
	void colorChanged(ldraw::Color color);
private:
};

mercurial