widgets/coloredit.h

Thu, 15 Jun 2023 16:18:03 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Thu, 15 Jun 2023 16:18:03 +0300
changeset 383
530d23cd4e97
parent 348
98776f54a8d0
permissions
-rw-r--r--

Refactor, make selecting elements from the model select the corresponding line from the editor as well

#pragma once
#include <QPushButton>
#include <QLineEdit>

/**
 * @brief A button that can be used to select a color
 */
class ColorEdit : public QWidget
{
	Q_OBJECT
	Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged)
	QLineEdit* lineEdit;
	QPushButton* button;
public:
	ColorEdit(const QColor& color = {}, QWidget* parent = nullptr);
	ColorEdit(QWidget* parent = nullptr);
	QColor color() const;
	Q_SLOT void setColor(const QColor& color);
	Q_SIGNAL void colorChanged(const QColor& color);
};

mercurial