2020-06-27 09:47:30 +00:00
|
|
|
#include "AudioEditorView.h"
|
2021-03-06 21:02:13 +00:00
|
|
|
|
2020-06-27 09:47:30 +00:00
|
|
|
#include "Label.h"
|
2021-03-06 21:02:13 +00:00
|
|
|
#include "Color.h"
|
2020-06-27 09:47:30 +00:00
|
|
|
|
|
|
|
AudioEditorView::AudioEditorView()
|
|
|
|
{
|
|
|
|
auto label = Label::Create();
|
2022-11-11 14:22:31 +00:00
|
|
|
label->setLabel("Audio Editor");
|
2022-11-13 17:02:09 +00:00
|
|
|
label->setBackgroundColor(Color(200, 189, 160));
|
2022-11-11 14:22:31 +00:00
|
|
|
label->setMargin(1);
|
|
|
|
addWidget(std::move(label));
|
2020-06-27 09:47:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<AudioEditorView> AudioEditorView::Create()
|
|
|
|
{
|
|
|
|
return std::make_unique<AudioEditorView>();
|
|
|
|
}
|