summaryrefslogtreecommitdiff
path: root/Userland/Demos/WidgetGallery/DemoWizardDialog.cpp
blob: e00dd7de8a301cc6a05958e99e461f868b70d218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * Copyright (c) 2021, Nick Vella <nick@nxk.io>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include "DemoWizardDialog.h"
#include <Demos/WidgetGallery/DemoWizardPage1GML.h>
#include <Demos/WidgetGallery/DemoWizardPage2GML.h>
#include <LibGUI/BoxLayout.h>
#include <LibGUI/Button.h>
#include <LibGUI/TextBox.h>
#include <LibGUI/Wizards/WizardDialog.h>

DemoWizardDialog::DemoWizardDialog(GUI::Window* parent_window)
    : GUI::WizardDialog(parent_window)
{
    // Create the front cover
    m_front_page = GUI::CoverWizardPage::construct();
    m_front_page->set_header_text("Welcome to the SerenityOS demo wizard!");
    m_front_page->set_body_text("This wizard demonstrates the amazing wizardry\ncapabilities of LibGUI :^)");
    m_front_page->on_next_page = [&]() {
        return m_page_1;
    };

    // Create Page 1
    m_page_1 = GUI::WizardPage::construct(
        "Installation location",
        "Choose where Demo Application is installed on your computer.");
    m_page_1->body_widget().load_from_gml(demo_wizard_page_1_gml);
    m_page_1_location_text_box = m_page_1->body_widget().find_descendant_of_type_named<GUI::TextBox>("page_1_location_text_box");
    m_page_1->on_next_page = [&]() {
        return m_page_2;
    };

    // Create Page 2 with a progress bar :^)
    m_page_2 = GUI::WizardPage::construct(
        "Installation in progress...",
        "Please wait. Do not turn off your computer.");
    m_page_2->body_widget().load_from_gml(demo_wizard_page_2_gml);
    m_page_2_progressbar = m_page_2->body_widget().find_descendant_of_type_named<GUI::Progressbar>("page_2_progressbar");
    m_page_2_timer = Core::Timer::construct(this);
    m_page_2->on_page_enter = [&]() {
        m_page_2_progress_value = 0;
        m_page_2_timer->restart(100);
    };
    m_page_2->on_page_leave = [&]() {
        m_page_2_progress_value = 0;
        m_page_2_timer->stop();
    };
    m_page_2_timer->on_timeout = [&]() {
        if (m_page_2_progress_value < 100)
            m_page_2_progress_value++;
        m_page_2_progressbar->set_value(m_page_2_progress_value);

        // Go to final page on progress completion
        if (m_page_2_progress_value == 100) {
            m_page_2_progress_value = 0;
            replace_page(*m_back_page);
        }
    };
    // Don't set a on_next_page handler for page 2 as we automatically navigate to the final page on progress completion

    // Create the back cover
    m_back_page = GUI::CoverWizardPage::construct();
    m_back_page->set_header_text("Wizard complete.");
    m_back_page->set_body_text("That concludes the SerenityOS demo wizard :^)");
    m_back_page->set_is_final_page(true);

    push_page(*m_front_page);
}