21 lines
470 B
Plaintext
21 lines
470 B
Plaintext
import { Theme } from "theme.slint";
|
|
import { EditorBar } from "editor_bar.slint";
|
|
import { StatusBar } from "status_bar.slint";
|
|
import { ToolBar } from "tool_bar.slint";
|
|
|
|
export component AppWindow inherits Window {
|
|
title: @tr("FM Editor");
|
|
preferred-width: 1280px;
|
|
preferred-height: 720px;
|
|
VerticalLayout {
|
|
EditorBar { }
|
|
|
|
HorizontalLayout {
|
|
alignment: start;
|
|
ToolBar { }
|
|
}
|
|
|
|
StatusBar { }
|
|
}
|
|
}
|