src/widgets/colorinput.h

Sat, 08 Apr 2023 12:24:04 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Sat, 08 Apr 2023 12:24:04 +0300
changeset 341
71c8cea3c205
parent 96
165777a20dc7
permissions
-rw-r--r--

Save settings as soon as they are changed, Cancel and Reset buttons revert changes

#ifndef COLORINPUT_H
#define COLORINPUT_H

#include <QWidget>

namespace Ui {
class ColorInput;
}

class ColorInput : public QWidget
{
	Q_OBJECT

public:
	explicit ColorInput(QWidget *parent = nullptr);
	~ColorInput();

private:
	Ui::ColorInput *ui;
};

#endif // COLORINPUT_H

mercurial