search for: cf_text

Displaying 6 results from an estimated 6 matches for "cf_text".

Did you mean: f_text
2019 May 23
2
writing Unicode text to the Windows clipboard
...049495dd..fc3dc39e3a7 100644 --- a/src/library/utils/src/windows/util.c +++ b/src/library/utils/src/windows/util.c @@ -318,7 +318,7 @@ SEXP writeClipboard(SEXP text, SEXP sformat) warning(_("unable to open the clipboard")); GlobalFree(hglb); } else { - success = SetClipboardData(CF_TEXT, hglb) != 0; + success = SetClipboardData(format, hglb) != 0; if(!success) { warning(_("unable to write to the clipboard")); GlobalFree(hglb); Example: "?" is "GREATER-THAN OVER EQUAL TO", which is unicode <U+2267>, has UTF-16LE bytes 67 22, and i...
2019 May 24
0
writing Unicode text to the Windows clipboard
...049495dd..fc3dc39e3a7 100644 --- a/src/library/utils/src/windows/util.c +++ b/src/library/utils/src/windows/util.c @@ -318,7 +318,7 @@ SEXP writeClipboard(SEXP text, SEXP sformat) warning(_("unable to open the clipboard")); GlobalFree(hglb); } else { - success = SetClipboardData(CF_TEXT, hglb) != 0; + success = SetClipboardData(format, hglb) != 0; if(!success) { warning(_("unable to write to the clipboard")); GlobalFree(hglb); Example: "?" is "GREATER-THAN OVER EQUAL TO", which is unicode <U+2267>, has UTF-16LE bytes 67 22, and i...
2009 Jan 29
6
Control Characters
I am attempting a text editor using wxRuby. I''m having character issues. Strings are not binary-safe. Some characters are not allowed. - newline / line feed (\n), tab (\t) are displayed - carraige return (\r) is stripped - Other control characters and high-ascii cause control values to become empty. Affected controls include: Wx::TextCtrl, Wx::StaticText, Wx::Clipboard, et al. Most
2016 Oct 28
0
Wine release 1.9.22
...n importing UTF-16. winemac: Remove support for owner-displayed clipboard formats. winemac: Remove support for converting among standard clipboard formats. winemac: Don't export/import CF_BITMAP or CF_DIBV5 to/from a Mac-native data type. winemac: Don't export/import CF_TEXT or CF_OEMTEXT to/from Mac-native data types. winemac: Clamp the number of colors to <= 256 in bitmap_info_size(). winemac: Use GetDIBits to retrieve the bitmap header when exporting a bitmap. winemac: Remove no-longer-called clipboard entry points. winemac: Simplify forma...
2013 Nov 22
0
Wine release 1.7.7
...Add support for the CF_METAFILEPICT clipboard format. winemac: Add support for the CF_ENHMETAFILE clipboard format. winemac: Synthesize CF_ENHMETAFILE from CF_METAFILEPICT. winemac: Synthesize CF_METAFILEPICT from CF_ENHMETAFILE. winemac: Synthesize text clipboard formats in CF_TEXT, CF_OEMTEXT, CF_UNICODETEXT order. winemac: Add a function to find the "natural" clipboard format entry for a format ID. winemac: Cache the "natural" clipboard format entry associated with synthesized built-in entries at startup. winemac: Make macdrv_EnumClipbo...
2005 May 03
10
Is wxRuby-SWIG version usable enough to package for download?
If wxRuby-SWIG is as usable as wxRuby 0.6.0, maybe it should be given a version number and packaged up for download. Given the nature of SWIG, having a lot more people use it would probably result in more code contributions to this project. Seems most of the changes are 2+ months old, so I''m guessing wxRuby-SWIG is fairly stable right now in terms of frequency of changes...