Fri, 04 Mar 2022 11:37:50 +0200
Major refactoring
- Model now just stores objects
- Document contains business logic
- Model::EditContext is now ModelEditor, no longer a nested class
96 | 1 | #include "colorinput.h" |
2 | #include "ui_colorinput.h" | |
3 | ||
4 | ColorInput::ColorInput(QWidget *parent) : | |
5 | QWidget(parent), | |
6 | ui(new Ui::ColorInput) | |
7 | { | |
8 | ui->setupUi(this); | |
9 | } | |
10 | ||
11 | ColorInput::~ColorInput() | |
12 | { | |
13 | delete ui; | |
14 | } |