Fix: Fl::clipboard_contains() cannot query selection buffer (#690)

This commit is contained in:
ManoloFLTK 2023-11-01 10:41:51 +01:00
parent 8bd1bd7162
commit 994f5d058b

View File

@ -1032,7 +1032,12 @@ public:
*/
static void remove_clipboard_notify(Fl_Clipboard_Notify_Handler h);
/** Returns non 0 if the clipboard contains data matching \p type.
\p type can be Fl::clipboard_plain_text or Fl::clipboard_image.
The clipboard can contain both text and image data; in that situation this function
returns non 0 to both requests.
This function is \e not meant to check whether the clipboard is empty.
This function does not allow to query the selection buffer because FLTK
allows to copy/paste non-textual data only from/to the clipboard.
\param type can be Fl::clipboard_plain_text or Fl::clipboard_image.
*/
static int clipboard_contains(const char *type);
/** Denotes plain textual data