mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
02d94a303c
Corrects a slew of titles, buttons, labels, menu items and status bars for capitalization, ellipses and punctuation. Rewords a few actions and dialogs to use uniform language and punctuation.
106 lines
2.3 KiB
Plaintext
106 lines
2.3 KiB
Plaintext
@GUI::Frame {
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8]
|
|
}
|
|
|
|
@GUI::Frame {
|
|
layout: @GUI::HorizontalBoxLayout {}
|
|
name: "preview_frame"
|
|
fixed_width: 136
|
|
fixed_height: 136
|
|
}
|
|
|
|
@GUI::Label {
|
|
autosize: true
|
|
text: "Shortcut: Super+H"
|
|
preferred_height: "shrink"
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
title: "Highlight color"
|
|
preferred_height: "opportunistic_grow"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [6]
|
|
spacing: 2
|
|
}
|
|
|
|
@GUI::Layout::Spacer {}
|
|
|
|
@GUI::ColorInput {
|
|
name: "highlight_color_input"
|
|
has_alpha_channel: false
|
|
}
|
|
|
|
@GUI::Layout::Spacer {}
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
title: "Highlight opacity"
|
|
preferred_height: "opportunistic_grow"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [6]
|
|
spacing: 2
|
|
}
|
|
|
|
@GUI::Widget {
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
margins: [8]
|
|
spacing: 8
|
|
}
|
|
|
|
@GUI::Label {
|
|
autosize: true
|
|
text: "Low"
|
|
}
|
|
|
|
@GUI::Slider {
|
|
name: "highlight_opacity_slider"
|
|
orientation: "Horizontal"
|
|
max: 230
|
|
min: 30
|
|
value: 110
|
|
}
|
|
|
|
@GUI::Label {
|
|
autosize: true
|
|
text: "High"
|
|
}
|
|
}
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
title: "Highlight size"
|
|
preferred_height: "opportunistic_grow"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [6]
|
|
spacing: 2
|
|
}
|
|
|
|
@GUI::Widget {
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
margins: [8]
|
|
spacing: 8
|
|
}
|
|
|
|
@GUI::Label {
|
|
autosize: true
|
|
text: "Small"
|
|
}
|
|
|
|
@GUI::Slider {
|
|
name: "highlight_radius_slider"
|
|
orientation: "Horizontal"
|
|
max: 60
|
|
min: 20
|
|
value: 25
|
|
}
|
|
|
|
@GUI::Label {
|
|
autosize: true
|
|
text: "Large"
|
|
}
|
|
}
|
|
}
|
|
}
|