2021-11-24 19:47:39 +03:00
|
|
|
@GUI::Frame {
|
|
|
|
fill_with_background_color: true
|
|
|
|
layout: @GUI::VerticalBoxLayout {
|
2022-07-05 18:06:42 +03:00
|
|
|
margins: [8]
|
2021-11-24 19:47:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::GroupBox {
|
|
|
|
title: "Homepage"
|
|
|
|
fixed_height: 70
|
|
|
|
layout: @GUI::VerticalBoxLayout {
|
2022-06-25 22:08:17 +03:00
|
|
|
margins: [2, 8, 2]
|
2021-11-24 19:47:39 +03:00
|
|
|
spacing: 2
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Widget {
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
|
|
spacing: 16
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
fixed_width: 32
|
|
|
|
fixed_height: 32
|
2022-01-29 10:03:57 +03:00
|
|
|
icon: "/res/icons/32x32/home.png"
|
2021-11-24 19:47:39 +03:00
|
|
|
}
|
|
|
|
|
2022-06-25 22:08:17 +03:00
|
|
|
@GUI::Widget {
|
2022-06-27 07:10:31 +03:00
|
|
|
layout: @GUI::VerticalBoxLayout {}
|
2022-06-25 22:08:17 +03:00
|
|
|
|
|
|
|
@GUI::Widget {
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
|
|
spacing: 16
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
text: "URL:"
|
|
|
|
text_alignment: "CenterLeft"
|
|
|
|
fixed_width: 45
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::TextBox {
|
|
|
|
name: "homepage_url_textbox"
|
|
|
|
placeholder: "https://example.com"
|
|
|
|
}
|
|
|
|
}
|
2022-06-27 07:10:31 +03:00
|
|
|
|
2022-06-25 22:08:17 +03:00
|
|
|
@GUI::Widget {
|
2022-06-27 07:10:31 +03:00
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
|
|
spacing: 16
|
|
|
|
}
|
2022-06-25 22:08:17 +03:00
|
|
|
|
2022-06-27 07:10:31 +03:00
|
|
|
@GUI::Label {
|
|
|
|
text: "New Tab:"
|
|
|
|
text_alignment: "CenterLeft"
|
|
|
|
fixed_width: 45
|
|
|
|
}
|
2021-11-24 19:47:39 +03:00
|
|
|
|
2022-06-27 07:10:31 +03:00
|
|
|
@GUI::TextBox {
|
|
|
|
name: "new_tab_url_textbox"
|
|
|
|
placeholder: "https://example.com"
|
|
|
|
}
|
2022-06-25 22:08:17 +03:00
|
|
|
}
|
2021-11-24 19:47:39 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-24 23:04:43 +03:00
|
|
|
@GUI::GroupBox {
|
|
|
|
title: "Appearance"
|
2021-11-25 16:44:05 +03:00
|
|
|
fixed_height: 104
|
2021-11-24 23:04:43 +03:00
|
|
|
layout: @GUI::VerticalBoxLayout {
|
|
|
|
margins: [16, 8, 8]
|
|
|
|
spacing: 2
|
|
|
|
}
|
|
|
|
|
2021-11-25 16:44:05 +03:00
|
|
|
@GUI::Widget {
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
|
|
spacing: 16
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
fixed_width: 32
|
|
|
|
fixed_height: 32
|
2022-01-29 10:03:57 +03:00
|
|
|
icon: "/res/icons/32x32/color-chooser.png"
|
2021-11-25 16:44:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
text: "Color scheme:"
|
|
|
|
text_alignment: "CenterLeft"
|
|
|
|
fixed_width: 110
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::ComboBox {
|
|
|
|
name: "color_scheme_combobox"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-24 23:04:43 +03:00
|
|
|
@GUI::Widget {
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
|
|
spacing: 16
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
fixed_width: 32
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::CheckBox {
|
|
|
|
name: "show_bookmarks_bar_checkbox"
|
2022-01-28 00:51:32 +03:00
|
|
|
text: "Show bookmarks"
|
2021-11-24 23:04:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-25 15:26:54 +03:00
|
|
|
@GUI::GroupBox {
|
|
|
|
title: "Search Engine"
|
|
|
|
fixed_height: 140
|
|
|
|
layout: @GUI::VerticalBoxLayout {
|
|
|
|
margins: [16, 8, 8]
|
|
|
|
spacing: 2
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Widget {
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
|
|
spacing: 16
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
fixed_width: 32
|
|
|
|
fixed_height: 32
|
2022-01-29 10:03:57 +03:00
|
|
|
icon: "/res/icons/32x32/search-engine.png"
|
2021-11-25 15:26:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::CheckBox {
|
|
|
|
text: "Search using '?' in the URL box"
|
|
|
|
name: "enable_search_engine_checkbox"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Widget {
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
|
|
spacing: 16
|
|
|
|
}
|
|
|
|
name: "search_engine_combobox_group"
|
2022-02-12 20:17:01 +03:00
|
|
|
|
2021-11-25 15:26:54 +03:00
|
|
|
@GUI::Widget {
|
|
|
|
fixed_width: 32
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
text: "Search engine:"
|
|
|
|
text_alignment: "CenterLeft"
|
|
|
|
fixed_width: 110
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::ComboBox {
|
|
|
|
name: "search_engine_combobox"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Widget {
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
|
|
spacing: 16
|
|
|
|
}
|
|
|
|
name: "custom_search_engine_group"
|
2022-02-12 20:17:01 +03:00
|
|
|
|
2021-11-25 15:26:54 +03:00
|
|
|
@GUI::Widget {
|
|
|
|
fixed_width: 32
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
text: "Enter URL template:"
|
|
|
|
text_alignment: "CenterLeft"
|
|
|
|
fixed_width: 110
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::TextBox {
|
|
|
|
name: "custom_search_engine_textbox"
|
|
|
|
placeholder: "https://host/search?q={}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-24 19:47:39 +03:00
|
|
|
@GUI::GroupBox {
|
|
|
|
title: "Downloads"
|
|
|
|
fixed_height: 70
|
|
|
|
layout: @GUI::VerticalBoxLayout {
|
|
|
|
margins: [16, 8, 8]
|
|
|
|
spacing: 2
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Widget {
|
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
|
|
spacing: 16
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
fixed_width: 32
|
|
|
|
fixed_height: 32
|
2022-01-29 10:03:57 +03:00
|
|
|
icon: "/res/icons/32x32/downloads.png"
|
2021-11-24 19:47:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::CheckBox {
|
|
|
|
name: "auto_close_download_windows_checkbox"
|
|
|
|
text: "Automatically close download window when complete"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|