FileManager+LibGUI: Add a simple location textbox.

The widget layout here is a bit off and needs work.
This commit is contained in:
Andreas Kling 2019-03-03 00:34:40 +01:00
commit d94abc4f81
Notes: sideshowbarker 2024-07-19 15:33:58 +09:00
5 changed files with 23 additions and 13 deletions

View file

@ -9,7 +9,7 @@ public:
virtual ~GTextBox() override;
String text() const { return m_text; }
void set_text(String&&);
void set_text(const String&);
Function<void(GTextBox&)> on_return_pressed;
Function<void(GTextBox&)> on_change;