Sun, 26 Jun 2022 20:27:04 +0300
pi is no longer a template
#pragma once #include "document.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: };