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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: scrnsaver.h,v 1.6 94/04/17 20:59:34 keith Exp $
  3.  *
  4. Copyright (c) 1992  X Consortium
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  16. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  17. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  18. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. Except as contained in this notice, the name of the X Consortium shall not be
  20. used in advertising or otherwise to promote the sale, use or other dealings
  21. in this Software without prior written authorization from the X Consortium.
  22.  *
  23.  * Author:  Keith Packard, MIT X Consortium
  24.  */
  25. /* $XFree86$ */
  26. #ifndef _SCRNSAVER_H_
  27. #define _SCRNSAVER_H_
  28. #include <X11/Xfuncproto.h>
  29. #include <X11/Xlib.h>
  30. #include <X11/extensions/saver.h>
  31. typedef struct {
  32.     int type;     /* of event */
  33.     unsigned long serial;   /* # of last request processed by server */
  34.     Bool send_event;     /* true if this came frome a SendEvent request */
  35.     Display *display;     /* Display the event was read from */
  36.     Window window;     /* screen saver window */
  37.     Window root;     /* root window of event screen */
  38.     int state;     /* ScreenSaverOff, ScreenSaverOn, ScreenSaverCycle*/
  39.     int kind;     /* ScreenSaverBlanked, ...Internal, ...External */
  40.     Bool forced;     /* extents of new region */
  41.     Time time;     /* event timestamp */
  42. } XScreenSaverNotifyEvent;
  43. typedef struct {
  44.     Window  window;     /* screen saver window - may not exist */
  45.     int     state;     /* ScreenSaverOff, ScreenSaverOn, ScreenSaverDisabled*/
  46.     int     kind;     /* ScreenSaverBlanked, ...Internal, ...External */
  47.     unsigned long    til_or_since;   /* time til or since screen saver */
  48.     unsigned long    idle;     /* total time since last user input */
  49.     unsigned long   eventMask; /* currently selected events for this client */
  50. } XScreenSaverInfo;
  51. _XFUNCPROTOBEGIN
  52. extern Bool XScreenSaverQueryExtension (
  53.     Display* /* display */,
  54.     int* /* event_base */,
  55.     int* /* error_base */
  56. );
  57. extern Status XScreenSaverQueryVersion (
  58.     Display* /* display */,
  59.     int* /* major_version */,
  60.     int* /* minor_version */
  61. );
  62. extern XScreenSaverInfo *XScreenSaverAllocInfo (
  63.     void
  64. );
  65. extern Status XScreenSaverQueryInfo (
  66.     Display* /* display */,
  67.     Drawable /* drawable */,
  68.     XScreenSaverInfo* /* info */
  69. );
  70. extern void XScreenSaverSelectInput (
  71.     Display* /* display */,
  72.     Drawable /* drawable */,
  73.     unsigned long   /* eventMask */
  74. );
  75. extern void XScreenSaverSetAttributes (
  76.     Display*     /* display */,
  77.     Drawable     /* drawable */,
  78.     int     /* x */,
  79.     int     /* y */,
  80.     unsigned int     /* width */,
  81.     unsigned int     /* height */,
  82.     unsigned int     /* border_width */,
  83.     int     /* depth */,
  84.     unsigned int     /* class */,
  85.     Visual *     /* visual */,
  86.     unsigned long     /* valuemask */,
  87.     XSetWindowAttributes *  /* attributes */
  88. );
  89. extern void XScreenSaverUnsetAttributes (
  90.     Display* /* display */,
  91.     Drawable /* drawable */
  92. );
  93. extern Status XScreenSaverRegister (
  94.     Display* /* display */,
  95.     int /* screen */,
  96.     XID /* xid */,
  97.     Atom /* type */
  98. );
  99. extern Status XScreenSaverUnregister (
  100.     Display* /* display */,
  101.     int /* screen */
  102. );
  103. extern Status XScreenSaverGetRegistered (
  104.     Display* /* display */,
  105.     int /* screen */,
  106.     XID* /* xid */,
  107.     Atom* /* type */
  108. );
  109. extern void XScreenSaverSuspend (
  110.     Display* /* display */,
  111.     Bool  /* suspend */
  112. );
  113. _XFUNCPROTOEND
  114. #endif /* _SCRNSAVER_H_ */