ladybird/Libraries/LibWeb/Clipboard
Shannon Booth 637fd51595 LibWeb: Unify WebIDL C++ type generation
Represent WebIDL C++ types with a single CppType model that tracks
nullability, optional presence, and contained storage.

GC-like values now use GC::Ref/GC::Ptr directly, while containers choose
"plain", "Root", or "Conservative" container types depending on what
they contain. For example, sequence<Element> becomes a RootVector of
GC::Ref values, while sequence<SomeDictionary> becomes a
ConservativeVector only when the dictionary contains GC-like values.
This moves the generated bindings away from wrapping GC values in
GC::Root by default.

This has broad fallout as the types passed to interfaces for GC
objects changes almost fully across the board.
2026-05-23 18:26:12 +02:00
..
Clipboard.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
Clipboard.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
Clipboard.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
ClipboardEvent.cpp LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
ClipboardEvent.h LibWeb/Bindings: Generate struct definitions from IDL dictionaries 2026-05-09 10:49:49 +02:00
ClipboardEvent.idl LibWeb+LibIDL: Remove support for #import directives during parsing 2026-04-24 20:08:29 +02:00
ClipboardItem.cpp LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
ClipboardItem.h LibWeb: Unify WebIDL C++ type generation 2026-05-23 18:26:12 +02:00
ClipboardItem.idl LibWeb: Convert trivial attributes to FrozenArray 2025-04-25 16:43:43 +02:00
SystemClipboard.cpp LibWeb+LibWebVew+WebContent+UI: Add IPC to retrieve the system clipboard 2025-05-02 17:46:16 -04:00
SystemClipboard.h LibWeb: Enable EXPLICIT_SYMBOL_EXPORT 2025-08-23 16:04:36 -06:00