mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
88 lines
2.0 KiB
C++
88 lines
2.0 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Model.h>
|
|
#include <LibGUI/TextBox.h>
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace GUI {
|
|
|
|
class ModelEditingDelegate {
|
|
public:
|
|
virtual ~ModelEditingDelegate() { }
|
|
|
|
void bind(Model& model, const ModelIndex& index)
|
|
{
|
|
if (m_model.ptr() == &model && m_index == index)
|
|
return;
|
|
m_model = model;
|
|
m_index = index;
|
|
m_widget = create_widget();
|
|
}
|
|
|
|
Widget* widget() { return m_widget; }
|
|
const Widget* widget() const { return m_widget; }
|
|
|
|
Function<void()> on_commit;
|
|
Function<void()> on_rollback;
|
|
|
|
virtual Variant value() const = 0;
|
|
virtual void set_value(const Variant&) = 0;
|
|
|
|
virtual void will_begin_editing() { }
|
|
|
|
protected:
|
|
ModelEditingDelegate() { }
|
|
|
|
virtual RefPtr<Widget> create_widget() = 0;
|
|
void commit()
|
|
{
|
|
if (on_commit)
|
|
on_commit();
|
|
}
|
|
void rollback()
|
|
{
|
|
if (on_rollback)
|
|
on_rollback();
|
|
}
|
|
|
|
const ModelIndex& index() const { return m_index; }
|
|
|
|
private:
|
|
RefPtr<Model> m_model;
|
|
ModelIndex m_index;
|
|
RefPtr<Widget> m_widget;
|
|
};
|
|
|
|
class StringModelEditingDelegate : public ModelEditingDelegate {
|
|
public:
|
|
StringModelEditingDelegate() { }
|
|
virtual ~StringModelEditingDelegate() override { }
|
|
|
|
virtual RefPtr<Widget> create_widget() override
|
|
{
|
|
auto textbox = TextBox::construct();
|
|
textbox->on_return_pressed = [this] {
|
|
commit();
|
|
};
|
|
textbox->on_escape_pressed = [this] {
|
|
rollback();
|
|
};
|
|
return textbox;
|
|
}
|
|
virtual Variant value() const override { return static_cast<const TextBox*>(widget())->text(); }
|
|
virtual void set_value(const Variant& value) override
|
|
{
|
|
auto& textbox = static_cast<TextBox&>(*widget());
|
|
textbox.set_text(value.to_string());
|
|
textbox.select_all();
|
|
}
|
|
};
|
|
|
|
}
|