mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-08 09:09:43 +00:00
LibGUI: Use UndoStack::on_state_change inside TextDocument/TextEditor
Have TextDocument listen for state changes on the internal undo stack, and forward those to all clients via a new virtual function. This simplifies updating the can_undo / can_redo states of TextEditor.
This commit is contained in:
parent
0cb6103928
commit
ee19f7c0aa
Notes:
sideshowbarker
2024-07-18 18:31:14 +09:00
Author: https://github.com/awesomekling
Commit: ee19f7c0aa
5 changed files with 17 additions and 2 deletions
|
@ -102,6 +102,7 @@ public:
|
|||
virtual void document_did_change() override {};
|
||||
virtual void document_did_set_text() override {};
|
||||
virtual void document_did_set_cursor(const GUI::TextPosition&) override {};
|
||||
virtual void document_did_update_undo_stack() override { }
|
||||
|
||||
virtual bool is_automatic_indentation_enabled() const override { return false; }
|
||||
virtual int soft_tab_width() const override { return 4; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue