diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-02-09 14:40:35 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-02-09 17:14:25 +0100 |
commit | a97602889753f596e9738104bc0f9b6ab424f7a7 (patch) | |
tree | 31008b27c0e73fc362848b3b66af673cc6721c68 /src/gui/widgets/itemlinkhandler.h | |
parent | b5e416f8cd52f69ff1edd832ee10bac550544ef6 (diff) | |
download | mana-a97602889753f596e9738104bc0f9b6ab424f7a7.tar.gz mana-a97602889753f596e9738104bc0f9b6ab424f7a7.tar.bz2 mana-a97602889753f596e9738104bc0f9b6ab424f7a7.tar.xz mana-a97602889753f596e9738104bc0f9b6ab424f7a7.zip |
Optimized BrowserBox
* Introduced a LayoutContext that conveniently allows for relayouting
all rows, or just a single one when it is added. BrowserBox::addRow
no longer relayouts all the rows.
* BrowserLink and LinePart are now merged into a new TextRow struct,
so they can be conveniently dropped when the row limit has been
reached.
* Removed "opaque" option, which was enabled by default but disabled
for all BrowserBox instances.
* Removed "always update" option, and instead start delaying relayouting
automatically when there are a lot of rows (> 100 currently).
* Update window now also has text wrapping enabled.
Closes #50
Diffstat (limited to 'src/gui/widgets/itemlinkhandler.h')
-rw-r--r-- | src/gui/widgets/itemlinkhandler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/widgets/itemlinkhandler.h b/src/gui/widgets/itemlinkhandler.h index dd9eeedc..d0f00b25 100644 --- a/src/gui/widgets/itemlinkhandler.h +++ b/src/gui/widgets/itemlinkhandler.h @@ -31,6 +31,7 @@ class ItemLinkHandler : public LinkHandler public: ItemLinkHandler(); ~ItemLinkHandler() override; + void handleLink(const std::string &link) override; private: |