x11 0.0.1a2 → 0.0.1a3
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.
- data/lib/X11/X.rb +14 -9
- data/lib/X11/X/c.rb +21 -20
- data/lib/X11/XKBlib.rb +29 -0
- data/lib/X11/Xatom.rb +152 -136
- data/lib/X11/Xatom/c.rb +15 -15
- data/lib/X11/Xdefs.rb +7 -7
- data/lib/X11/Xdefs/c.rb +20 -20
- data/lib/X11/Xlib.rb +19 -7
- data/lib/X11/Xlib/c.rb +21 -8
- data/lib/X11/Xlib/c/functions.rb +373 -27
- data/lib/X11/Xlib/c/type/any_event.rb +13 -13
- data/lib/X11/Xlib/c/type/button_event.rb +23 -23
- data/lib/X11/Xlib/c/type/circulate_event.rb +15 -15
- data/lib/X11/Xlib/c/type/circulate_request_event.rb +15 -15
- data/lib/X11/Xlib/c/type/client_message_event.rb +22 -22
- data/lib/X11/Xlib/c/type/colormap_event.rb +16 -16
- data/lib/X11/Xlib/c/type/configure_event.rb +21 -21
- data/lib/X11/Xlib/c/type/configure_request_event.rb +22 -22
- data/lib/X11/Xlib/c/type/create_window_event.rb +20 -20
- data/lib/X11/Xlib/c/type/crossing_event.rb +25 -25
- data/lib/X11/Xlib/c/type/destroy_window_event.rb +14 -14
- data/lib/X11/Xlib/c/type/display.rb +52 -52
- data/lib/X11/Xlib/c/type/error_event.rb +15 -15
- data/lib/X11/Xlib/c/type/event.rb +43 -43
- data/lib/X11/Xlib/c/type/expose_event.rb +18 -18
- data/lib/X11/Xlib/c/type/focus_change_event.rb +15 -15
- data/lib/X11/Xlib/c/type/gc.rb +10 -10
- data/lib/X11/Xlib/c/type/gc_values.rb +54 -0
- data/lib/X11/Xlib/c/type/generic_event.rb +14 -14
- data/lib/X11/Xlib/c/type/generic_event_cookie.rb +16 -16
- data/lib/X11/Xlib/c/type/graphics_expose_event.rb +21 -21
- data/lib/X11/Xlib/c/type/gravity_event.rb +16 -16
- data/lib/X11/Xlib/c/type/image.rb +56 -0
- data/lib/X11/Xlib/c/type/key_event.rb +23 -23
- data/lib/X11/Xlib/c/type/key_sym.rb +15 -15
- data/lib/X11/Xlib/c/type/keymap_event.rb +14 -14
- data/lib/X11/Xlib/c/type/map_event.rb +15 -15
- data/lib/X11/Xlib/c/type/map_request_event.rb +18 -18
- data/lib/X11/Xlib/c/type/mapping_event.rb +16 -16
- data/lib/X11/Xlib/c/type/motion_event.rb +23 -23
- data/lib/X11/Xlib/c/type/no_expose_event.rb +15 -15
- data/lib/X11/Xlib/c/type/point.rb +33 -0
- data/lib/X11/Xlib/c/type/property_event.rb +16 -16
- data/lib/X11/Xlib/c/type/reparent_event.rb +18 -18
- data/lib/X11/Xlib/c/type/resize_request_event.rb +15 -15
- data/lib/X11/Xlib/c/type/screen.rb +27 -27
- data/lib/X11/Xlib/c/type/selection_clear_event.rb +15 -15
- data/lib/X11/Xlib/c/type/selection_event.rb +17 -17
- data/lib/X11/Xlib/c/type/selection_request_event.rb +18 -18
- data/lib/X11/Xlib/c/type/status.rb +15 -15
- data/lib/X11/Xlib/c/type/unmap_event.rb +15 -15
- data/lib/X11/Xlib/c/type/visibility_event.rb +14 -14
- data/lib/X11/Xlib/c/type/visual.rb +16 -16
- data/lib/X11/Xlib/c/type/window_attributes.rb +31 -31
- data/lib/X11/Xlib/c/types.rb +9 -7
- data/lib/X11/Xlib/display.rb +257 -174
- data/lib/X11/Xlib/display/extensions.rb +56 -0
- data/lib/X11/Xlib/drawable.rb +48 -0
- data/lib/X11/Xlib/error.rb +100 -0
- data/lib/X11/Xlib/event.rb +66 -37
- data/lib/X11/Xlib/event/any.rb +8 -10
- data/lib/X11/Xlib/event/button_press.rb +9 -20
- data/lib/X11/Xlib/event/button_release.rb +9 -20
- data/lib/X11/Xlib/event/circulate_notify.rb +11 -12
- data/lib/X11/Xlib/event/circulate_request.rb +11 -12
- data/lib/X11/Xlib/event/client_message.rb +11 -13
- data/lib/X11/Xlib/event/colormap_notify.rb +12 -13
- data/lib/X11/Xlib/event/configure_notify.rb +17 -18
- data/lib/X11/Xlib/event/configure_request.rb +18 -19
- data/lib/X11/Xlib/event/create_notify.rb +16 -17
- data/lib/X11/Xlib/event/destroy_notify.rb +10 -11
- data/lib/X11/Xlib/event/enter_notify.rb +10 -8
- data/lib/X11/Xlib/event/expose.rb +15 -16
- data/lib/X11/Xlib/event/focus_in.rb +9 -12
- data/lib/X11/Xlib/event/focus_out.rb +9 -12
- data/lib/X11/Xlib/event/generic.rb +35 -0
- data/lib/X11/Xlib/event/generic/button.rb +46 -0
- data/lib/X11/Xlib/event/generic/crossing.rb +48 -0
- data/lib/X11/Xlib/{window/properties/property/class.rb → event/generic/focus_change.rb} +16 -14
- data/lib/X11/Xlib/event/generic/key.rb +46 -0
- data/lib/X11/Xlib/event/generic/motion.rb +46 -0
- data/lib/X11/Xlib/event/generic_event.rb +12 -14
- data/lib/X11/Xlib/event/graphics_expose.rb +15 -14
- data/lib/X11/Xlib/event/gravity_notify.rb +12 -13
- data/lib/X11/Xlib/event/helper.rb +123 -91
- data/lib/X11/Xlib/event/key_press.rb +9 -20
- data/lib/X11/Xlib/event/key_release.rb +9 -20
- data/lib/X11/Xlib/event/keymap_notify.rb +13 -14
- data/lib/X11/Xlib/event/leave_notify.rb +10 -20
- data/lib/X11/Xlib/event/map_notify.rb +11 -12
- data/lib/X11/Xlib/event/map_request.rb +10 -11
- data/lib/X11/Xlib/event/mapping_notify.rb +11 -13
- data/lib/X11/Xlib/event/motion_notify.rb +10 -20
- data/lib/X11/Xlib/event/no_expose.rb +8 -9
- data/lib/X11/Xlib/event/property_notify.rb +12 -13
- data/lib/X11/Xlib/event/reparent_notify.rb +14 -15
- data/lib/X11/Xlib/event/resize_request.rb +11 -12
- data/lib/X11/Xlib/event/selection_clear.rb +10 -12
- data/lib/X11/Xlib/event/selection_notify.rb +13 -15
- data/lib/X11/Xlib/event/selection_request.rb +14 -16
- data/lib/X11/Xlib/event/unmap_notify.rb +11 -12
- data/lib/X11/Xlib/event/visibility_notify.rb +10 -11
- data/lib/X11/Xlib/events.rb +11 -7
- data/lib/X11/Xlib/exceptions.rb +10 -10
- data/lib/X11/Xlib/graphic_context.rb +69 -0
- data/lib/X11/Xlib/graphic_context/functions.rb +50 -0
- data/lib/X11/Xlib/{window/properties/property/command.rb → graphic_context/values.rb} +17 -13
- data/lib/X11/Xlib/hints.rb +19 -18
- data/lib/X11/Xlib/hints/flags.rb +15 -15
- data/lib/X11/Xlib/hints/icon.rb +14 -16
- data/lib/X11/Xlib/id.rb +75 -0
- data/lib/X11/Xlib/image.rb +64 -0
- data/lib/X11/Xlib/keysym.rb +53 -26
- data/lib/X11/Xlib/mask.rb +81 -55
- data/lib/X11/Xlib/pixmap.rb +60 -0
- data/lib/X11/Xlib/planes.rb +50 -0
- data/lib/X11/Xlib/revert_to.rb +10 -10
- data/lib/X11/Xlib/screen.rb +48 -31
- data/lib/X11/Xlib/status.rb +56 -56
- data/lib/X11/Xlib/transform.rb +25 -25
- data/lib/X11/Xlib/visual.rb +19 -19
- data/lib/X11/Xlib/window.rb +399 -188
- data/lib/X11/Xlib/window/attributes.rb +74 -41
- data/lib/X11/Xlib/window/properties.rb +57 -38
- data/lib/X11/Xlib/window/properties/property.rb +135 -70
- data/lib/X11/Xlib/window/properties/property/net_virtual_root.rb +13 -13
- data/lib/X11/Xlib/window/properties/property/parser.rb +45 -35
- data/lib/X11/Xlib/window/properties/property/parser/arc.rb +18 -16
- data/lib/X11/Xlib/window/properties/property/parser/atom.rb +14 -10
- data/lib/X11/Xlib/window/properties/property/parser/cardinal.rb +14 -9
- data/lib/X11/Xlib/window/properties/property/parser/hints.rb +17 -16
- data/lib/X11/Xlib/window/properties/property/parser/integer.rb +39 -0
- data/lib/X11/Xlib/window/properties/property/parser/state.rb +39 -0
- data/lib/X11/Xlib/window/properties/property/parser/string.rb +59 -0
- data/lib/X11/Xlib/window/properties/property/parser/window.rb +39 -0
- data/lib/X11/Xmd.rb +7 -7
- data/lib/X11/Xmd/c.rb +19 -19
- data/lib/X11/Xregion.rb +32 -0
- data/lib/X11/Xregion/c.rb +29 -0
- data/lib/X11/Xregion/c/type/box.rb +35 -0
- data/lib/X11/Xregion/c/type/point_block.rb +33 -0
- data/lib/X11/Xregion/c/type/rectangle.rb +35 -0
- data/lib/X11/Xregion/c/type/region.rb +35 -0
- data/lib/X11/Xregion/c/types.rb +32 -0
- data/lib/X11/Xutil.rb +12 -17
- data/lib/X11/Xutil/c.rb +7 -10
- data/lib/X11/Xutil/c/functions.rb +7 -7
- data/lib/X11/Xutil/c/type/class_hint.rb +10 -10
- data/lib/X11/Xutil/c/type/region.rb +31 -0
- data/lib/X11/Xutil/c/type/text_property.rb +12 -12
- data/lib/X11/Xutil/c/types.rb +8 -7
- data/lib/X11/Xutil/state.rb +43 -0
- data/lib/X11/Xutil/window.rb +28 -28
- data/lib/X11/cursorfont.rb +7 -7
- data/lib/X11/cursorfont/c.rb +8 -8
- data/lib/X11/cursorfont/font.rb +113 -113
- data/lib/X11/extension.rb +65 -0
- data/lib/X11/extensions.rb +105 -126
- data/lib/X11/extensions/Xrandr.rb +49 -0
- data/lib/X11/extensions/Xrandr/c.rb +30 -0
- data/lib/X11/extensions/Xrandr/c/functions.rb +106 -0
- data/lib/X11/extensions/Xrandr/c/type/crtc_gamma.rb +35 -0
- data/lib/X11/extensions/Xrandr/c/type/crtc_info.rb +43 -0
- data/lib/X11/extensions/Xrandr/c/type/crtc_transform_attributes.rb +39 -0
- data/lib/X11/extensions/Xrandr/c/type/mode_info.rb +45 -0
- data/lib/X11/extensions/Xrandr/c/type/output_info.rb +46 -0
- data/lib/X11/extensions/Xrandr/c/type/panning.rb +44 -0
- data/lib/X11/extensions/Xrandr/c/type/property_info.rb +36 -0
- data/lib/X11/extensions/Xrandr/c/type/screen_resources.rb +39 -0
- data/lib/X11/extensions/Xrandr/c/type/screen_size.rb +35 -0
- data/lib/X11/extensions/Xrandr/c/types.rb +48 -0
- data/lib/X11/extensions/Xrandr/crtc.rb +70 -0
- data/lib/X11/extensions/Xrandr/crtc/gamma.rb +100 -0
- data/lib/X11/extensions/Xrandr/crtc/info.rb +62 -0
- data/lib/X11/extensions/Xrandr/crtc/panning.rb +74 -0
- data/lib/X11/extensions/Xrandr/event.rb +29 -0
- data/lib/X11/extensions/Xrandr/output.rb +59 -0
- data/lib/X11/extensions/Xrandr/output/info.rb +105 -0
- data/lib/X11/extensions/Xrandr/output/properties.rb +78 -0
- data/lib/X11/extensions/Xrandr/output/properties/property.rb +161 -0
- data/lib/X11/extensions/Xrandr/output/properties/property/info.rb +73 -0
- data/lib/X11/extensions/Xrandr/output/properties/property/parser.rb +73 -0
- data/lib/X11/extensions/Xrandr/output/properties/property/parser/atom.rb +39 -0
- data/lib/X11/extensions/Xrandr/output/properties/property/parser/integer.rb +43 -0
- data/lib/X11/extensions/Xrandr/screen.rb +49 -0
- data/lib/X11/extensions/Xrandr/screen/backlight.rb +76 -0
- data/lib/X11/extensions/Xrandr/screen_resources.rb +81 -0
- data/lib/X11/extensions/Xrandr/window.rb +41 -0
- data/lib/X11/extensions/Xrender.rb +34 -0
- data/lib/X11/extensions/Xrender/c.rb +30 -0
- data/lib/X11/extensions/Xrender/c/functions.rb +50 -0
- data/lib/X11/extensions/Xrender/c/type/anim_cursor.rb +33 -0
- data/lib/X11/extensions/Xrender/c/type/circle.rb +34 -0
- data/lib/X11/extensions/Xrender/c/type/conical_gradient.rb +33 -0
- data/lib/X11/extensions/Xrender/c/type/filters.rb +35 -0
- data/lib/X11/extensions/Xrender/c/type/glyph_elt16.rb +36 -0
- data/lib/X11/extensions/Xrender/c/type/glyph_elt32.rb +36 -0
- data/lib/X11/extensions/Xrender/c/type/glyph_elt8.rb +36 -0
- data/lib/X11/extensions/Xrender/c/type/glyph_info.rb +37 -0
- data/lib/X11/extensions/Xrender/c/type/index_value.rb +36 -0
- data/lib/X11/extensions/Xrender/c/type/line_fixed.rb +33 -0
- data/lib/X11/extensions/Xrender/c/type/linear_gradient.rb +33 -0
- data/lib/X11/extensions/Xrender/c/type/point_double.rb +33 -0
- data/lib/X11/extensions/Xrender/c/type/point_fixed.rb +33 -0
- data/lib/X11/extensions/Xrender/c/type/radial_gradient.rb +33 -0
- data/lib/X11/extensions/Xrender/c/type/render_color.rb +35 -0
- data/lib/X11/extensions/Xrender/c/type/render_direct_format.rb +39 -0
- data/lib/X11/extensions/Xrender/c/type/render_pict_format.rb +36 -0
- data/lib/X11/extensions/Xrender/c/type/render_picture_attributes.rb +44 -0
- data/lib/X11/extensions/Xrender/c/type/span_fix.rb +34 -0
- data/lib/X11/extensions/Xrender/c/type/transform.rb +32 -0
- data/lib/X11/extensions/Xrender/c/type/trap.rb +33 -0
- data/lib/X11/extensions/Xrender/c/type/trapezoid.rb +35 -0
- data/lib/X11/extensions/Xrender/c/type/triangle.rb +34 -0
- data/lib/X11/extensions/Xrender/c/types.rb +56 -0
- data/lib/X11/extensions/Xrender/mask.rb +48 -0
- data/lib/X11/extensions/randr.rb +29 -0
- data/lib/X11/extensions/randr/c.rb +38 -0
- data/lib/X11/extensions/render.rb +29 -0
- data/lib/X11/extensions/render/c.rb +34 -0
- data/lib/X11/extensions/xf86vmode.rb +42 -0
- data/lib/X11/extensions/xf86vmode/c.rb +30 -0
- data/lib/X11/extensions/xf86vmode/c/functions.rb +59 -0
- data/lib/X11/extensions/xf86vmode/c/type/gamma.rb +34 -0
- data/lib/X11/extensions/xf86vmode/c/type/mode_info.rb +44 -0
- data/lib/X11/extensions/xf86vmode/c/type/mode_line.rb +43 -0
- data/lib/X11/extensions/xf86vmode/c/type/monitor.rb +38 -0
- data/lib/X11/extensions/xf86vmode/c/type/sync_range.rb +33 -0
- data/lib/X11/extensions/xf86vmode/c/types.rb +36 -0
- data/lib/X11/extensions/xf86vmode/screen.rb +53 -0
- data/lib/X11/extensions/xf86vmode/screen/gamma.rb +79 -0
- data/lib/X11/extensions/xf86vmode/screen/gamma/ramp.rb +86 -0
- data/lib/X11/keysym.rb +7 -25
- data/lib/X11/misc/temperature.rb +458 -0
- data/lib/X11/simple.rb +8 -7
- data/lib/X11/simple/display.rb +35 -37
- data/lib/X11/simple/window.rb +39 -19
- data/lib/X11/window_manager.rb +32 -0
- data/lib/X11/window_manager/desktops.rb +82 -0
- data/lib/X11/window_manager/desktops/desktop.rb +78 -0
- data/lib/X11/window_manager/supports.rb +56 -0
- data/lib/X11/window_manager/supports/feature.rb +46 -0
- data/lib/X11/window_manager/window.rb +102 -0
- data/lib/X11/window_manager/window_manager.rb +73 -0
- metadata +216 -66
@@ -1,26 +1,26 @@
|
|
1
1
|
#--
|
2
2
|
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
3
|
-
#
|
3
|
+
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without modification, are
|
5
5
|
# permitted provided that the following conditions are met:
|
6
|
-
#
|
6
|
+
#
|
7
7
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
8
8
|
# conditions and the following disclaimer.
|
9
|
-
#
|
9
|
+
#
|
10
10
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
11
11
|
# of conditions and the following disclaimer in the documentation and/or other materials
|
12
12
|
# provided with the distribution.
|
13
|
-
#
|
14
|
-
# THIS SOFTWARE IS PROVIDED BY
|
13
|
+
#
|
14
|
+
# THIS SOFTWARE IS PROVIDED BY meh ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
15
15
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
16
|
+
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL meh OR
|
17
17
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
18
18
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
19
19
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
20
20
|
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
21
21
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
22
22
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23
|
-
#
|
23
|
+
#
|
24
24
|
# The views and conclusions contained in the software and documentation are those of the
|
25
25
|
# authors and should not be interpreted as representing official policies, either expressed
|
26
26
|
# or implied.
|
@@ -29,17 +29,17 @@
|
|
29
29
|
module X11; module C
|
30
30
|
|
31
31
|
module Status
|
32
|
-
|
32
|
+
extend FFI::DataConverter
|
33
33
|
|
34
|
-
|
34
|
+
native_type :int
|
35
35
|
|
36
|
-
|
37
|
-
|
38
|
-
|
36
|
+
def self.to_native (value, ctx)
|
37
|
+
value.to_i
|
38
|
+
end
|
39
39
|
|
40
|
-
|
41
|
-
|
42
|
-
|
40
|
+
def self.from_native (value, ctx)
|
41
|
+
X11::Status.new(value)
|
42
|
+
end
|
43
43
|
end
|
44
44
|
|
45
45
|
FFI.typedef Status, :Status
|
@@ -1,38 +1,38 @@
|
|
1
1
|
#--
|
2
2
|
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
3
|
-
#
|
3
|
+
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without modification, are
|
5
5
|
# permitted provided that the following conditions are met:
|
6
|
-
#
|
6
|
+
#
|
7
7
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
8
8
|
# conditions and the following disclaimer.
|
9
|
-
#
|
9
|
+
#
|
10
10
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
11
11
|
# of conditions and the following disclaimer in the documentation and/or other materials
|
12
12
|
# provided with the distribution.
|
13
|
-
#
|
14
|
-
# THIS SOFTWARE IS PROVIDED BY
|
13
|
+
#
|
14
|
+
# THIS SOFTWARE IS PROVIDED BY meh ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
15
15
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
16
|
+
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL meh OR
|
17
17
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
18
18
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
19
19
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
20
20
|
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
21
21
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
22
22
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23
|
-
#
|
23
|
+
#
|
24
24
|
# The views and conclusions contained in the software and documentation are those of the
|
25
25
|
# authors and should not be interpreted as representing official policies, either expressed
|
26
26
|
# or implied.
|
27
27
|
#++
|
28
28
|
|
29
29
|
class X11::C::XUnmapEvent < FFI::Struct
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
30
|
+
layout \
|
31
|
+
:type, :int,
|
32
|
+
:serial, :ulong,
|
33
|
+
:send_event, :Bool,
|
34
|
+
:display, :pointer,
|
35
|
+
:event, :Window,
|
36
|
+
:window, :Window,
|
37
|
+
:from_configure, :Bool
|
38
38
|
end
|
@@ -1,37 +1,37 @@
|
|
1
1
|
#--
|
2
2
|
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
3
|
-
#
|
3
|
+
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without modification, are
|
5
5
|
# permitted provided that the following conditions are met:
|
6
|
-
#
|
6
|
+
#
|
7
7
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
8
8
|
# conditions and the following disclaimer.
|
9
|
-
#
|
9
|
+
#
|
10
10
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
11
11
|
# of conditions and the following disclaimer in the documentation and/or other materials
|
12
12
|
# provided with the distribution.
|
13
|
-
#
|
14
|
-
# THIS SOFTWARE IS PROVIDED BY
|
13
|
+
#
|
14
|
+
# THIS SOFTWARE IS PROVIDED BY meh ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
15
15
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
16
|
+
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL meh OR
|
17
17
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
18
18
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
19
19
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
20
20
|
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
21
21
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
22
22
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23
|
-
#
|
23
|
+
#
|
24
24
|
# The views and conclusions contained in the software and documentation are those of the
|
25
25
|
# authors and should not be interpreted as representing official policies, either expressed
|
26
26
|
# or implied.
|
27
27
|
#++
|
28
28
|
|
29
29
|
class X11::C::XVisibilityEvent < FFI::Struct
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
30
|
+
layout \
|
31
|
+
:type, :int,
|
32
|
+
:serial, :ulong,
|
33
|
+
:send_event, :Bool,
|
34
|
+
:display, :pointer,
|
35
|
+
:window, :Window,
|
36
|
+
:state, :int
|
37
37
|
end
|
@@ -1,39 +1,39 @@
|
|
1
1
|
#--
|
2
2
|
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
3
|
-
#
|
3
|
+
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without modification, are
|
5
5
|
# permitted provided that the following conditions are met:
|
6
|
-
#
|
6
|
+
#
|
7
7
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
8
8
|
# conditions and the following disclaimer.
|
9
|
-
#
|
9
|
+
#
|
10
10
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
11
11
|
# of conditions and the following disclaimer in the documentation and/or other materials
|
12
12
|
# provided with the distribution.
|
13
|
-
#
|
14
|
-
# THIS SOFTWARE IS PROVIDED BY
|
13
|
+
#
|
14
|
+
# THIS SOFTWARE IS PROVIDED BY meh ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
15
15
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
16
|
+
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL meh OR
|
17
17
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
18
18
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
19
19
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
20
20
|
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
21
21
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
22
22
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23
|
-
#
|
23
|
+
#
|
24
24
|
# The views and conclusions contained in the software and documentation are those of the
|
25
25
|
# authors and should not be interpreted as representing official policies, either expressed
|
26
26
|
# or implied.
|
27
27
|
#++
|
28
28
|
|
29
29
|
class X11::C::Visual < FFI::Struct
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
30
|
+
layout \
|
31
|
+
:ext_data, :pointer,
|
32
|
+
:visualid, :VisualID,
|
33
|
+
:class, :int,
|
34
|
+
:read_mask, :ulong,
|
35
|
+
:green_mask, :ulong,
|
36
|
+
:blue_mask, :ulong,
|
37
|
+
:buts_per_rgb, :int,
|
38
|
+
:map_entries, :int
|
39
39
|
end
|
@@ -1,54 +1,54 @@
|
|
1
1
|
#--
|
2
2
|
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
3
|
-
#
|
3
|
+
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without modification, are
|
5
5
|
# permitted provided that the following conditions are met:
|
6
|
-
#
|
6
|
+
#
|
7
7
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
8
8
|
# conditions and the following disclaimer.
|
9
|
-
#
|
9
|
+
#
|
10
10
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
11
11
|
# of conditions and the following disclaimer in the documentation and/or other materials
|
12
12
|
# provided with the distribution.
|
13
|
-
#
|
14
|
-
# THIS SOFTWARE IS PROVIDED BY
|
13
|
+
#
|
14
|
+
# THIS SOFTWARE IS PROVIDED BY meh ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
15
15
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
16
|
+
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL meh OR
|
17
17
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
18
18
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
19
19
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
20
20
|
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
21
21
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
22
22
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23
|
-
#
|
23
|
+
#
|
24
24
|
# The views and conclusions contained in the software and documentation are those of the
|
25
25
|
# authors and should not be interpreted as representing official policies, either expressed
|
26
26
|
# or implied.
|
27
27
|
#++
|
28
28
|
|
29
29
|
class X11::C::XWindowAttributes < FFI::Struct
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
30
|
+
layout \
|
31
|
+
:x, :int,
|
32
|
+
:y, :int,
|
33
|
+
:width, :int,
|
34
|
+
:height, :int,
|
35
|
+
:border_width, :int,
|
36
|
+
:depth, :int,
|
37
|
+
:visual, :pointer,
|
38
|
+
:root, :Window,
|
39
|
+
:class, :int,
|
40
|
+
:bit_gravity, :int,
|
41
|
+
:win_gravity, :int,
|
42
|
+
:backing_store, :int,
|
43
|
+
:backing_planes, :ulong,
|
44
|
+
:backing_pixel, :ulong,
|
45
|
+
:save_under, :Bool,
|
46
|
+
:colormap, :Colormap,
|
47
|
+
:map_installed, :Bool,
|
48
|
+
:map_state, :int,
|
49
|
+
:all_event_masks, :long,
|
50
|
+
:your_event_masks, :long,
|
51
|
+
:do_not_propagate_mask, :long,
|
52
|
+
:override_redirect, :Bool,
|
53
|
+
:screen, :pointer
|
54
54
|
end
|
data/lib/X11/Xlib/c/types.rb
CHANGED
@@ -1,26 +1,26 @@
|
|
1
1
|
#--
|
2
2
|
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
3
|
-
#
|
3
|
+
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without modification, are
|
5
5
|
# permitted provided that the following conditions are met:
|
6
|
-
#
|
6
|
+
#
|
7
7
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
8
8
|
# conditions and the following disclaimer.
|
9
|
-
#
|
9
|
+
#
|
10
10
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
11
11
|
# of conditions and the following disclaimer in the documentation and/or other materials
|
12
12
|
# provided with the distribution.
|
13
|
-
#
|
14
|
-
# THIS SOFTWARE IS PROVIDED BY
|
13
|
+
#
|
14
|
+
# THIS SOFTWARE IS PROVIDED BY meh ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
15
15
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
16
|
+
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL meh OR
|
17
17
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
18
18
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
19
19
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
20
20
|
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
21
21
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
22
22
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23
|
-
#
|
23
|
+
#
|
24
24
|
# The views and conclusions contained in the software and documentation are those of the
|
25
25
|
# authors and should not be interpreted as representing official policies, either expressed
|
26
26
|
# or implied.
|
@@ -31,11 +31,13 @@ require 'X11/Xdefs'
|
|
31
31
|
|
32
32
|
require 'X11/Xlib/c/type/display'
|
33
33
|
require 'X11/Xlib/c/type/gc'
|
34
|
+
require 'X11/Xlib/c/type/gc_values'
|
34
35
|
require 'X11/Xlib/c/type/screen'
|
35
36
|
require 'X11/Xlib/c/type/window_attributes'
|
36
37
|
require 'X11/Xlib/c/type/visual'
|
37
38
|
require 'X11/Xlib/c/type/key_sym'
|
38
39
|
require 'X11/Xlib/c/type/status'
|
40
|
+
require 'X11/Xlib/c/type/point'
|
39
41
|
|
40
42
|
require 'X11/Xlib/c/type/any_event'
|
41
43
|
require 'X11/Xlib/c/type/key_event'
|
data/lib/X11/Xlib/display.rb
CHANGED
@@ -1,201 +1,284 @@
|
|
1
1
|
#--
|
2
2
|
# Copyleft meh. [http://meh.paranoid.pk | meh@paranoici.org]
|
3
|
-
#
|
3
|
+
#
|
4
4
|
# Redistribution and use in source and binary forms, with or without modification, are
|
5
5
|
# permitted provided that the following conditions are met:
|
6
|
-
#
|
6
|
+
#
|
7
7
|
# 1. Redistributions of source code must retain the above copyright notice, this list of
|
8
8
|
# conditions and the following disclaimer.
|
9
|
-
#
|
9
|
+
#
|
10
10
|
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
11
11
|
# of conditions and the following disclaimer in the documentation and/or other materials
|
12
12
|
# provided with the distribution.
|
13
|
-
#
|
14
|
-
# THIS SOFTWARE IS PROVIDED BY
|
13
|
+
#
|
14
|
+
# THIS SOFTWARE IS PROVIDED BY meh ''AS IS'' AND ANY EXPRESS OR IMPLIED
|
15
15
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
16
|
-
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
16
|
+
# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL meh OR
|
17
17
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
18
18
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
19
19
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
20
20
|
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
21
21
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
22
22
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
23
|
-
#
|
23
|
+
#
|
24
24
|
# The views and conclusions contained in the software and documentation are those of the
|
25
25
|
# authors and should not be interpreted as representing official policies, either expressed
|
26
26
|
# or implied.
|
27
27
|
#++
|
28
28
|
|
29
|
+
require 'X11/Xlib/display/extensions'
|
30
|
+
|
29
31
|
module X11
|
30
32
|
|
31
33
|
class Display
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
34
|
+
def self.open (*args)
|
35
|
+
name, options = if args.first.is_a?(Hash)
|
36
|
+
[nil, args.first]
|
37
|
+
else
|
38
|
+
args
|
39
|
+
end
|
40
|
+
|
41
|
+
X11::C::XOpenDisplay(name).tap! {|pointer|
|
42
|
+
raise ArgumentError, "could not connect to display #{name}" if pointer.null?
|
43
|
+
|
44
|
+
Display.new(pointer, options)
|
45
|
+
}.tap {|display|
|
46
|
+
X11::Extension.list.each {|extension|
|
47
|
+
display.extensions.load(extension)
|
48
|
+
}
|
49
|
+
}
|
50
|
+
end
|
51
|
+
|
52
|
+
include ForwardTo
|
53
|
+
|
54
|
+
attr_reader :options, :extensions
|
55
|
+
forward_to :default_screen
|
56
|
+
|
57
|
+
def initialize (pointer, options={})
|
58
|
+
@internal = pointer.is_a?(C::Display) ? pointer : C::Display.new(pointer)
|
59
|
+
@extensions = Extensions.new(self)
|
60
|
+
|
61
|
+
@options = {
|
62
|
+
:flush => true
|
63
|
+
}.merge(options || {})
|
64
|
+
end
|
65
|
+
|
66
|
+
C::Display.layout.members.each {|name|
|
67
|
+
define_method name do
|
68
|
+
@internal[name]
|
69
|
+
end
|
70
|
+
}
|
71
|
+
|
72
|
+
def name
|
73
|
+
C::XDisplayString(to_ffi)
|
74
|
+
end
|
75
|
+
|
76
|
+
def autoflush?; !!options[:flush]; end
|
77
|
+
def autoflush!; options[:flush] = true; end
|
78
|
+
def no_autoflush!; options[:flush] = false; end
|
79
|
+
|
80
|
+
def flush
|
81
|
+
flush! if options[:flush]
|
82
|
+
end
|
83
|
+
|
84
|
+
def flush!
|
85
|
+
C::XFlush(to_ffi)
|
86
|
+
end
|
87
|
+
|
88
|
+
def sync! (discard=false)
|
89
|
+
C::XSync(to_ffi, discard)
|
90
|
+
end
|
91
|
+
|
92
|
+
def pending
|
93
|
+
C::XPending(to_ffi)
|
94
|
+
end
|
95
|
+
|
96
|
+
def screen (which)
|
97
|
+
Screen.new(self, @internal[:screens] + (which * C::Screen.size))
|
98
|
+
end
|
99
|
+
|
100
|
+
def default_screen
|
101
|
+
screen(@internal[:default_screen])
|
102
|
+
end
|
103
|
+
|
104
|
+
def screens
|
105
|
+
Enumerator.new {|e|
|
106
|
+
(0 ... @internal[:nscreens]).map {|i|
|
107
|
+
e.yield screen(i)
|
108
|
+
}
|
109
|
+
}
|
110
|
+
end
|
111
|
+
|
112
|
+
def window (id)
|
113
|
+
X11::Window.new(self, id.to_i)
|
114
|
+
end
|
115
|
+
|
116
|
+
def create_window (*args)
|
117
|
+
if args.first.is_a?(Hash)
|
118
|
+
X11::Window.create(args.first.tap {|args|
|
119
|
+
args[:display] = self
|
120
|
+
})
|
121
|
+
else
|
122
|
+
X11::Window.create(self, *args)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
def grab_pointer (*args, &block)
|
127
|
+
default_screen.root_window.grab_pointer(*args, &block)
|
128
|
+
end
|
129
|
+
|
130
|
+
def ungrab_pointer (time=0)
|
131
|
+
C::XUngrabPointer(to_ffi, time)
|
132
|
+
end
|
133
|
+
|
134
|
+
def ungrab_key (*args, &block)
|
135
|
+
default_screen.root_window.ungrab_key(*args, &block)
|
136
|
+
end
|
137
|
+
|
138
|
+
def keysym_to_keycode (keysym)
|
139
|
+
return keysym if keysym.is_a?(Integer)
|
140
|
+
|
141
|
+
C::XKeysymToKeycode(to_ffi, keysym)
|
142
|
+
end
|
143
|
+
|
144
|
+
def focused
|
145
|
+
window = FFI::MemoryPointer.new :Window
|
146
|
+
revert = FFI::MemoryPointer.new :int
|
147
|
+
|
148
|
+
C::XGetInputFocus(to_ffi, window, revert)
|
149
|
+
|
150
|
+
Window.new(self, window.typecast(:Window)).tap {|w|
|
151
|
+
w.revert_to revert.typecast(:int)
|
152
|
+
}
|
153
|
+
end
|
154
|
+
|
155
|
+
def focus (window, revert=:ToParent, time=0)
|
156
|
+
C::XSetInputFocus(to_ffi, window.to_ffi, revert.is_a?(Integer) ? revert : RevertTo[revert], time)
|
157
|
+
end
|
158
|
+
|
159
|
+
def allow_events (mode, time=0)
|
160
|
+
C::XAllowEvents(to_ffi, mode, time)
|
161
|
+
end
|
162
|
+
|
163
|
+
def next_event (what=nil, options=nil, &block)
|
164
|
+
what, options = if what.is_a?(Hash)
|
165
|
+
[Mask::Event.all, what]
|
166
|
+
else
|
167
|
+
[what, options || {}]
|
168
|
+
end
|
169
|
+
|
170
|
+
event = FFI::MemoryPointer.new(C::XEvent)
|
171
|
+
|
172
|
+
# this would be cool, but it's slow as hell, if anyone finds a way to optimize it, let me know
|
173
|
+
=begin
|
174
|
+
callback = FFI::Function.new(:Bool, [:pointer, :pointer, :pointer]) {|_, event|
|
175
|
+
event = Event.new(event)
|
176
|
+
|
177
|
+
if event.matches?(what)
|
178
|
+
block ? block.call(event) : true
|
179
|
+
end
|
180
|
+
}
|
181
|
+
|
182
|
+
unless options[:blocking?] == false
|
183
|
+
unless options[:delete] == false
|
184
|
+
C::XIfEvent(to_ffi, event, callback, nil)
|
185
|
+
else
|
186
|
+
C::XPeekIfEvent(to_ffi, event, callback, nil)
|
187
|
+
end
|
188
|
+
else
|
189
|
+
if options[:delete] == true
|
190
|
+
raise ArgumentError, 'cannot delete and not block at the same time'
|
191
|
+
end
|
192
|
+
|
193
|
+
C::XCheckIfEvent(to_ffi, event, callback, nil) or return
|
194
|
+
end
|
195
|
+
=end
|
196
|
+
|
197
|
+
if block
|
198
|
+
callback = FFI::Function.new(:Bool, [:pointer, :pointer, :pointer]) do |_, event|
|
199
|
+
block.call Event.new(event)
|
200
|
+
end
|
201
|
+
|
202
|
+
if options[:blocking?] == false
|
203
|
+
C::XCheckIfEvent(to_ffi, event, callback, nil) or return
|
204
|
+
|
205
|
+
if options[:delete] == false
|
206
|
+
C::XPutBackEvent(to_ffi, event.to_ffi)
|
207
|
+
end
|
208
|
+
else
|
209
|
+
if options[:delete] != false
|
210
|
+
C::XIfEvent(to_ffi, event, callback, nil)
|
211
|
+
else
|
212
|
+
C::XPeekIfEvent(to_ffi, event, callback, nil)
|
213
|
+
end
|
214
|
+
end
|
215
|
+
else
|
216
|
+
if what.is_a?(Symbol) && options[:blocking?] != false
|
217
|
+
raise ArgumentError, 'cannot look for event by type and block'
|
218
|
+
end
|
219
|
+
|
220
|
+
if !what.is_a?(Symbol) && options[:blocking?] != false
|
221
|
+
if options[:delete] != false
|
222
|
+
if what
|
223
|
+
C::XMaskEvent(to_ffi, what.to_ffi, event)
|
224
|
+
else
|
225
|
+
C::XNextEvent(to_ffi, event)
|
226
|
+
end
|
227
|
+
else
|
228
|
+
C::XPeekEvent(to_ffi, event)
|
229
|
+
end
|
230
|
+
else
|
231
|
+
if what.is_a?(Symbol)
|
232
|
+
C::XCheckTypedEvent(to_ffi, Event.index(what), event) or return
|
233
|
+
else
|
234
|
+
C::XCheckMaskEvent(to_ffi, what.to_ffi, event) or return
|
235
|
+
end
|
236
|
+
|
237
|
+
if options[:delete] == false
|
238
|
+
C::XPutBackEvent(to_ffi, event.to_ffi)
|
239
|
+
end
|
240
|
+
end
|
241
|
+
end
|
242
|
+
|
243
|
+
Event.new(event)
|
244
|
+
end
|
245
|
+
|
246
|
+
def each_event (what=nil, options=nil, &block)
|
247
|
+
return unless block
|
248
|
+
|
249
|
+
catch(:skip) {
|
250
|
+
loop {
|
251
|
+
next_event(what, options).tap {|event|
|
252
|
+
if !event
|
253
|
+
return if options[:blocking] == false
|
254
|
+
next
|
255
|
+
end
|
256
|
+
|
257
|
+
block.call event
|
258
|
+
}
|
259
|
+
}
|
260
|
+
}
|
261
|
+
end
|
262
|
+
|
263
|
+
def close
|
264
|
+
C::XCloseDisplay(to_ffi)
|
265
|
+
|
266
|
+
methods.each {|name|
|
267
|
+
next if (Object.instance_method(name) rescue false)
|
268
|
+
|
269
|
+
define_singleton_method name do |*|
|
270
|
+
raise RuntimeError, 'this Display is unusable because it has been closed'
|
271
|
+
end
|
272
|
+
}
|
273
|
+
end
|
274
|
+
|
275
|
+
def atom (name)
|
276
|
+
Atom[name, self]
|
277
|
+
end
|
278
|
+
|
279
|
+
def to_ffi
|
280
|
+
@internal.pointer
|
281
|
+
end
|
199
282
|
end
|
200
283
|
|
201
284
|
end
|