Added pasting and sending features

This commit is contained in:
Ebbe Baß
2026-08-13 15:43:34 +02:00
parent 940e80b630
commit ceadaff995
22 changed files with 771 additions and 55 deletions
@@ -0,0 +1,13 @@
namespace EbbesMemeClipboard.Models;
public enum InsertMode
{
/// <summary>Just copy the meme to the clipboard; the user pastes it manually.</summary>
CopyOnly,
/// <summary>Copy to the clipboard, then paste it into whatever app was focused before the picker opened.</summary>
PasteIntoActiveWindow,
/// <summary>Same as PasteIntoActiveWindow, then also press Enter to submit/send it.</summary>
PasteAndSend,
}