CVS: tvision/include/tv/x11 screen.h,2.24.2.13,2.24.2.14
Brought to you by:
set
From: Salvador E. T. <se...@us...> - 2017-07-30 20:07:07
|
Update of /cvsroot/tvision/tvision/include/tv/x11 In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24859/include/tv/x11 Modified Files: Tag: r2_0_1u screen.h Log Message: * Added: [X11] Support for the XA_TARGETS request. It solves clipboard problems on KDE (tested on KDE 5.28) Index: screen.h =================================================================== RCS file: /cvsroot/tvision/tvision/include/tv/x11/screen.h,v retrieving revision 2.24.2.13 retrieving revision 2.24.2.14 diff -C2 -d -r2.24.2.13 -r2.24.2.14 *** screen.h 30 Jul 2017 17:11:39 -0000 2.24.2.13 --- screen.h 30 Jul 2017 20:07:04 -0000 2.24.2.14 *************** *** 110,113 **** --- 110,114 ---- // Events loop static void ProcessGenericEvents(); + static void ProcessSelectionRequest(XEvent &event); // Internal line update static void writeLineCP(int x, int y, int w, void *str, unsigned color); *************** *** 176,179 **** --- 177,183 ---- // Needed to catch the windows close static Atom theProtocols; + // Clipboard properties + static Atom XA_TARGETS; + static Atom XA_MULTIPLE; // Our colors mapped to X ones static ulong colorMap[16]; |