2021-02-21 22:40:08 +11:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2021, Nick Vella <nick@nxk.io>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-02-21 22:40:08 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibGUI/BoxLayout.h>
|
|
|
|
|
#include <LibGUI/Label.h>
|
|
|
|
|
#include <LibGUI/SeparatorWidget.h>
|
|
|
|
|
#include <LibGUI/Widget.h>
|
|
|
|
|
#include <LibGUI/Wizards/WizardPage.h>
|
2022-04-09 09:28:38 +02:00
|
|
|
#include <LibGfx/Font/FontDatabase.h>
|
2021-02-21 22:40:08 +11:00
|
|
|
#include <LibGfx/SystemTheme.h>
|
|
|
|
|
|
|
|
|
|
namespace GUI {
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
WizardPage::WizardPage(DeprecatedString const& title_text, DeprecatedString const& subtitle_text)
|
2021-02-21 22:40:08 +11:00
|
|
|
: AbstractWizardPage()
|
|
|
|
|
{
|
|
|
|
|
set_layout<VerticalBoxLayout>();
|
|
|
|
|
layout()->set_spacing(0);
|
|
|
|
|
|
|
|
|
|
auto& header_widget = add<Widget>();
|
|
|
|
|
header_widget.set_fill_with_background_color(true);
|
|
|
|
|
header_widget.set_background_role(Gfx::ColorRole::Base);
|
|
|
|
|
header_widget.set_fixed_height(58);
|
|
|
|
|
|
|
|
|
|
header_widget.set_layout<VerticalBoxLayout>();
|
Userland+LibGUI: Add shorthand versions of the Margins constructor
This allows for typing [8] instead of [8, 8, 8, 8] to specify the same
margin on all edges, for example. The constructors follow CSS' style of
specifying margins. The added constructors are:
- Margins(int all): Sets the same margin on all edges.
- Margins(int vertical, int horizontal): Sets the first argument to top
and bottom margins, and the second argument to left and right margins.
- Margins(int top, int vertical, int bottom): Sets the first argument to
the top margin, the second argument to the left and right margins,
and the third argument to the bottom margin.
2021-08-17 00:11:38 +00:00
|
|
|
header_widget.layout()->set_margins({ 15, 30, 0 });
|
2021-02-21 22:40:08 +11:00
|
|
|
m_title_label = header_widget.add<Label>(title_text);
|
2021-05-20 18:40:48 +02:00
|
|
|
m_title_label->set_font(Gfx::FontDatabase::default_font().bold_variant());
|
|
|
|
|
m_title_label->set_fixed_height(m_title_label->font().glyph_height() + 2);
|
2021-02-21 22:40:08 +11:00
|
|
|
m_title_label->set_text_alignment(Gfx::TextAlignment::TopLeft);
|
|
|
|
|
m_subtitle_label = header_widget.add<Label>(subtitle_text);
|
|
|
|
|
m_subtitle_label->set_text_alignment(Gfx::TextAlignment::TopLeft);
|
2021-05-20 18:40:48 +02:00
|
|
|
m_subtitle_label->set_fixed_height(m_subtitle_label->font().glyph_height());
|
2023-02-17 10:47:04 +00:00
|
|
|
header_widget.add_spacer().release_value_but_fixme_should_propagate_errors();
|
2021-02-21 22:40:08 +11:00
|
|
|
|
|
|
|
|
auto& separator = add<SeparatorWidget>(Gfx::Orientation::Horizontal);
|
|
|
|
|
separator.set_fixed_height(2);
|
|
|
|
|
|
|
|
|
|
m_body_widget = add<Widget>();
|
|
|
|
|
m_body_widget->set_layout<VerticalBoxLayout>();
|
Userland+LibGUI: Add shorthand versions of the Margins constructor
This allows for typing [8] instead of [8, 8, 8, 8] to specify the same
margin on all edges, for example. The constructors follow CSS' style of
specifying margins. The added constructors are:
- Margins(int all): Sets the same margin on all edges.
- Margins(int vertical, int horizontal): Sets the first argument to top
and bottom margins, and the second argument to left and right margins.
- Margins(int top, int vertical, int bottom): Sets the first argument to
the top margin, the second argument to the left and right margins,
and the third argument to the bottom margin.
2021-08-17 00:11:38 +00:00
|
|
|
m_body_widget->layout()->set_margins(20);
|
2021-02-21 22:40:08 +11:00
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
void WizardPage::set_page_title(DeprecatedString const& text)
|
2021-02-21 22:40:08 +11:00
|
|
|
{
|
|
|
|
|
m_title_label->set_text(text);
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
void WizardPage::set_page_subtitle(DeprecatedString const& text)
|
2021-02-21 22:40:08 +11:00
|
|
|
{
|
|
|
|
|
m_subtitle_label->set_text(text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|