GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
X11::XCB::Connection(3) User Contributed Perl Documentation X11::XCB::Connection(3)

X11::XCB::Connection - connection to the X server

Returns a new "X11::XCB::Atom" assigned to this connection.

Returns a new "X11::XCB::Color" assigned to this connection.

Returns a new "X11::XCB::Window" representing the X11 root window.

Returns the X11 input focus (a window ID).

Returns an arrayref of X11::XCB::Screens.

Returns intrinsically created array with X11 Keymap:

  [
    undef, # index in array is a key's scan code: 0
    ...
    [0x31, 0x21, 0x31, 0x21, 0x0, 0x0, 0x0], # key symbol codes. scan code 10 represents key '1'
    ...
  ]

Returns the same hash as xcb_get_image_reply along with additional "data" field which contains the image data in BGRA.

  {
    'data' => '...',    # binary data itself encoded in BGRA
    'depth' => 24,      # depth aka number of bits per pixel
    'length' => 128,    # bytes count
    'sequence' => 7,    # X11 request sequence
    'visual' => 0       # some xcb_visualid_t (?) "NOT YET DOCUMENTED" like almost evertyhing in XCB :(
  }

Returns the same hash as xcb_get_image_reply_data with "data" translated into RGBA colorspace.

  {
    'data' => '...',    # binary data itself encoded in RGBA
    'depth' => 24,      # depth aka number of bits per pixel
    'length' => 128,    # bytes count
    'sequence' => 7,    # X11 request sequence
    'visual' => 0       # some xcb_visualid_t (?) "NOT YET DOCUMENTED" like almost evertyhing in XCB :(
  }

Returns intrinsically created array with children windows identifiers for specified window:

  [ id1, id2, id3 ]
2024-10-04 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.