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