69 lines
2.1 KiB
C++
69 lines
2.1 KiB
C++
#include "MediaTool.h"
|
|
|
|
#include "TextEditorView.h"
|
|
#include "AudioEditorView.h"
|
|
#include "ImageEditorView.h"
|
|
#include "WebClientView.h"
|
|
#include "TabbedPanelWidget.h"
|
|
#include "TopBar.h"
|
|
#include "StatusBar.h"
|
|
#include "HorizontalSpacer.h"
|
|
|
|
#include "DesktopManager.h"
|
|
#include "MainApplication.h"
|
|
|
|
MediaTool::MediaTool(std::unique_ptr<CommandLineArgs> args)
|
|
: GuiApplication(std::move(args))
|
|
{
|
|
|
|
}
|
|
|
|
void MediaTool::initializeViews()
|
|
{
|
|
auto mainWindow = mDesktopManager->GetWindowManager()->GetMainWindow();
|
|
mainWindow->SetSize(800, 600);
|
|
|
|
/*
|
|
auto tabbedPanel = TabbedPanelWidget::Create();
|
|
|
|
auto textEditor = TextEditorView::Create();
|
|
auto path = mMainApplication->GetCommandLineArgs()->getLaunchPath();
|
|
path /= "out.txt";
|
|
textEditor->GetController()->SetSavePath(path);
|
|
textEditor->GetController()->SetLoadPath(path);
|
|
textEditor->Initialize();
|
|
tabbedPanel->AddPanel(std::move(textEditor), "Text Editor");
|
|
|
|
auto audioEditor = AudioEditorView::Create();
|
|
tabbedPanel->AddPanel(std::move(audioEditor), "Audio Editor");
|
|
|
|
auto imageEditor = ImageEditorView::Create();
|
|
tabbedPanel->AddPanel(std::move(imageEditor), "Image Editor");
|
|
|
|
auto webClient = WebClientView::Create();
|
|
tabbedPanel->AddPanel(std::move(webClient), "Web Client");
|
|
|
|
auto topBar = TopBar::Create();
|
|
auto statusBar = StatusBar::Create();
|
|
|
|
auto horizontalSpace = HorizontalSpacer::Create();
|
|
horizontalSpace->AddWidgetWithScale(std::move(topBar), 1);
|
|
horizontalSpace->AddWidgetWithScale(std::move(tabbedPanel), 20);
|
|
horizontalSpace->AddWidgetWithScale(std::move(statusBar), 1);
|
|
|
|
*/
|
|
|
|
auto button = Button::Create();
|
|
button->setLabel("Click!");
|
|
button->setBounds(100, 200);
|
|
button->setBackgroundColor(Color::Create(0, 0, 255, 0));
|
|
|
|
auto background_widget = Widget::Create();
|
|
background_widget->setBackgroundColor(Color::Create(0, 255, 255, 0));
|
|
|
|
auto horizontal_spacer = HorizontalSpacer::Create();
|
|
horizontal_spacer->addWidgetWithScale(std::move(button), 1);
|
|
horizontal_spacer->addWidgetWithScale(std::move(background_widget), 1);
|
|
|
|
mainWindow->AddWidget(std::move(horizontal_spacer));
|
|
}
|