stuff-from-scratch/apps/sample-gui/image_editor/ImageEditorView.cpp
2022-11-16 15:06:08 +00:00

19 lines
424 B
C++

#include "ImageEditorView.h"
#include "Label.h"
#include "Color.h"
#include "TextNode.h"
ImageEditorView::ImageEditorView()
{
auto label = Label::Create();
label->setLabel("Image Editor");
label->setBackgroundColor(Color(200, 189, 160));
label->setMargin(1);
addWidget(std::move(label));
}
std::unique_ptr<ImageEditorView> ImageEditorView::Create()
{
return std::make_unique<ImageEditorView>();
}