xlib 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/x.rb +11 -0
- data/lib/x/constants.rb +614 -0
- data/lib/x/extensions.rb +10 -0
- data/lib/x/extensions/randr.rb +10 -0
- data/lib/x/extensions/randr/constants.rb +160 -0
- data/lib/x/extensions/randr/types.rb +18 -0
- data/lib/x/extensions/render.rb +10 -0
- data/lib/x/extensions/render/constants.rb +155 -0
- data/lib/x/extensions/render/types.rb +15 -0
- data/lib/x/types.rb +24 -0
- data/lib/xlib.rb +29 -0
- data/lib/xlib/constants.rb +119 -0
- data/lib/xlib/extensions.rb +10 -0
- data/lib/xlib/extensions/xrandr.rb +25 -0
- data/lib/xlib/extensions/xrandr/functions.rb +101 -0
- data/lib/xlib/extensions/xrandr/struct/crtc_change_notify_event.rb +24 -0
- data/lib/xlib/extensions/xrandr/struct/crtc_gamma.rb +16 -0
- data/lib/xlib/extensions/xrandr/struct/crtc_info.rb +24 -0
- data/lib/xlib/extensions/xrandr/struct/crtc_transform_attributes.rb +20 -0
- data/lib/xlib/extensions/xrandr/struct/mode_info.rb +26 -0
- data/lib/xlib/extensions/xrandr/struct/notify_event.rb +17 -0
- data/lib/xlib/extensions/xrandr/struct/output_change_notify_event.rb +24 -0
- data/lib/xlib/extensions/xrandr/struct/output_info.rb +27 -0
- data/lib/xlib/extensions/xrandr/struct/output_property_notify_event.rb +21 -0
- data/lib/xlib/extensions/xrandr/struct/panning.rb +25 -0
- data/lib/xlib/extensions/xrandr/struct/property_info.rb +17 -0
- data/lib/xlib/extensions/xrandr/struct/provider_change_notify_event.rb +20 -0
- data/lib/xlib/extensions/xrandr/struct/provider_info.rb +21 -0
- data/lib/xlib/extensions/xrandr/struct/provider_property_notify_event.rb +21 -0
- data/lib/xlib/extensions/xrandr/struct/provider_resources.rb +14 -0
- data/lib/xlib/extensions/xrandr/struct/resource_change_notify_event.rb +18 -0
- data/lib/xlib/extensions/xrandr/struct/screen_change_notify_event.rb +26 -0
- data/lib/xlib/extensions/xrandr/struct/screen_resources.rb +20 -0
- data/lib/xlib/extensions/xrandr/struct/screen_size.rb +16 -0
- data/lib/xlib/extensions/xrandr/types.rb +36 -0
- data/lib/xlib/extensions/xrender.rb +24 -0
- data/lib/xlib/extensions/xrender/constants.rb +28 -0
- data/lib/xlib/extensions/xrender/functions.rb +29 -0
- data/lib/xlib/extensions/xrender/struct/anim_cursor.rb +14 -0
- data/lib/xlib/extensions/xrender/struct/circle.rb +15 -0
- data/lib/xlib/extensions/xrender/struct/conical_gradient.rb +14 -0
- data/lib/xlib/extensions/xrender/struct/filters.rb +16 -0
- data/lib/xlib/extensions/xrender/struct/glyph_elt16.rb +17 -0
- data/lib/xlib/extensions/xrender/struct/glyph_elt32.rb +17 -0
- data/lib/xlib/extensions/xrender/struct/glyph_elt8.rb +17 -0
- data/lib/xlib/extensions/xrender/struct/glyph_info.rb +18 -0
- data/lib/xlib/extensions/xrender/struct/index_value.rb +17 -0
- data/lib/xlib/extensions/xrender/struct/line_fixed.rb +14 -0
- data/lib/xlib/extensions/xrender/struct/linear_gradient.rb +14 -0
- data/lib/xlib/extensions/xrender/struct/point_double.rb +14 -0
- data/lib/xlib/extensions/xrender/struct/point_fixed.rb +14 -0
- data/lib/xlib/extensions/xrender/struct/radial_gradient.rb +14 -0
- data/lib/xlib/extensions/xrender/struct/render_color.rb +16 -0
- data/lib/xlib/extensions/xrender/struct/render_direct_format.rb +20 -0
- data/lib/xlib/extensions/xrender/struct/render_pict_format.rb +17 -0
- data/lib/xlib/extensions/xrender/struct/render_picture_attributes.rb +25 -0
- data/lib/xlib/extensions/xrender/struct/span_fix.rb +15 -0
- data/lib/xlib/extensions/xrender/struct/transform.rb +13 -0
- data/lib/xlib/extensions/xrender/struct/trap.rb +14 -0
- data/lib/xlib/extensions/xrender/struct/trapezoid.rb +16 -0
- data/lib/xlib/extensions/xrender/struct/triangle.rb +15 -0
- data/lib/xlib/extensions/xrender/types.rb +37 -0
- data/lib/xlib/functions.rb +396 -0
- data/lib/xlib/struct/any_event.rb +17 -0
- data/lib/xlib/struct/button_event.rb +27 -0
- data/lib/xlib/struct/circulate_event.rb +19 -0
- data/lib/xlib/struct/circulate_request_event.rb +19 -0
- data/lib/xlib/struct/client_message_event.rb +27 -0
- data/lib/xlib/struct/colormap_event.rb +20 -0
- data/lib/xlib/struct/configure_event.rb +25 -0
- data/lib/xlib/struct/configure_request_event.rb +26 -0
- data/lib/xlib/struct/create_window_event.rb +24 -0
- data/lib/xlib/struct/crossing_event.rb +29 -0
- data/lib/xlib/struct/destroy_window_event.rb +18 -0
- data/lib/xlib/struct/display.rb +56 -0
- data/lib/xlib/struct/error_event.rb +19 -0
- data/lib/xlib/struct/event.rb +48 -0
- data/lib/xlib/struct/expose_event.rb +22 -0
- data/lib/xlib/struct/focus_change_event.rb +19 -0
- data/lib/xlib/struct/gc.rb +14 -0
- data/lib/xlib/struct/gc_values.rb +35 -0
- data/lib/xlib/struct/generic_event.rb +18 -0
- data/lib/xlib/struct/generic_event_cookie.rb +20 -0
- data/lib/xlib/struct/graphics_expose_event.rb +25 -0
- data/lib/xlib/struct/gravity_event.rb +20 -0
- data/lib/xlib/struct/image.rb +37 -0
- data/lib/xlib/struct/key_event.rb +27 -0
- data/lib/xlib/struct/key_sym.rb +28 -0
- data/lib/xlib/struct/keymap_event.rb +18 -0
- data/lib/xlib/struct/map_event.rb +19 -0
- data/lib/xlib/struct/map_request_event.rb +22 -0
- data/lib/xlib/struct/mapping_event.rb +20 -0
- data/lib/xlib/struct/motion_event.rb +27 -0
- data/lib/xlib/struct/no_expose_event.rb +19 -0
- data/lib/xlib/struct/point.rb +14 -0
- data/lib/xlib/struct/property_event.rb +20 -0
- data/lib/xlib/struct/reparent_event.rb +22 -0
- data/lib/xlib/struct/resize_request_event.rb +19 -0
- data/lib/xlib/struct/screen.rb +31 -0
- data/lib/xlib/struct/selection_clear_event.rb +19 -0
- data/lib/xlib/struct/selection_event.rb +21 -0
- data/lib/xlib/struct/selection_request_event.rb +22 -0
- data/lib/xlib/struct/unmap_event.rb +19 -0
- data/lib/xlib/struct/visibility_event.rb +18 -0
- data/lib/xlib/struct/visual.rb +20 -0
- data/lib/xlib/struct/window_attributes.rb +35 -0
- data/lib/xlib/types.rb +73 -0
- metadata +164 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
|
3
|
+
# Copyright (c) 2014, Christopher Aue <mail@christopheraue.net>
|
|
4
|
+
#
|
|
5
|
+
# This file is part of the ruby xlib gem. It is subject to the license terms in
|
|
6
|
+
# the LICENSE file found in the top-level directory of this distribution and at
|
|
7
|
+
# http://github.com/christopheraue/ruby-xlib.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
class Xlib::XSelectionClearEvent < FFI::Struct
|
|
11
|
+
layout \
|
|
12
|
+
:type, :int,
|
|
13
|
+
:serial, :ulong,
|
|
14
|
+
:send_event, :Bool,
|
|
15
|
+
:display, :pointer,
|
|
16
|
+
:window, :Window,
|
|
17
|
+
:selection, :Atom,
|
|
18
|
+
:time, :Time
|
|
19
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
|
3
|
+
# Copyright (c) 2014, Christopher Aue <mail@christopheraue.net>
|
|
4
|
+
#
|
|
5
|
+
# This file is part of the ruby xlib gem. It is subject to the license terms in
|
|
6
|
+
# the LICENSE file found in the top-level directory of this distribution and at
|
|
7
|
+
# http://github.com/christopheraue/ruby-xlib.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
class Xlib::XSelectionEvent < FFI::Struct
|
|
11
|
+
layout \
|
|
12
|
+
:type, :int,
|
|
13
|
+
:serial, :ulong,
|
|
14
|
+
:send_event, :Bool,
|
|
15
|
+
:display, :pointer,
|
|
16
|
+
:requestor, :Window,
|
|
17
|
+
:selection, :Atom,
|
|
18
|
+
:target, :Atom,
|
|
19
|
+
:property, :Atom,
|
|
20
|
+
:time, :Time
|
|
21
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
|
3
|
+
# Copyright (c) 2014, Christopher Aue <mail@christopheraue.net>
|
|
4
|
+
#
|
|
5
|
+
# This file is part of the ruby xlib gem. It is subject to the license terms in
|
|
6
|
+
# the LICENSE file found in the top-level directory of this distribution and at
|
|
7
|
+
# http://github.com/christopheraue/ruby-xlib.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
class Xlib::XSelectionRequestEvent < FFI::Struct
|
|
11
|
+
layout \
|
|
12
|
+
:type, :int,
|
|
13
|
+
:serial, :ulong,
|
|
14
|
+
:send_event, :Bool,
|
|
15
|
+
:display, :pointer,
|
|
16
|
+
:owner, :Window,
|
|
17
|
+
:requestor, :Window,
|
|
18
|
+
:selection, :Atom,
|
|
19
|
+
:target, :Atom,
|
|
20
|
+
:property, :Atom,
|
|
21
|
+
:time, :Time
|
|
22
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
|
3
|
+
# Copyright (c) 2014, Christopher Aue <mail@christopheraue.net>
|
|
4
|
+
#
|
|
5
|
+
# This file is part of the ruby xlib gem. It is subject to the license terms in
|
|
6
|
+
# the LICENSE file found in the top-level directory of this distribution and at
|
|
7
|
+
# http://github.com/christopheraue/ruby-xlib.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
class Xlib::XUnmapEvent < FFI::Struct
|
|
11
|
+
layout \
|
|
12
|
+
:type, :int,
|
|
13
|
+
:serial, :ulong,
|
|
14
|
+
:send_event, :Bool,
|
|
15
|
+
:display, :pointer,
|
|
16
|
+
:event, :Window,
|
|
17
|
+
:window, :Window,
|
|
18
|
+
:from_configure, :Bool
|
|
19
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
|
3
|
+
# Copyright (c) 2014, Christopher Aue <mail@christopheraue.net>
|
|
4
|
+
#
|
|
5
|
+
# This file is part of the ruby xlib gem. It is subject to the license terms in
|
|
6
|
+
# the LICENSE file found in the top-level directory of this distribution and at
|
|
7
|
+
# http://github.com/christopheraue/ruby-xlib.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
class Xlib::XVisibilityEvent < FFI::Struct
|
|
11
|
+
layout \
|
|
12
|
+
:type, :int,
|
|
13
|
+
:serial, :ulong,
|
|
14
|
+
:send_event, :Bool,
|
|
15
|
+
:display, :pointer,
|
|
16
|
+
:window, :Window,
|
|
17
|
+
:state, :int
|
|
18
|
+
end
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
|
3
|
+
# Copyright (c) 2014, Christopher Aue <mail@christopheraue.net>
|
|
4
|
+
#
|
|
5
|
+
# This file is part of the ruby xlib gem. It is subject to the license terms in
|
|
6
|
+
# the LICENSE file found in the top-level directory of this distribution and at
|
|
7
|
+
# http://github.com/christopheraue/ruby-xlib.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
class Xlib::Visual < FFI::Struct
|
|
11
|
+
layout \
|
|
12
|
+
:ext_data, :pointer,
|
|
13
|
+
:visualid, :VisualID,
|
|
14
|
+
:class, :int,
|
|
15
|
+
:read_mask, :ulong,
|
|
16
|
+
:green_mask, :ulong,
|
|
17
|
+
:blue_mask, :ulong,
|
|
18
|
+
:buts_per_rgb, :int,
|
|
19
|
+
:map_entries, :int
|
|
20
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
|
3
|
+
# Copyright (c) 2014, Christopher Aue <mail@christopheraue.net>
|
|
4
|
+
#
|
|
5
|
+
# This file is part of the ruby xlib gem. It is subject to the license terms in
|
|
6
|
+
# the LICENSE file found in the top-level directory of this distribution and at
|
|
7
|
+
# http://github.com/christopheraue/ruby-xlib.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
class Xlib::WindowAttributes < FFI::Struct
|
|
11
|
+
layout \
|
|
12
|
+
:x, :int,
|
|
13
|
+
:y, :int,
|
|
14
|
+
:width, :int,
|
|
15
|
+
:height, :int,
|
|
16
|
+
:border_width, :int,
|
|
17
|
+
:depth, :int,
|
|
18
|
+
:visual, :pointer,
|
|
19
|
+
:root, :Window,
|
|
20
|
+
:class, :int,
|
|
21
|
+
:bit_gravity, :int,
|
|
22
|
+
:win_gravity, :int,
|
|
23
|
+
:backing_store, :int,
|
|
24
|
+
:backing_planes, :ulong,
|
|
25
|
+
:backing_pixel, :ulong,
|
|
26
|
+
:save_under, :Bool,
|
|
27
|
+
:colormap, :Colormap,
|
|
28
|
+
:map_installed, :Bool,
|
|
29
|
+
:map_state, :int,
|
|
30
|
+
:all_event_masks, :long,
|
|
31
|
+
:your_event_masks, :long,
|
|
32
|
+
:do_not_propagate_mask, :long,
|
|
33
|
+
:override_redirect, :Bool,
|
|
34
|
+
:screen, :pointer
|
|
35
|
+
end
|
data/lib/xlib/types.rb
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
|
3
|
+
# Copyright (c) 2014, Christopher Aue <mail@christopheraue.net>
|
|
4
|
+
#
|
|
5
|
+
# This file is part of the ruby xlib gem. It is subject to the license terms in
|
|
6
|
+
# the LICENSE file found in the top-level directory of this distribution and at
|
|
7
|
+
# http://github.com/christopheraue/ruby-xlib.
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
module Bool
|
|
11
|
+
extend FFI::DataConverter
|
|
12
|
+
|
|
13
|
+
native_type :int
|
|
14
|
+
|
|
15
|
+
def self.to_native (value, ctx)
|
|
16
|
+
value ? 1 : 0
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.from_native (value, ctx)
|
|
20
|
+
!value.zero?
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
module FFI
|
|
25
|
+
typedef Bool, :Bool
|
|
26
|
+
typedef :int, :Status
|
|
27
|
+
typedef :ulong, :FSID
|
|
28
|
+
typedef :XID, :GC
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
require_relative 'struct/display'
|
|
32
|
+
require_relative 'struct/gc'
|
|
33
|
+
require_relative 'struct/gc_values'
|
|
34
|
+
require_relative 'struct/screen'
|
|
35
|
+
require_relative 'struct/window_attributes'
|
|
36
|
+
require_relative 'struct/visual'
|
|
37
|
+
require_relative 'struct/key_sym'
|
|
38
|
+
require_relative 'struct/point'
|
|
39
|
+
|
|
40
|
+
require_relative 'struct/any_event'
|
|
41
|
+
require_relative 'struct/key_event'
|
|
42
|
+
require_relative 'struct/button_event'
|
|
43
|
+
require_relative 'struct/motion_event'
|
|
44
|
+
require_relative 'struct/crossing_event'
|
|
45
|
+
require_relative 'struct/focus_change_event'
|
|
46
|
+
require_relative 'struct/expose_event'
|
|
47
|
+
require_relative 'struct/graphics_expose_event'
|
|
48
|
+
require_relative 'struct/no_expose_event'
|
|
49
|
+
require_relative 'struct/visibility_event'
|
|
50
|
+
require_relative 'struct/create_window_event'
|
|
51
|
+
require_relative 'struct/destroy_window_event'
|
|
52
|
+
require_relative 'struct/unmap_event'
|
|
53
|
+
require_relative 'struct/map_event'
|
|
54
|
+
require_relative 'struct/map_request_event'
|
|
55
|
+
require_relative 'struct/reparent_event'
|
|
56
|
+
require_relative 'struct/configure_event'
|
|
57
|
+
require_relative 'struct/gravity_event'
|
|
58
|
+
require_relative 'struct/resize_request_event'
|
|
59
|
+
require_relative 'struct/configure_request_event'
|
|
60
|
+
require_relative 'struct/circulate_event'
|
|
61
|
+
require_relative 'struct/circulate_request_event'
|
|
62
|
+
require_relative 'struct/property_event'
|
|
63
|
+
require_relative 'struct/selection_clear_event'
|
|
64
|
+
require_relative 'struct/selection_request_event'
|
|
65
|
+
require_relative 'struct/selection_event'
|
|
66
|
+
require_relative 'struct/colormap_event'
|
|
67
|
+
require_relative 'struct/client_message_event'
|
|
68
|
+
require_relative 'struct/mapping_event'
|
|
69
|
+
require_relative 'struct/error_event'
|
|
70
|
+
require_relative 'struct/keymap_event'
|
|
71
|
+
require_relative 'struct/generic_event'
|
|
72
|
+
require_relative 'struct/generic_event_cookie'
|
|
73
|
+
require_relative 'struct/event'
|
metadata
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: xlib
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Christopher Aue
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-12-29 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: ffi
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.9'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.9'
|
|
27
|
+
description: Speak with X11 using ruby.
|
|
28
|
+
email: mail@christopheraue.net
|
|
29
|
+
executables: []
|
|
30
|
+
extensions: []
|
|
31
|
+
extra_rdoc_files: []
|
|
32
|
+
files:
|
|
33
|
+
- lib/x.rb
|
|
34
|
+
- lib/x/constants.rb
|
|
35
|
+
- lib/x/extensions.rb
|
|
36
|
+
- lib/x/extensions/randr.rb
|
|
37
|
+
- lib/x/extensions/randr/constants.rb
|
|
38
|
+
- lib/x/extensions/randr/types.rb
|
|
39
|
+
- lib/x/extensions/render.rb
|
|
40
|
+
- lib/x/extensions/render/constants.rb
|
|
41
|
+
- lib/x/extensions/render/types.rb
|
|
42
|
+
- lib/x/types.rb
|
|
43
|
+
- lib/xlib.rb
|
|
44
|
+
- lib/xlib/constants.rb
|
|
45
|
+
- lib/xlib/extensions.rb
|
|
46
|
+
- lib/xlib/extensions/xrandr.rb
|
|
47
|
+
- lib/xlib/extensions/xrandr/functions.rb
|
|
48
|
+
- lib/xlib/extensions/xrandr/struct/crtc_change_notify_event.rb
|
|
49
|
+
- lib/xlib/extensions/xrandr/struct/crtc_gamma.rb
|
|
50
|
+
- lib/xlib/extensions/xrandr/struct/crtc_info.rb
|
|
51
|
+
- lib/xlib/extensions/xrandr/struct/crtc_transform_attributes.rb
|
|
52
|
+
- lib/xlib/extensions/xrandr/struct/mode_info.rb
|
|
53
|
+
- lib/xlib/extensions/xrandr/struct/notify_event.rb
|
|
54
|
+
- lib/xlib/extensions/xrandr/struct/output_change_notify_event.rb
|
|
55
|
+
- lib/xlib/extensions/xrandr/struct/output_info.rb
|
|
56
|
+
- lib/xlib/extensions/xrandr/struct/output_property_notify_event.rb
|
|
57
|
+
- lib/xlib/extensions/xrandr/struct/panning.rb
|
|
58
|
+
- lib/xlib/extensions/xrandr/struct/property_info.rb
|
|
59
|
+
- lib/xlib/extensions/xrandr/struct/provider_change_notify_event.rb
|
|
60
|
+
- lib/xlib/extensions/xrandr/struct/provider_info.rb
|
|
61
|
+
- lib/xlib/extensions/xrandr/struct/provider_property_notify_event.rb
|
|
62
|
+
- lib/xlib/extensions/xrandr/struct/provider_resources.rb
|
|
63
|
+
- lib/xlib/extensions/xrandr/struct/resource_change_notify_event.rb
|
|
64
|
+
- lib/xlib/extensions/xrandr/struct/screen_change_notify_event.rb
|
|
65
|
+
- lib/xlib/extensions/xrandr/struct/screen_resources.rb
|
|
66
|
+
- lib/xlib/extensions/xrandr/struct/screen_size.rb
|
|
67
|
+
- lib/xlib/extensions/xrandr/types.rb
|
|
68
|
+
- lib/xlib/extensions/xrender.rb
|
|
69
|
+
- lib/xlib/extensions/xrender/constants.rb
|
|
70
|
+
- lib/xlib/extensions/xrender/functions.rb
|
|
71
|
+
- lib/xlib/extensions/xrender/struct/anim_cursor.rb
|
|
72
|
+
- lib/xlib/extensions/xrender/struct/circle.rb
|
|
73
|
+
- lib/xlib/extensions/xrender/struct/conical_gradient.rb
|
|
74
|
+
- lib/xlib/extensions/xrender/struct/filters.rb
|
|
75
|
+
- lib/xlib/extensions/xrender/struct/glyph_elt16.rb
|
|
76
|
+
- lib/xlib/extensions/xrender/struct/glyph_elt32.rb
|
|
77
|
+
- lib/xlib/extensions/xrender/struct/glyph_elt8.rb
|
|
78
|
+
- lib/xlib/extensions/xrender/struct/glyph_info.rb
|
|
79
|
+
- lib/xlib/extensions/xrender/struct/index_value.rb
|
|
80
|
+
- lib/xlib/extensions/xrender/struct/line_fixed.rb
|
|
81
|
+
- lib/xlib/extensions/xrender/struct/linear_gradient.rb
|
|
82
|
+
- lib/xlib/extensions/xrender/struct/point_double.rb
|
|
83
|
+
- lib/xlib/extensions/xrender/struct/point_fixed.rb
|
|
84
|
+
- lib/xlib/extensions/xrender/struct/radial_gradient.rb
|
|
85
|
+
- lib/xlib/extensions/xrender/struct/render_color.rb
|
|
86
|
+
- lib/xlib/extensions/xrender/struct/render_direct_format.rb
|
|
87
|
+
- lib/xlib/extensions/xrender/struct/render_pict_format.rb
|
|
88
|
+
- lib/xlib/extensions/xrender/struct/render_picture_attributes.rb
|
|
89
|
+
- lib/xlib/extensions/xrender/struct/span_fix.rb
|
|
90
|
+
- lib/xlib/extensions/xrender/struct/transform.rb
|
|
91
|
+
- lib/xlib/extensions/xrender/struct/trap.rb
|
|
92
|
+
- lib/xlib/extensions/xrender/struct/trapezoid.rb
|
|
93
|
+
- lib/xlib/extensions/xrender/struct/triangle.rb
|
|
94
|
+
- lib/xlib/extensions/xrender/types.rb
|
|
95
|
+
- lib/xlib/functions.rb
|
|
96
|
+
- lib/xlib/struct/any_event.rb
|
|
97
|
+
- lib/xlib/struct/button_event.rb
|
|
98
|
+
- lib/xlib/struct/circulate_event.rb
|
|
99
|
+
- lib/xlib/struct/circulate_request_event.rb
|
|
100
|
+
- lib/xlib/struct/client_message_event.rb
|
|
101
|
+
- lib/xlib/struct/colormap_event.rb
|
|
102
|
+
- lib/xlib/struct/configure_event.rb
|
|
103
|
+
- lib/xlib/struct/configure_request_event.rb
|
|
104
|
+
- lib/xlib/struct/create_window_event.rb
|
|
105
|
+
- lib/xlib/struct/crossing_event.rb
|
|
106
|
+
- lib/xlib/struct/destroy_window_event.rb
|
|
107
|
+
- lib/xlib/struct/display.rb
|
|
108
|
+
- lib/xlib/struct/error_event.rb
|
|
109
|
+
- lib/xlib/struct/event.rb
|
|
110
|
+
- lib/xlib/struct/expose_event.rb
|
|
111
|
+
- lib/xlib/struct/focus_change_event.rb
|
|
112
|
+
- lib/xlib/struct/gc.rb
|
|
113
|
+
- lib/xlib/struct/gc_values.rb
|
|
114
|
+
- lib/xlib/struct/generic_event.rb
|
|
115
|
+
- lib/xlib/struct/generic_event_cookie.rb
|
|
116
|
+
- lib/xlib/struct/graphics_expose_event.rb
|
|
117
|
+
- lib/xlib/struct/gravity_event.rb
|
|
118
|
+
- lib/xlib/struct/image.rb
|
|
119
|
+
- lib/xlib/struct/key_event.rb
|
|
120
|
+
- lib/xlib/struct/key_sym.rb
|
|
121
|
+
- lib/xlib/struct/keymap_event.rb
|
|
122
|
+
- lib/xlib/struct/map_event.rb
|
|
123
|
+
- lib/xlib/struct/map_request_event.rb
|
|
124
|
+
- lib/xlib/struct/mapping_event.rb
|
|
125
|
+
- lib/xlib/struct/motion_event.rb
|
|
126
|
+
- lib/xlib/struct/no_expose_event.rb
|
|
127
|
+
- lib/xlib/struct/point.rb
|
|
128
|
+
- lib/xlib/struct/property_event.rb
|
|
129
|
+
- lib/xlib/struct/reparent_event.rb
|
|
130
|
+
- lib/xlib/struct/resize_request_event.rb
|
|
131
|
+
- lib/xlib/struct/screen.rb
|
|
132
|
+
- lib/xlib/struct/selection_clear_event.rb
|
|
133
|
+
- lib/xlib/struct/selection_event.rb
|
|
134
|
+
- lib/xlib/struct/selection_request_event.rb
|
|
135
|
+
- lib/xlib/struct/unmap_event.rb
|
|
136
|
+
- lib/xlib/struct/visibility_event.rb
|
|
137
|
+
- lib/xlib/struct/visual.rb
|
|
138
|
+
- lib/xlib/struct/window_attributes.rb
|
|
139
|
+
- lib/xlib/types.rb
|
|
140
|
+
homepage: https://github.com/christopheraue/ruby-xlib
|
|
141
|
+
licenses:
|
|
142
|
+
- BSD 2-clause
|
|
143
|
+
metadata: {}
|
|
144
|
+
post_install_message:
|
|
145
|
+
rdoc_options: []
|
|
146
|
+
require_paths:
|
|
147
|
+
- lib
|
|
148
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - ">="
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '0'
|
|
153
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
|
+
requirements:
|
|
155
|
+
- - ">="
|
|
156
|
+
- !ruby/object:Gem::Version
|
|
157
|
+
version: '0'
|
|
158
|
+
requirements: []
|
|
159
|
+
rubyforge_project:
|
|
160
|
+
rubygems_version: 2.2.2
|
|
161
|
+
signing_key:
|
|
162
|
+
specification_version: 4
|
|
163
|
+
summary: Interface to Xlib and its Xrender and Xrandr extensions
|
|
164
|
+
test_files: []
|