mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
23 lines
430 B
C
23 lines
430 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibGUI/GWidget.h>
|
||
|
|
|
||
|
|
class GButton;
|
||
|
|
class GListView;
|
||
|
|
class GTextBox;
|
||
|
|
|
||
|
|
class FindInFilesWidget final : public GWidget {
|
||
|
|
C_OBJECT(FindInFilesWidget)
|
||
|
|
public:
|
||
|
|
virtual ~FindInFilesWidget() override {}
|
||
|
|
|
||
|
|
void focus_textbox_and_select_all();
|
||
|
|
|
||
|
|
private:
|
||
|
|
explicit FindInFilesWidget(GWidget* parent);
|
||
|
|
|
||
|
|
RefPtr<GTextBox> m_textbox;
|
||
|
|
RefPtr<GButton> m_button;
|
||
|
|
RefPtr<GListView> m_result_view;
|
||
|
|
};
|