mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:27:35 +00:00
LibGUI: Use set_layout<LayoutType>() in lots of client code
This commit is contained in:
parent
03e0ddce52
commit
4697195645
45 changed files with 109 additions and 109 deletions
|
@ -36,13 +36,13 @@ extern RefPtr<EditorWrapper> g_current_editor_wrapper;
|
|||
|
||||
EditorWrapper::EditorWrapper()
|
||||
{
|
||||
set_layout(make<GUI::VerticalBoxLayout>());
|
||||
set_layout<GUI::VerticalBoxLayout>();
|
||||
|
||||
auto label_wrapper = add<GUI::Widget>();
|
||||
label_wrapper->set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed);
|
||||
label_wrapper->set_preferred_size(0, 14);
|
||||
label_wrapper->set_fill_with_background_color(true);
|
||||
label_wrapper->set_layout(make<GUI::HorizontalBoxLayout>());
|
||||
label_wrapper->set_layout<GUI::HorizontalBoxLayout>();
|
||||
label_wrapper->layout()->set_margins({ 2, 0, 2, 0 });
|
||||
|
||||
m_filename_label = label_wrapper->add<GUI::Label>("(Untitled)");
|
||||
|
|
|
@ -129,7 +129,7 @@ static RefPtr<SearchResultsModel> find_in_files(const StringView& text)
|
|||
|
||||
FindInFilesWidget::FindInFilesWidget()
|
||||
{
|
||||
set_layout(make<GUI::VerticalBoxLayout>());
|
||||
set_layout<GUI::VerticalBoxLayout>();
|
||||
m_textbox = add<GUI::TextBox>();
|
||||
m_textbox->set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed);
|
||||
m_textbox->set_preferred_size(0, 20);
|
||||
|
|
|
@ -103,7 +103,7 @@ Locator::Locator()
|
|||
s_header_icon = Gfx::Bitmap::load_from_file("/res/icons/16x16/filetype-header.png");
|
||||
}
|
||||
|
||||
set_layout(make<GUI::VerticalBoxLayout>());
|
||||
set_layout<GUI::VerticalBoxLayout>();
|
||||
set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed);
|
||||
set_preferred_size(0, 20);
|
||||
m_textbox = add<LocatorTextBox>();
|
||||
|
|
|
@ -38,7 +38,7 @@ ProcessStateWidget::ProcessStateWidget()
|
|||
set_preferred_size(0, 20);
|
||||
set_visible(false);
|
||||
|
||||
set_layout(make<GUI::HorizontalBoxLayout>());
|
||||
set_layout<GUI::HorizontalBoxLayout>();
|
||||
|
||||
auto pid_label_label = add<GUI::Label>("Process:");
|
||||
pid_label_label->set_font(Gfx::Font::default_bold_font());
|
||||
|
|
|
@ -168,7 +168,7 @@ void TerminalWrapper::kill_running_command()
|
|||
|
||||
TerminalWrapper::TerminalWrapper()
|
||||
{
|
||||
set_layout(make<GUI::VerticalBoxLayout>());
|
||||
set_layout<GUI::VerticalBoxLayout>();
|
||||
|
||||
RefPtr<Core::ConfigFile> config = Core::ConfigFile::get_for_app("Terminal");
|
||||
m_terminal_widget = add<TerminalWidget>(-1, false, config);
|
||||
|
|
|
@ -145,7 +145,7 @@ int main(int argc, char** argv)
|
|||
g_window->set_main_widget(widget);
|
||||
|
||||
widget->set_fill_with_background_color(true);
|
||||
widget->set_layout(make<GUI::VerticalBoxLayout>());
|
||||
widget->set_layout<GUI::VerticalBoxLayout>();
|
||||
widget->layout()->set_spacing(0);
|
||||
|
||||
StringBuilder path;
|
||||
|
@ -266,7 +266,7 @@ int main(int argc, char** argv)
|
|||
g_right_hand_stack = outer_splitter->add<GUI::StackWidget>();
|
||||
|
||||
g_form_inner_container = g_right_hand_stack->add<GUI::Widget>();
|
||||
g_form_inner_container->set_layout(make<GUI::HorizontalBoxLayout>());
|
||||
g_form_inner_container->set_layout<GUI::HorizontalBoxLayout>();
|
||||
auto form_widgets_toolbar = g_form_inner_container->add<GUI::ToolBar>(Orientation::Vertical, 26);
|
||||
form_widgets_toolbar->set_preferred_size(38, 0);
|
||||
|
||||
|
@ -304,11 +304,11 @@ int main(int argc, char** argv)
|
|||
auto form_editing_pane_container = form_editor_inner_splitter->add<GUI::VerticalSplitter>();
|
||||
form_editing_pane_container->set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fill);
|
||||
form_editing_pane_container->set_preferred_size(190, 0);
|
||||
form_editing_pane_container->set_layout(make<GUI::VerticalBoxLayout>());
|
||||
form_editing_pane_container->set_layout<GUI::VerticalBoxLayout>();
|
||||
|
||||
auto add_properties_pane = [&](auto& text, auto pane_widget) {
|
||||
auto wrapper = form_editing_pane_container->add<GUI::Widget>();
|
||||
wrapper->set_layout(make<GUI::VerticalBoxLayout>());
|
||||
wrapper->set_layout<GUI::VerticalBoxLayout>();
|
||||
auto label = wrapper->add<GUI::Label>(text);
|
||||
label->set_fill_with_background_color(true);
|
||||
label->set_text_alignment(Gfx::TextAlignment::CenterLeft);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue