summaryrefslogtreecommitdiff
path: root/Userland/Applications/MouseSettings/Theme.gml
blob: fe144e01cc89f097fbfd8f5fbdfd4998af2bc7e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@GUI::Frame {
    fill_with_background_color: true
    layout: @GUI::VerticalBoxLayout {
        margins: [10]
    }

    @GUI::GroupBox {
        title: "Available Cursor Themes"
        layout: @GUI::VerticalBoxLayout {
            margins: [6]
            spacing: 4
        }

        @GUI::Widget {
            shrink_to_fit: true
            layout: @GUI::HorizontalBoxLayout {
                spacing: 8
            }

            @GUI::ComboBox {
                name: "theme_name_box"
                model_only: true
            }
        }

        @GUI::TableView {
            name: "cursors_tableview"
        }
    }
}