Tk_OwnSelection(3tk) | Tk Library Procedures | Tk_OwnSelection(3tk) |
Tk_OwnSelection - make a window the owner of the primary selection
#include <tk.h> Tk_OwnSelection(tkwin, selection, proc, clientData)
Tk_OwnSelection arranges for tkwin to become the new owner of the selection specified by the atom selection. After this call completes, future requests for the selection will be directed to handlers created for tkwin using Tk_CreateSelHandler. When tkwin eventually loses the selection ownership, proc will be invoked so that the window can clean itself up (e.g. by unhighlighting the selection). Proc should have arguments and result that match the type Tk_LostSelProc:
typedef void Tk_LostSelProc(
ClientData clientData);
own, selection owner
4.0 | Tk |