1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:07:46 +00:00

FileManager: Add "Font" tab to File Properties window

We now keep the MappedFile around when inspecting a font, so that we can
use that font to display a preview.
This commit is contained in:
Sam Atkins 2023-06-27 18:57:13 +01:00 committed by Sam Atkins
parent 98eaa4b044
commit 8ec691057f
4 changed files with 228 additions and 0 deletions

View file

@ -0,0 +1,123 @@
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
margins: [8]
spacing: 12
}
@GUI::GroupBox {
title: "Font"
preferred_height: "shrink"
layout: @GUI::VerticalBoxLayout {
margins: [12, 8, 0]
spacing: 2
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 12
}
@GUI::Label {
text: "Format:"
text_alignment: "TopLeft"
fixed_width: 80
}
@GUI::Label {
name: "font_format"
text: "TrueType"
text_alignment: "TopLeft"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 12
}
@GUI::Label {
text: "Family:"
text_alignment: "TopLeft"
fixed_width: 80
}
@GUI::Label {
name: "font_family"
text: "SerenitySans"
text_alignment: "TopLeft"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 12
}
@GUI::Label {
text: "Fixed width:"
text_alignment: "TopLeft"
fixed_width: 80
}
@GUI::Label {
name: "font_fixed_width"
text: "No"
text_alignment: "TopLeft"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 12
}
@GUI::Label {
text: "Width:"
text_alignment: "TopLeft"
fixed_width: 80
}
@GUI::Label {
name: "font_width"
text: "Normal"
text_alignment: "TopLeft"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 12
}
@GUI::Label {
text: "Weight:"
text_alignment: "TopLeft"
fixed_width: 80
}
@GUI::Label {
name: "font_weight"
text: "500 (Medium)"
text_alignment: "TopLeft"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 12
}
@GUI::Label {
text: "Slope:"
text_alignment: "TopLeft"
fixed_width: 80
}
@GUI::Label {
name: "font_slope"
text: "Regular"
text_alignment: "TopLeft"
}
}
}
}