mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
35 lines
927 B
C++
35 lines
927 B
C++
/*
|
|
* Copyright (c) 2021, Nick Vella <nick@nxk.io>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Progressbar.h>
|
|
#include <LibGUI/TextBox.h>
|
|
#include <LibGUI/Window.h>
|
|
#include <LibGUI/Wizards/CoverWizardPage.h>
|
|
#include <LibGUI/Wizards/WizardDialog.h>
|
|
#include <LibGUI/Wizards/WizardPage.h>
|
|
|
|
class DemoWizardDialog : public GUI::WizardDialog {
|
|
C_OBJECT(DemoWizardDialog);
|
|
|
|
public:
|
|
DeprecatedString page_1_location() { return m_page_1_location_text_box->get_text(); }
|
|
|
|
private:
|
|
DemoWizardDialog(GUI::Window* parent_window);
|
|
|
|
RefPtr<GUI::CoverWizardPage> m_front_page;
|
|
RefPtr<GUI::WizardPage> m_page_1;
|
|
RefPtr<GUI::TextBox> m_page_1_location_text_box;
|
|
|
|
RefPtr<GUI::WizardPage> m_page_2;
|
|
RefPtr<GUI::Progressbar> m_page_2_progressbar;
|
|
int m_page_2_progress_value { 0 };
|
|
RefPtr<Core::Timer> m_page_2_timer;
|
|
|
|
RefPtr<GUI::CoverWizardPage> m_back_page;
|
|
};
|