1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:48:11 +00:00
serenity/Userland/Applications/VideoPlayer/VideoPlayerWindow.gml
2023-01-09 17:32:03 +00:00

59 lines
1.4 KiB
Text

@GUI::Widget {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {}
@VideoPlayer::VideoFrameWidget {
name: "video_frame"
auto_resize: false
}
@GUI::Widget {
max_height: 50
layout: @GUI::VerticalBoxLayout {}
@GUI::HorizontalSlider {
name: "seek_slider"
fixed_height: 20
enabled: false
jump_to_cursor: true
}
@GUI::ToolbarContainer {
@GUI::Toolbar {
name: "toolbar"
@GUI::Button {
name: "playback"
icon: "/res/icons/16x16/play.png"
fixed_width: 24
button_style: "Coolbar"
}
@GUI::VerticalSeparator {}
@GUI::Label {
name: "timestamp"
autosize: true
}
@GUI::Layout::Spacer {}
@GUI::Button {
name: "sizing"
text: "..."
fixed_width: 24
button_style: "Coolbar"
}
@GUI::VerticalSeparator {}
@GUI::HorizontalSlider {
name: "volume_slider"
min: 0
max: 100
fixed_width: 100
}
}
}
}
}