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

ClipboardHistory: Add a clipboard history applet :^)

It will listen for clipboard content changes in the backgroud. Once you click
on its icon, it will pop up a window listing all recorded clipboard contents.
You can then double-click on an item to copy it again.
This commit is contained in:
Sergey Bugaev 2020-05-15 22:37:31 +03:00 committed by Andreas Kling
parent acc107a44f
commit f7ae66cee3
9 changed files with 309 additions and 0 deletions

View file

@ -0,0 +1,8 @@
set(SOURCES
ClipboardHistoryModel.cpp
IconWidget.cpp
main.cpp
)
serenity_bin(ClipboardHistory.MenuApplet)
target_link_libraries(ClipboardHistory.MenuApplet LibGUI LibCore LibGfx)