mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-04 18:23:39 +00:00
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
31 lines
691 B
C++
31 lines
691 B
C++
/*
|
|
* Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "CharacterMapWidget.h"
|
|
#include <LibGUI/Button.h>
|
|
#include <LibGUI/TableView.h>
|
|
#include <LibGUI/TextBox.h>
|
|
|
|
class CharacterSearchWidget final : public GUI::Widget {
|
|
C_OBJECT(CharacterSearchWidget);
|
|
|
|
public:
|
|
virtual ~CharacterSearchWidget() override = default;
|
|
|
|
Function<void(u32)> on_character_selected;
|
|
|
|
private:
|
|
CharacterSearchWidget();
|
|
|
|
void search();
|
|
|
|
RefPtr<GUI::TextBox> m_search_input;
|
|
RefPtr<GUI::Button> m_search_button;
|
|
RefPtr<GUI::TableView> m_results_table;
|
|
};
|