OwnSelect.3
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990-1994 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: OwnSelect.3,v 1.2 1998/09/14 18:22:53 stanton Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tk_OwnSelection 3 4.0 Tk "Tk Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tk_OwnSelection - make a window the owner of the primary selection
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tk.h>fR
  18. .sp
  19. fBTk_OwnSelectionfR(fItkwin, selection, proc, clientDatafR)
  20. .SH ARGUMENTS
  21. .AS Tk_LostSelProc clientData
  22. .AP Tk_Window tkwin in
  23. Window that is to become new selection owner.
  24. .AP Atom selection in
  25. The name of the selection to be owned, such as XA_PRIMARY.
  26. .AP Tk_LostSelProc *proc in
  27. Procedure to invoke when fItkwinfR loses selection ownership later.
  28. .AP ClientData clientData in
  29. Arbitrary one-word value to pass to fIprocfR.
  30. .BE
  31. .SH DESCRIPTION
  32. .PP
  33. fBTk_OwnSelectionfR arranges for fItkwinfR to become the
  34. new owner of the selection specified by the atom
  35. fIselectionfR.  After this call completes, future requests
  36. for the selection will be directed to handlers created for
  37. fItkwinfR using fBTk_CreateSelHandlerfR.  When fItkwinfR
  38. eventually loses the selection ownership, fIprocfR will be
  39. invoked so that the window can clean itself up (e.g. by
  40. unhighlighting the selection).  fIProcfR should have arguments and
  41. result that match the type fBTk_LostSelProcfR:
  42. .CS
  43. typedef void Tk_LostSelProc(ClientData fIclientDatafR);
  44. .CE
  45. The fIclientDatafR parameter to fIprocfR is a copy of the
  46. fIclientDatafR argument given to fBTk_OwnSelectionfR, and is
  47. usually a pointer to a data structure containing application-specific
  48. information about fItkwinfR.
  49. .SH KEYWORDS
  50. own, selection owner