summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Clipboard.h
AgeCommit message (Collapse)Author
2021-11-21LibGUI+Everywhere: Make sync requests to Clipboard server more obviousBen Wiederhake
2021-11-21LibGUI: Make clipboard-as-bitmap parsing less data-race-yBen Wiederhake
This encourages the caller to first fetch data and type atomically, and then parse that, instead of potentially making multiple requests.
2021-11-11Everywhere: Pass AK::ReadonlyBytes by valueAndreas Kling
2021-07-27LibGUI: Add a ClipboardClient for GUI::ClipboardTheFightingCatfish
Anyone who inherits from `GUI::Clipboard::ClipboardClient` will receive clipboard notifications via `clipboard_content_did_change()`. Update ClipboardHistoryModel, TextEditor and TerminalWidget to inherit from this class.
2021-05-10LibGUI: Add Clipboard::clear()Sergey Bugaev
Does exactly what it says on the tin :^)
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling