serenity/Ladybird
Timothy Flynn dda405e652 UI/Qt: Execute dialogs opened from the page asynchronously
Invoking exec() entirely blocks the UI application's main thread. Qt
explicitly recommends against this. In practice, it seems prevents some
IPC messages from being handled by the UI until the dialog is closed by
the user.

Instead, use open() (which is non-blocking) and set up a signal handler
to deal with the result.

(cherry picked from commit ea9abe26e1c40c0d2e96007bf7d69afb49a7052a)
2024-11-28 18:58:55 -05:00
..
AppKit LibWeb+UI: Detect and handle left vs. right modifier keys 2024-11-28 15:15:36 -05:00
cmake Qt: Add box icon to line box debug menu action 2024-11-12 07:14:25 -05:00
Icons Ladybird/Qt: Add a find in page widget 2024-05-30 16:30:11 +02:00
ImageDecoder Everywhere: Gently remove the ladybird android port 2024-06-11 19:40:08 -04:00
Qt UI/Qt: Execute dialogs opened from the page asynchronously 2024-11-28 18:58:55 -05:00
RequestServer Everywhere: Convert from_string_view -> from_string_literal where static 2024-11-15 08:56:39 -05:00
SQLServer Ladybird: Register SQLServer with the task manager 2024-04-22 14:46:10 -06:00
WebContent LibWeb: Implement very basic in-memory HTTP caching 2024-11-05 11:22:07 -05:00
WebDriver WebDriver: Add option to use Qt networking 2024-11-15 19:07:17 -05:00
WebWorker WebWorker: Allow the WebWorker process to optionally use Qt networking 2024-11-15 19:07:17 -05:00
.gitignore Everywhere: Gently remove the ladybird android port 2024-06-11 19:40:08 -04:00
CMakeLists.txt Everywhere: Gently remove the ladybird android port 2024-06-11 19:40:08 -04:00
default.nix Toolchain/nix: Add some more useful packages 2024-09-22 09:06:02 -04:00
FontPlugin.cpp Ladybird: Use Core::Resource to locate the emoji lookup path 2024-03-23 17:26:31 -04:00
FontPlugin.h
HelperProcess.cpp Ladybird+LibIPC: Move clearing FD_CLOEXEC helper logic to IPC::File 2024-11-24 20:50:01 -05:00
HelperProcess.h WebWorker: Allow the WebWorker process to optionally use Qt networking 2024-11-15 19:07:17 -05:00
ImageCodecPlugin.cpp Ladybird: Remove unnecessary copy of decoded images 2024-11-09 07:29:52 -05:00
ImageCodecPlugin.h LibWeb+WebContent: Convert ImageCodecPlugin to use the promise-based API 2024-04-23 12:32:04 -06:00
Info.plist Ladybird: Register Ladybird as a browser-type application on macOS 2023-11-14 09:36:36 -05:00
MachPortServer.cpp LibCore+LibWebView: Move process statistics to LibCore 2024-04-22 14:46:10 -06:00
MachPortServer.h Ladybird+LibWebView: Add mechanism to get Mach task port for helpers 2024-04-09 16:43:27 -06:00
README.md Everywhere: Format Markdown with prettier 2024-10-04 10:46:42 -04:00
Types.h LibWeb: Implement very basic in-memory HTTP caching 2024-11-05 11:22:07 -05:00
Utilities.cpp Ladybird: Return a reference to the mach server name 2024-04-22 14:46:10 -06:00
Utilities.h Ladybird: Return a reference to the mach server name 2024-04-22 14:46:10 -06:00

Ladybird

Note

The Ladybird web browser project has moved to LadybirdBrowser/ladybird, this version is kept as a developer convenience for the testing of LibWeb and LibJS libraries included with SerenityOS.

Ladybird is a web browser built on the LibWeb and LibJS engines from SerenityOS. The Browser UI has a cross-platform GUI in Qt6 and a macOS-specific GUI in AppKit.

Ladybird aims to be a standards-compliant, independent web browser with no third-party dependencies. Currently, the only dependencies are UI frameworks like Qt6 and AppKit, and low-level platform-specific libraries like PulseAudio, CoreAudio and OpenGL.

Features

The Ladybird browser application uses a multiprocess architecture with a main UI process, several WebContent renderer processes, an ImageDecoder process, a RequestServer process, and a SQLServer process for holding cookies.

Image decoding and network connections are done out of process to be more robust against malicious content. Each tab has its own renderer process, which is sandboxed from the rest of the system.

All the core library support components are developed in the serenity monorepo:

  • LibWeb: Web Rendering Engine
  • LibJS: JavaScript Engine
  • LibWasm: WebAssembly implementation
  • LibCrypto/LibTLS: Cryptography primitives and Transport Layer Security (rather than OpenSSL)
  • LibHTTP: HTTP/1.1 client
  • LibGfx: 2D Graphics Library, Image Decoding and Rendering (rather than skia)
  • LibArchive: Archive file format support (rather than libarchive, zlib)
  • LibUnicode, LibLocale: Unicode and Locale support (rather than libicu)
  • LibAudio, LibVideo: Audio and Video playback (rather than libav, ffmpeg)
  • LibCore: Event Loop, OS Abstraction layer
  • LibIPC: Inter-Process Communication
  • ... and more!

Building and Development

See build instructions for information on how to build Ladybird.

See CONTRIBUTING.md for information on how to contribute to Ladybird.

More Information

For more information about the history of Ladybird, see this blog post.

The official website for Ladybird is ladybird.dev.