src/widgets/colorselectdialog.h

Sun, 26 Jun 2022 19:44:45 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Sun, 26 Jun 2022 19:44:45 +0300
changeset 259
c27612f0eac0
parent 206
654661eab7f3
child 264
76a025db4948
permissions
-rw-r--r--

- Made it build under Qt6
- Fix strangeness involving library path settings

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

class ColorSelectDialog : public QDialog
{
	Q_OBJECT
public:
	explicit ColorSelectDialog(const ColorTable& colorTable, QWidget* parent = nullptr);
	~ColorSelectDialog();
	void setCurrentColor(ColorIndex 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 ColorTable& colorTable;
	std::vector<QPushButton*> buttons;
	ColorIndex selectedColor = MAIN_COLOR;
};

mercurial