1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 19:47:46 +00:00

MouseSettings: Add a tab to change cursor theme

This commit is contained in:
Maciej Zygmanowski 2021-08-02 12:14:52 +02:00 committed by Andreas Kling
parent 3597b6eb9d
commit 42df4fb2df
9 changed files with 388 additions and 76 deletions

View file

@ -0,0 +1,39 @@
@GUI::Frame {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [10, 10, 10, 10]
}
@GUI::GroupBox {
title: "Theme"
layout: @GUI::VerticalBoxLayout {
margins: [16, 2, 16, 16]
}
@GUI::Widget {
fixed_height: 50
layout: @GUI::HorizontalBoxLayout {
spacing: 10
margins: [8, 16, 0, 8]
}
@GUI::Label {
text: "Select Theme: "
text_alignment: "CenterRight"
}
@GUI::ComboBox {
name: "theme_name_box"
model_only: true
}
}
@GUI::TableView {
name: "cursors_tableview"
font_size: 12
}
}
}