mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:47:45 +00:00
Everywhere: Change font properties to be described in GML
This commit is contained in:
parent
532e0090fc
commit
ca90a2029d
9 changed files with 7 additions and 8 deletions
|
@ -42,7 +42,6 @@ CalculatorWidget::CalculatorWidget()
|
||||||
m_entry = *find_descendant_of_type_named<GUI::TextBox>("entry_textbox");
|
m_entry = *find_descendant_of_type_named<GUI::TextBox>("entry_textbox");
|
||||||
m_entry->set_relative_rect(5, 5, 244, 26);
|
m_entry->set_relative_rect(5, 5, 244, 26);
|
||||||
m_entry->set_text_alignment(Gfx::TextAlignment::CenterRight);
|
m_entry->set_text_alignment(Gfx::TextAlignment::CenterRight);
|
||||||
m_entry->set_font(Gfx::FontDatabase::default_fixed_width_font());
|
|
||||||
|
|
||||||
m_label = *find_descendant_of_type_named<GUI::Label>("label");
|
m_label = *find_descendant_of_type_named<GUI::Label>("label");
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
@GUI::TextBox {
|
@GUI::TextBox {
|
||||||
name: "entry_textbox"
|
name: "entry_textbox"
|
||||||
|
font_type: "FixedWidth"
|
||||||
}
|
}
|
||||||
|
|
||||||
@GUI::Widget {
|
@GUI::Widget {
|
||||||
|
|
|
@ -56,13 +56,9 @@ SerendipityWidget::SerendipityWidget()
|
||||||
auto& light_bulb_label = *find_descendant_of_type_named<GUI::Label>("light_bulb_label");
|
auto& light_bulb_label = *find_descendant_of_type_named<GUI::Label>("light_bulb_label");
|
||||||
light_bulb_label.set_icon(Gfx::Bitmap::load_from_file("/res/icons/32x32/app-serendipity.png"));
|
light_bulb_label.set_icon(Gfx::Bitmap::load_from_file("/res/icons/32x32/app-serendipity.png"));
|
||||||
|
|
||||||
auto& did_you_know_label = *find_descendant_of_type_named<GUI::Label>("did_you_know_label");
|
|
||||||
did_you_know_label.set_font(Gfx::BitmapFont::load_from_file("/res/fonts/KaticaBold12.font"));
|
|
||||||
|
|
||||||
m_web_view = *find_descendant_of_type_named<Web::OutOfProcessWebView>("web_view");
|
m_web_view = *find_descendant_of_type_named<Web::OutOfProcessWebView>("web_view");
|
||||||
|
|
||||||
m_tip_label = *find_descendant_of_type_named<GUI::Label>("tip_label");
|
m_tip_label = *find_descendant_of_type_named<GUI::Label>("tip_label");
|
||||||
m_tip_label->set_font(Gfx::BitmapFont::load_from_file("/res/fonts/KaticaRegular12.font"));
|
|
||||||
|
|
||||||
m_next_button = *find_descendant_of_type_named<GUI::Button>("next_button");
|
m_next_button = *find_descendant_of_type_named<GUI::Button>("next_button");
|
||||||
m_next_button->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/go-forward.png"));
|
m_next_button->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/go-forward.png"));
|
||||||
|
|
|
@ -50,12 +50,15 @@
|
||||||
name: "did_you_know_label"
|
name: "did_you_know_label"
|
||||||
text: "Did you know..."
|
text: "Did you know..."
|
||||||
text_alignment: "CenterLeft"
|
text_alignment: "CenterLeft"
|
||||||
|
font_size: 12
|
||||||
|
font_weight: "Bold"
|
||||||
}
|
}
|
||||||
|
|
||||||
@GUI::Label {
|
@GUI::Label {
|
||||||
name: "tip_label"
|
name: "tip_label"
|
||||||
text_alignment: "TopLeft"
|
text_alignment: "TopLeft"
|
||||||
word_wrap: true
|
word_wrap: true
|
||||||
|
font_size: 12
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -427,7 +427,6 @@ ConditionView::ConditionView(ConditionalFormat& fmt)
|
||||||
|
|
||||||
formula_editor.set_syntax_highlighter(make<JS::SyntaxHighlighter>());
|
formula_editor.set_syntax_highlighter(make<JS::SyntaxHighlighter>());
|
||||||
formula_editor.set_should_hide_unnecessary_scrollbars(true);
|
formula_editor.set_should_hide_unnecessary_scrollbars(true);
|
||||||
formula_editor.set_font(&Gfx::FontDatabase::default_fixed_width_font());
|
|
||||||
formula_editor.on_change = [&] {
|
formula_editor.on_change = [&] {
|
||||||
m_format.condition = formula_editor.text();
|
m_format.condition = formula_editor.text();
|
||||||
};
|
};
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
name: "formula_editor"
|
name: "formula_editor"
|
||||||
fixed_height: 25
|
fixed_height: 25
|
||||||
tooltip: "Use 'value' to refer to the current cell's value"
|
tooltip: "Use 'value' to refer to the current cell's value"
|
||||||
|
font_type: "FixedWidth"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
@GUI::TableView {
|
@GUI::TableView {
|
||||||
name: "cursors_tableview"
|
name: "cursors_tableview"
|
||||||
|
font_size: 12
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
@GUI::TableView {
|
@GUI::TableView {
|
||||||
name: "icons_tableview"
|
name: "icons_tableview"
|
||||||
|
font_size: 12
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -306,7 +306,6 @@ GalleryWidget::GalleryWidget()
|
||||||
m_cursors_tableview->set_alternating_row_colors(false);
|
m_cursors_tableview->set_alternating_row_colors(false);
|
||||||
m_cursors_tableview->set_vertical_padding(16);
|
m_cursors_tableview->set_vertical_padding(16);
|
||||||
m_cursors_tableview->set_column_headers_visible(false);
|
m_cursors_tableview->set_column_headers_visible(false);
|
||||||
m_cursors_tableview->set_font(Gfx::BitmapFont::load_from_file("/res/fonts/KaticaRegular12.font"));
|
|
||||||
m_cursors_tableview->set_highlight_key_column(false);
|
m_cursors_tableview->set_highlight_key_column(false);
|
||||||
|
|
||||||
auto sorting_proxy_model = GUI::SortingProxyModel::create(MouseCursorModel::create());
|
auto sorting_proxy_model = GUI::SortingProxyModel::create(MouseCursorModel::create());
|
||||||
|
@ -380,7 +379,6 @@ GalleryWidget::GalleryWidget()
|
||||||
m_icons_tableview->set_alternating_row_colors(false);
|
m_icons_tableview->set_alternating_row_colors(false);
|
||||||
m_icons_tableview->set_vertical_padding(24);
|
m_icons_tableview->set_vertical_padding(24);
|
||||||
m_icons_tableview->set_column_headers_visible(false);
|
m_icons_tableview->set_column_headers_visible(false);
|
||||||
m_icons_tableview->set_font(Gfx::BitmapFont::load_from_file("/res/fonts/KaticaRegular12.font"));
|
|
||||||
m_icons_tableview->set_highlight_key_column(false);
|
m_icons_tableview->set_highlight_key_column(false);
|
||||||
|
|
||||||
auto sorting_proxy_icons_model = GUI::SortingProxyModel::create(FileIconsModel::create());
|
auto sorting_proxy_icons_model = GUI::SortingProxyModel::create(FileIconsModel::create());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue