2021-01-22 23:22:00 +03:00
|
|
|
/*
|
2022-02-10 22:28:48 +03:00
|
|
|
* Copyright (c) 2021-2022, the SerenityOS developers.
|
2021-01-22 23:22:00 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-01-22 23:22:00 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Result.h>
|
|
|
|
#include <LibGUI/Dialog.h>
|
|
|
|
|
|
|
|
enum OptionId {
|
|
|
|
OPTION_INVALID = -1,
|
|
|
|
OPTION_ASCII_STRING,
|
|
|
|
OPTION_HEX_VALUE
|
|
|
|
};
|
|
|
|
|
|
|
|
class FindDialog : public GUI::Dialog {
|
|
|
|
C_OBJECT(FindDialog);
|
|
|
|
|
|
|
|
public:
|
2022-05-13 15:10:27 +03:00
|
|
|
static ExecResult show(GUI::Window* parent_window, String& out_tex, ByteBuffer& out_buffer, bool& find_all);
|
2021-01-22 23:22:00 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
Result<ByteBuffer, String> process_input(String text_value, OptionId opt);
|
|
|
|
|
|
|
|
String text_value() const { return m_text_value; }
|
|
|
|
OptionId selected_option() const { return m_selected_option; }
|
2021-05-27 18:51:21 +03:00
|
|
|
bool find_all() const { return m_find_all; }
|
2021-01-22 23:22:00 +03:00
|
|
|
|
|
|
|
FindDialog();
|
2022-02-10 22:28:48 +03:00
|
|
|
virtual ~FindDialog() override = default;
|
2021-01-22 23:22:00 +03:00
|
|
|
|
|
|
|
RefPtr<GUI::TextEditor> m_text_editor;
|
2021-05-27 18:51:21 +03:00
|
|
|
RefPtr<GUI::Button> m_find_button;
|
|
|
|
RefPtr<GUI::Button> m_find_all_button;
|
2021-05-25 14:22:05 +03:00
|
|
|
RefPtr<GUI::Button> m_cancel_button;
|
2021-01-22 23:22:00 +03:00
|
|
|
|
2021-05-27 18:51:21 +03:00
|
|
|
bool m_find_all { false };
|
2021-01-22 23:22:00 +03:00
|
|
|
String m_text_value;
|
|
|
|
OptionId m_selected_option { OPTION_INVALID };
|
|
|
|
};
|