19 lines
431 B
C++
19 lines
431 B
C++
#include "AudioEditorView.h"
|
|
|
|
#include "Label.h"
|
|
#include "TextNode.h"
|
|
#include "Theme.h"
|
|
|
|
AudioEditorView::AudioEditorView()
|
|
{
|
|
auto label = Label::Create();
|
|
label->setLabel("audio Editor");
|
|
label->setBackground(ThemeToken::SystemToken::Primary);
|
|
label->setMargin(1);
|
|
addWidget(std::move(label));
|
|
}
|
|
|
|
std::unique_ptr<AudioEditorView> AudioEditorView::Create()
|
|
{
|
|
return std::make_unique<AudioEditorView>();
|
|
}
|