mirror of https://github.com/buggins/dlangui.git
320 lines
9.7 KiB
D
320 lines
9.7 KiB
D
/*
|
|
* This file generated automatically from xtest.xml by c-client.xsl using XSLT.
|
|
* Edit at your peril.
|
|
*/
|
|
|
|
/**
|
|
* @defgroup XCB_Test_API XCB Test API
|
|
* @brief Test XCB Protocol Implementation.
|
|
* @{
|
|
**/
|
|
|
|
|
|
module std.c.linux.X11.xcb.xtest;
|
|
version(USE_XCB):
|
|
|
|
import std.c.linux.X11.xcb.xcb;
|
|
import std.c.linux.X11.xcb.xproto;
|
|
|
|
const int XCB_TEST_MAJOR_VERSION =2;
|
|
const int XCB_TEST_MINOR_VERSION =1;
|
|
|
|
extern(C) extern xcb_extension_t xcb_test_id;
|
|
|
|
/**
|
|
* @brief xcb_test_get_version_cookie_t
|
|
**/
|
|
struct xcb_test_get_version_cookie_t {
|
|
uint sequence; /**< */
|
|
} ;
|
|
|
|
/** Opcode for xcb_test_get_version. */
|
|
const uint XCB_TEST_GET_VERSION = 0;
|
|
|
|
/**
|
|
* @brief xcb_test_get_version_request_t
|
|
**/
|
|
struct xcb_test_get_version_request_t {
|
|
ubyte major_opcode; /**< */
|
|
ubyte minor_opcode; /**< */
|
|
ushort length; /**< */
|
|
ubyte major_version; /**< */
|
|
ubyte pad0; /**< */
|
|
ushort minor_version; /**< */
|
|
} ;
|
|
|
|
/**
|
|
* @brief xcb_test_get_version_reply_t
|
|
**/
|
|
struct xcb_test_get_version_reply_t {
|
|
ubyte response_type; /**< */
|
|
ubyte major_version; /**< */
|
|
ushort sequence; /**< */
|
|
uint length; /**< */
|
|
ushort minor_version; /**< */
|
|
} ;
|
|
|
|
enum :int{
|
|
XCB_TEST_CURSOR_NONE = 0,
|
|
XCB_TEST_CURSOR_CURRENT = 1
|
|
};
|
|
|
|
/**
|
|
* @brief xcb_test_compare_cursor_cookie_t
|
|
**/
|
|
struct xcb_test_compare_cursor_cookie_t {
|
|
uint sequence; /**< */
|
|
} ;
|
|
|
|
/** Opcode for xcb_test_compare_cursor. */
|
|
const uint XCB_TEST_COMPARE_CURSOR = 1;
|
|
|
|
/**
|
|
* @brief xcb_test_compare_cursor_request_t
|
|
**/
|
|
struct xcb_test_compare_cursor_request_t {
|
|
ubyte major_opcode; /**< */
|
|
ubyte minor_opcode; /**< */
|
|
ushort length; /**< */
|
|
xcb_window_t window; /**< */
|
|
xcb_cursor_t cursor; /**< */
|
|
} ;
|
|
|
|
/**
|
|
* @brief xcb_test_compare_cursor_reply_t
|
|
**/
|
|
struct xcb_test_compare_cursor_reply_t {
|
|
ubyte response_type; /**< */
|
|
bool same; /**< */
|
|
ushort sequence; /**< */
|
|
uint length; /**< */
|
|
} ;
|
|
|
|
/** Opcode for xcb_test_fake_input. */
|
|
const uint XCB_TEST_FAKE_INPUT = 2;
|
|
|
|
/**
|
|
* @brief xcb_test_fake_input_request_t
|
|
**/
|
|
struct xcb_test_fake_input_request_t {
|
|
ubyte major_opcode; /**< */
|
|
ubyte minor_opcode; /**< */
|
|
ushort length; /**< */
|
|
ubyte type; /**< */
|
|
ubyte detail; /**< */
|
|
ubyte pad0[2]; /**< */
|
|
uint time; /**< */
|
|
xcb_window_t window; /**< */
|
|
ubyte pad1[8]; /**< */
|
|
ushort rootX; /**< */
|
|
ushort rootY; /**< */
|
|
ubyte pad2[7]; /**< */
|
|
ubyte deviceid; /**< */
|
|
} ;
|
|
|
|
/** Opcode for xcb_test_grab_control. */
|
|
const uint XCB_TEST_GRAB_CONTROL = 3;
|
|
|
|
/**
|
|
* @brief xcb_test_grab_control_request_t
|
|
**/
|
|
struct xcb_test_grab_control_request_t {
|
|
ubyte major_opcode; /**< */
|
|
ubyte minor_opcode; /**< */
|
|
ushort length; /**< */
|
|
bool impervious; /**< */
|
|
ubyte pad0[3]; /**< */
|
|
} ;
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_test_get_version_cookie_t xcb_test_get_version
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param ubyte major_version
|
|
** @param ushort minor_version
|
|
** @returns xcb_test_get_version_cookie_t
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_test_get_version_cookie_t
|
|
xcb_test_get_version (xcb_connection_t *c /**< */,
|
|
ubyte major_version /**< */,
|
|
ushort minor_version /**< */);
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_test_get_version_cookie_t xcb_test_get_version_unchecked
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param ubyte major_version
|
|
** @param ushort minor_version
|
|
** @returns xcb_test_get_version_cookie_t
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_test_get_version_cookie_t
|
|
xcb_test_get_version_unchecked (xcb_connection_t *c /**< */,
|
|
ubyte major_version /**< */,
|
|
ushort minor_version /**< */);
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_test_get_version_reply_t * xcb_test_get_version_reply
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param xcb_test_get_version_cookie_t cookie
|
|
** @param xcb_generic_error_t **e
|
|
** @returns xcb_test_get_version_reply_t *
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_test_get_version_reply_t *
|
|
xcb_test_get_version_reply (xcb_connection_t *c /**< */,
|
|
xcb_test_get_version_cookie_t cookie /**< */,
|
|
xcb_generic_error_t **e /**< */);
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_test_compare_cursor_cookie_t xcb_test_compare_cursor
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param xcb_window_t window
|
|
** @param xcb_cursor_t cursor
|
|
** @returns xcb_test_compare_cursor_cookie_t
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_test_compare_cursor_cookie_t
|
|
xcb_test_compare_cursor (xcb_connection_t *c /**< */,
|
|
xcb_window_t window /**< */,
|
|
xcb_cursor_t cursor /**< */);
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_test_compare_cursor_cookie_t xcb_test_compare_cursor_unchecked
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param xcb_window_t window
|
|
** @param xcb_cursor_t cursor
|
|
** @returns xcb_test_compare_cursor_cookie_t
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_test_compare_cursor_cookie_t
|
|
xcb_test_compare_cursor_unchecked (xcb_connection_t *c /**< */,
|
|
xcb_window_t window /**< */,
|
|
xcb_cursor_t cursor /**< */);
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_test_compare_cursor_reply_t * xcb_test_compare_cursor_reply
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param xcb_test_compare_cursor_cookie_t cookie
|
|
** @param xcb_generic_error_t **e
|
|
** @returns xcb_test_compare_cursor_reply_t *
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_test_compare_cursor_reply_t *
|
|
xcb_test_compare_cursor_reply (xcb_connection_t *c /**< */,
|
|
xcb_test_compare_cursor_cookie_t cookie /**< */,
|
|
xcb_generic_error_t **e /**< */);
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_void_cookie_t xcb_test_fake_input_checked
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param ubyte type
|
|
** @param ubyte detail
|
|
** @param uint time
|
|
** @param xcb_window_t window
|
|
** @param ushort rootX
|
|
** @param ushort rootY
|
|
** @param ubyte deviceid
|
|
** @returns xcb_void_cookie_t
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_void_cookie_t
|
|
xcb_test_fake_input_checked (xcb_connection_t *c /**< */,
|
|
ubyte type /**< */,
|
|
ubyte detail /**< */,
|
|
uint time /**< */,
|
|
xcb_window_t window /**< */,
|
|
ushort rootX /**< */,
|
|
ushort rootY /**< */,
|
|
ubyte deviceid /**< */);
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_void_cookie_t xcb_test_fake_input
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param ubyte type
|
|
** @param ubyte detail
|
|
** @param uint time
|
|
** @param xcb_window_t window
|
|
** @param ushort rootX
|
|
** @param ushort rootY
|
|
** @param ubyte deviceid
|
|
** @returns xcb_void_cookie_t
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_void_cookie_t
|
|
xcb_test_fake_input (xcb_connection_t *c /**< */,
|
|
ubyte type /**< */,
|
|
ubyte detail /**< */,
|
|
uint time /**< */,
|
|
xcb_window_t window /**< */,
|
|
ushort rootX /**< */,
|
|
ushort rootY /**< */,
|
|
ubyte deviceid /**< */);
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_void_cookie_t xcb_test_grab_control_checked
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param bool impervious
|
|
** @returns xcb_void_cookie_t
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_void_cookie_t
|
|
xcb_test_grab_control_checked (xcb_connection_t *c /**< */,
|
|
bool impervious /**< */);
|
|
|
|
|
|
/*****************************************************************************
|
|
**
|
|
** xcb_void_cookie_t xcb_test_grab_control
|
|
**
|
|
** @param xcb_connection_t *c
|
|
** @param bool impervious
|
|
** @returns xcb_void_cookie_t
|
|
**
|
|
*****************************************************************************/
|
|
|
|
extern(C) xcb_void_cookie_t
|
|
xcb_test_grab_control (xcb_connection_t *c /**< */,
|
|
bool impervious /**< */);
|
|
|
|
|
|
|
|
/**
|
|
* @}
|
|
*/
|