mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 01:59:14 +03:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
36 lines
917 B
C++
36 lines
917 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:
|
|
String 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;
|
|
};
|