windowswm.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:7k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * WindowsWM extension is based on AppleWM extension
  3.  * Authors: Kensuke Matsuzaki
  4.  */
  5. /**************************************************************************
  6. Copyright (c) 2002 Apple Computer, Inc.
  7. All Rights Reserved.
  8. Permission is hereby granted, free of charge, to any person obtaining a
  9. copy of this software and associated documentation files (the
  10. "Software"), to deal in the Software without restriction, including
  11. without limitation the rights to use, copy, modify, merge, publish,
  12. distribute, sub license, and/or sell copies of the Software, and to
  13. permit persons to whom the Software is furnished to do so, subject to
  14. the following conditions:
  15. The above copyright notice and this permission notice (including the
  16. next paragraph) shall be included in all copies or substantial portions
  17. of the Software.
  18. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  19. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  20. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
  21. IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
  22. ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  23. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  24. SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. **************************************************************************/
  26. #ifndef _WINDOWSWM_H_
  27. #define _WINDOWSWM_H_
  28. #include <X11/Xfuncproto.h>
  29. #define X_WindowsWMQueryVersion 0
  30. #define X_WindowsWMFrameGetRect 1
  31. #define X_WindowsWMFrameDraw 2
  32. #define X_WindowsWMFrameSetTitle 3
  33. #define X_WindowsWMDisableUpdate 4
  34. #define X_WindowsWMReenableUpdate 5
  35. #define X_WindowsWMSelectInput 6
  36. #define X_WindowsWMSetFrontProcess 7
  37. /* Events */
  38. #define WindowsWMControllerNotify 0
  39. #define WindowsWMActivationNotify 1
  40. #define WindowsWMNumberEvents 2
  41. #define WindowsWMControllerNotifyMask (1L << 0)
  42. #define WindowsWMActivationNotifyMask (1L << 1)
  43. /* "Kinds" of ControllerNotify events */
  44. #define WindowsWMMinimizeWindow 0
  45. #define WindowsWMMaximizeWindow 1
  46. #define WindowsWMRestoreWindow 2
  47. #define WindowsWMCloseWindow 3
  48. #define WindowsWMBringAllToFront 4
  49. #define WindowsWMHideWindow 5
  50. #define WindowsWMMoveWindow 6
  51. #define WindowsWMResizeWindow 7
  52. #define WindowsWMActivateWindow 8
  53. /* "Kinds" of ActivationNotify events */
  54. #define WindowsWMIsActive 0
  55. #define WindowsWMIsInactive 1
  56. /* Errors */
  57. #define WindowsWMClientNotLocal 0
  58. #define WindowsWMOperationNotSupported 1
  59. #define WindowsWMNumberErrors (WindowsWMOperationNotSupported + 1)
  60. /* Possible value for frame_rect argument to XWindowsWMFrameGetRect() */
  61. #define WindowsWMFrameRectTitleBar 1
  62. #define WindowsWMFrameRectTracking 2
  63. #define WindowsWMFrameRectGrowBox 3
  64. /* Window frame styles */
  65. #define WindowsWMFrameStyleBorder 0x800000
  66. #define WindowsWMFrameStyleCaption 0xc00000
  67. #define WindowsWMFrameStyleChild 0x40000000
  68. #define WindowsWMFrameStyleChildWindow 0x40000000
  69. #define WindowsWMFrameStyleClipChildren 0x2000000
  70. #define WindowsWMFrameStyleClipSiblings 0x4000000
  71. #define WindowsWMFrameStyleDisabled 0x8000000
  72. #define WindowsWMFrameStyleDlgFrame 0x400000
  73. #define WindowsWMFrameStyleGroup 0x20000
  74. #define WindowsWMFrameStyleHScroll 0x100000
  75. #define WindowsWMFrameStyleIconic 0x20000000
  76. #define WindowsWMFrameStyleMaximize 0x1000000
  77. #define WindowsWMFrameStyleMaximizeBox 0x10000
  78. #define WindowsWMFrameStyleMinimize 0x20000000
  79. #define WindowsWMFrameStyleMinimizeBox 0x20000
  80. #define WindowsWMFrameStyleOverlapped 0
  81. #define WindowsWMFrameStyleOverlappedWindow 0xcf0000
  82. #define WindowsWMFrameStylePopup 0x80000000
  83. #define WindowsWMFrameStylePopupWindow 0x80880000
  84. #define WindowsWMFrameStyleSizeBox 0x40000
  85. #define WindowsWMFrameStyleSysMenu 0x80000
  86. #define WindowsWMFrameStyleTabStop 0x10000
  87. #define WindowsWMFrameStyleThickFrame 0x40000
  88. #define WindowsWMFrameStyleTiled 0
  89. #define WindowsWMFrameStyleTiledWindow 0xcf0000
  90. #define WindowsWMFrameStyleVisible 0x10000000
  91. #define WindowsWMFrameStyleVScroll 0x200000
  92. /* Window frame Ex-styles */
  93. #define WindowsWMFrameStyleExAcceptFiles 16
  94. #define WindowsWMFrameStyleExAppWindow 0x40000
  95. #define WindowsWMFrameStyleExClientEdge 512
  96. #define WindowsWMFrameStyleExComposited 0x2000000
  97. #define WindowsWMFrameStyleExContextHelp 0x400
  98. #define WindowsWMFrameStyleExControlParent 0x10000
  99. #define WindowsWMFrameStyleExDlgModalFrame 1
  100. #define WindowsWMFrameStyleExLayered 0x80000
  101. #define WindowsWMFrameStyleExLayoutRtl 0x400000
  102. #define WindowsWMFrameStyleExLeft 0
  103. #define WindowsWMFrameStyleExLeftScrollBar 0x4000
  104. #define WindowsWMFrameStyleExLtrReading 0
  105. #define WindowsWMFrameStyleExMDIChild 64
  106. #define WindowsWMFrameStyleExNoActivate 0x8000000
  107. #define WindowsWMFrameStyleExNoInheritLayout 0x100000
  108. #define WindowsWMFrameStyleExNoParentNotify 4
  109. #define WindowsWMFrameStyleExOverlappedWindow 0x300
  110. #define WindowsWMFrameStyleExPaletteWindow 0x188
  111. #define WindowsWMFrameStyleExRight 0x1000
  112. #define WindowsWMFrameStyleExRightScrollBar 0
  113. #define WindowsWMFrameStyleExRtlReading 0x2000
  114. #define WindowsWMFrameStyleExStaticEdge 0x20000
  115. #define WindowsWMFrameStyleExToolWindow 128
  116. #define WindowsWMFrameStyleExTopMost 8
  117. #define WindowsWMFrameStyleExTransparent 32
  118. #define WindowsWMFrameStyleExWindowEdge 256
  119. #define WINDOWSWM_RAISE_ON_CLICK "_WINDOWSWM_RAISE_ON_CLICK"
  120. #define WINDOWSWM_MOUSE_ACTIVATE "_WINDOWSWM_MOUSE_ACTIVATE"
  121. #define WINDOWSWM_CLIENT_WINDOW "_WINDOWSWM_CLIENT_WINDOW"
  122. #define WINDOWSWM_NATIVE_HWND "_WINDOWSWM_NATIVE_HWND"
  123. #ifndef _WINDOWSWM_SERVER_
  124. typedef struct {
  125.     int type;     /* of event */
  126.     unsigned long serial;   /* # of last request processed by server */
  127.     Bool send_event;     /* true if this came frome a SendEvent request */
  128.     Display *display;     /* Display the event was read from */
  129.     Window window;     /* window of event */
  130.     Time time;     /* server timestamp when event happened */
  131.     int kind;     /* subtype of event */
  132.     int arg;
  133.     int x;
  134.     int y;
  135.     int w;
  136.     int h;
  137. } XWindowsWMNotifyEvent;
  138. _XFUNCPROTOBEGIN
  139. Bool XWindowsWMQueryExtension (Display *dpy, int *event_base, int *error_base);
  140. Bool XWindowsWMQueryVersion (Display *dpy, int *majorVersion,
  141.      int *minorVersion, int *patchVersion);
  142. Bool XWindowsWMDisableUpdate (Display *dpy, int screen);
  143. Bool XWindowsWMReenableUpdate (Display *dpy, int screen);
  144. Bool XWindowsWMSelectInput (Display *dpy, unsigned long mask);
  145. Bool XWindowsWMSetFrontProcess (Display *dpy);
  146. Bool XWindowsWMFrameGetRect (Display *dpy,
  147.      unsigned int frame_style,
  148.      unsigned int frame_style_ex,
  149.      unsigned int frame_rect,
  150.      short inner_x, short inner_y,
  151.      short inner_w, short inner_h,
  152.      short *ret_x, short *ret_y,
  153.      short *ret_w, short *ret_h);
  154. Bool XWindowsWMFrameDraw (Display *dpy, int screen, Window window,
  155.   unsigned int frame_style,
  156.   unsigned int frame_style_ex,
  157.   short inner_x, short inner_y,
  158.   short inner_w, short inner_h);
  159. Bool XWindowsWMFrameSetTitle (Display *dpy, int screen, Window window,
  160.       unsigned int title_length,
  161.       const char * title_bytes);
  162. _XFUNCPROTOEND
  163. #endif /* _WINDOWSWM_SERVER_ */
  164. #endif /* _WINDOWSWM_H_ */