src/widgets/colorselectdialog.h

Fri, 01 Jul 2022 16:46:43 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Fri, 01 Jul 2022 16:46:43 +0300
changeset 312
2637134bc37c
parent 264
76a025db4948
permissions
-rw-r--r--

Fix right click to delete not really working properly
Instead of removing the point that had been added, it would remove
the point that is being drawn, which would cause it to overwrite the
previous point using the new point, causing a bit of a delay

#pragma once
#include "src/basics.h"
#include "src/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