ladybird/Userland/Applications/CharacterMap/CharacterSearchWidget.h
Lenny Maiorani 160bda7228 Applications: Use default constructors/destructors
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."
2022-02-14 22:06:55 +00:00

32 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;
};