stuff-from-scratch/src/client/audio_editor/AudioEditorView.cpp
2020-06-27 10:47:30 +01:00

16 lines
390 B
C++

#include "AudioEditorView.h"
#include "Label.h"
AudioEditorView::AudioEditorView()
{
auto label = Label::Create();
label->SetLabel("Audio Editor");
label->SetBackgroundColor(Color::Create(200, 189, 160));
label->SetMargin(1);
AddWidget(std::move(label));
}
std::unique_ptr<AudioEditorView> AudioEditorView::Create()
{
return std::make_unique<AudioEditorView>();
}