src/widgets/colorindexinput.h

Tue, 28 Jun 2022 19:47:34 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Tue, 28 Jun 2022 19:47:34 +0300
changeset 300
3a4b132b8353
parent 264
76a025db4948
permissions
-rw-r--r--

Fix build warnings, size_type of QVector changes from Qt5 to Qt6 so we need an alias for it

#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