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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990 The Regents of the University of California.
  3. '" Copyright (c) 1994-1997 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: MapWindow.3,v 1.4 1999/04/21 21:53:22 rjohnson Exp $
  9. '" 
  10. .so man.macros
  11. .TH Tk_MapWindow 3 "" Tk "Tk Library Procedures"
  12. .BS
  13. .SH NAME
  14. Tk_MapWindow, Tk_UnmapWindow - map or unmap a window
  15. .SH SYNOPSIS
  16. .nf
  17. fB#include <tk.h>fR
  18. .sp
  19. Tk_Window
  20. fBTk_MapWindowfR(fItkwinfR)
  21. .sp
  22. fBTk_UnmapWindowfR(fItkwinfR)
  23. .SH ARGUMENTS
  24. .AS Tk_Window parent
  25. .AP Tk_Window tkwin in
  26. Token for window.
  27. .BE
  28. .SH DESCRIPTION
  29. .PP
  30. These procedures may be used to map and unmap windows
  31. managed by Tk.  fBTk_MapWindowfR maps the window given
  32. by fItkwinfR, and also creates an X window corresponding
  33. to fItkwinfR if it doesn't already exist.  See the
  34. fBTk_CreateWindowfR manual entry for information on
  35. deferred window creation.
  36. fBTk_UnmapWindowfR unmaps fItkwinfR's window
  37. from the screen.
  38. .PP
  39. If fItkwinfR is a child window (i.e. fBTk_CreateWindowfR was
  40. used to create a child window), then event handlers interested in map 
  41. and unmap events are invoked immediately.  If fItkwinfR isn't an 
  42. internal window, then the event handlers will be invoked later, after 
  43. X has seen the request and returned an event for it.
  44. .PP
  45. These procedures should be used in place of the X procedures
  46. fBXMapWindowfR and fBXUnmapWindowfR, since they update
  47. Tk's local data structure for fItkwinfR.  Applications
  48. using Tk should not invoke fBXMapWindowfR and fBXUnmapWindowfR
  49. directly.
  50. .SH KEYWORDS
  51. map, unmap, window