src/widgets/colorindexinput.h

Wed, 08 Jun 2022 19:33:00 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 08 Jun 2022 19:33:00 +0300
changeset 204
52e10e8d88cc
parent 200
ca23936b455b
child 205
1a4342d80de7
permissions
-rw-r--r--

Concentrate model editing into one coroutine inside main()

#pragma once
#include "document.h"

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

mercurial