src/widgets/colorselectdialog.h

Tue, 27 Jul 2021 09:56:06 +0300

author
Teemu Piippo <teemu@hecknology.net>
date
Tue, 27 Jul 2021 09:56:06 +0300
changeset 114
4e03b0e2a29f
parent 112
5760cbb32bc0
child 139
72098474d362
permissions
-rw-r--r--

added build-time test for line length

#pragma once
#include "../main.h"
#include "../colors.h"
#include <QPushButton>
#include <QAbstractTableModel>
#include <QDialog>
#include <QGridLayout>

class ColorSelectDialog : public QDialog
{
	Q_OBJECT
public:
	explicit ColorSelectDialog(const ldraw::ColorTable& colorTable, QWidget* parent = nullptr);
	~ColorSelectDialog();
	void setCurrentColor(ldraw::Color color);
	ldraw::Color currentColor() const;
private Q_SLOTS:
	void populateColors();
	void updateSelectedColorTexts();
	void handleButtonClick();
	void spinboxEdited();
	void chooseDirectColor();
private:
	void makeColorButtons();
	bool filterColor(ldraw::Color color) const;
	class Ui_ColorSelectDialog& ui;
	const ldraw::ColorTable& colorTable;
	std::vector<QPushButton*> buttons;
	ldraw::Color selectedColor = ldraw::mainColor;
};

mercurial