WebContent: Plumb link clicks to the WebContentView :^)

You can now react to links being clicked via the on_link_click hook.
This commit is contained in:
Andreas Kling 2020-07-06 20:01:46 +02:00
commit 32243e1df2
Notes: sideshowbarker 2024-07-19 05:06:18 +09:00
8 changed files with 48 additions and 1 deletions

View file

@ -56,6 +56,11 @@ int main(int argc, char** argv)
statusbar.set_text("");
};
view.on_link_click = [&](auto& url, auto&, auto) {
if (url.is_valid())
view.load(url);
};
view.load("file:///res/html/misc/welcome.html");
return app->exec();