serenity/Userland/Libraries/LibGUI/FontPickerDialog.gml
thankyouverycool 4d2f349710 LibGUI: Categorize font families by variant instead of weight
FontPickerWeightModel is no longer necessary as variants contain
weight as part of a complete typeface description. This fixes fonts
not inventorying correctly in picker when they contained more than
bold and regular typefaces. Weight mapping has been moved into
LibGfx/FontStyleMapping.h
2021-09-24 14:59:39 +02:00

99 lines
1.9 KiB
Text

@GUI::Widget {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [4, 4, 4, 4]
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
}
@GUI::Label {
text: "Family:"
text_alignment: "CenterLeft"
fixed_height: 16
}
@GUI::ListView {
name: "family_list_view"
}
}
@GUI::Widget {
fixed_width: 100
layout: @GUI::VerticalBoxLayout {
}
@GUI::Label {
text: "Style:"
text_alignment: "CenterLeft"
fixed_height: 16
}
@GUI::ListView {
name: "variant_list_view"
}
}
@GUI::Widget {
fixed_width: 80
layout: @GUI::VerticalBoxLayout {
}
@GUI::Label {
text: "Size:"
text_alignment: "CenterLeft"
fixed_height: 16
}
@GUI::SpinBox {
name: "size_spin_box"
}
@GUI::ListView {
name: "size_list_view"
}
}
}
@GUI::GroupBox {
layout: @GUI::VerticalBoxLayout {
}
title: "Sample text"
fixed_height: 80
@GUI::Label {
name: "sample_text_label"
text: "The quick brown fox jumps over the lazy dog."
}
}
@GUI::Widget {
fixed_height: 22
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Widget {
}
@GUI::Button {
name: "ok_button"
text: "OK"
fixed_width: 80
}
@GUI::Button {
name: "cancel_button"
text: "Cancel"
fixed_width: 80
}
}
}