mirror of
https://github.com/obhq/obliteration.git
synced 2025-04-02 11:02:08 -04:00
44 lines
852 B
Text
44 lines
852 B
Text
import { AboutSlint, VerticalBox, TabWidget } from "std-widgets.slint";
|
|
|
|
component Obliteration {
|
|
VerticalBox {
|
|
Image {
|
|
source: @image-url("@root/assets/logo.png");
|
|
}
|
|
|
|
Text {
|
|
text: "Obliteration is a free and open-source software to run PlayStation 4 system software on PC.";
|
|
wrap: word-wrap;
|
|
}
|
|
}
|
|
}
|
|
|
|
component Slint {
|
|
AboutSlint { }
|
|
}
|
|
|
|
export component AboutWindow inherits Window {
|
|
title: "About";
|
|
width: 500px;
|
|
height: 200px;
|
|
|
|
TabWidget {
|
|
Tab {
|
|
title: "Obliteration";
|
|
|
|
Obliteration {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
Tab {
|
|
title: "Slint";
|
|
|
|
Slint {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|