1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

LibGUI: Add GUI::DesktopServices::open(URL)

This API is used to open a URL in whatever way the desktop system feels
is best. If you give it a file:// URL, it will try to work out a good
application to open the URL with. For all other protocols, it will open
a Browser instance. :^)
This commit is contained in:
Andreas Kling 2020-04-18 21:56:28 +02:00
parent d17b42b28d
commit 3f08dd5ddc
3 changed files with 122 additions and 0 deletions

View file

@ -18,6 +18,7 @@ OBJS = \
CppLexer.o \
CppSyntaxHighlighter.o \
Desktop.o \
DesktopServices.o \
Dialog.o \
DisplayLink.o \
DragOperation.o \