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:
parent
3597b6eb9d
commit
42df4fb2df
9 changed files with 388 additions and 76 deletions
39
Userland/Applications/MouseSettings/Theme.gml
Normal file
39
Userland/Applications/MouseSettings/Theme.gml
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue