uh 1.2.1 → 1.2.2
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 +4 -4
- data/ext/uh/uh.c +1 -0
- data/ext/uh/uh.h +1 -0
- data/ext/uh/window.c +8 -0
- data/lib/uh/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df7322477a9566e9b60f54a6e00a9facda3e1e30
|
4
|
+
data.tar.gz: 5ffd74102f30594a3fa5b9614fde19aa59e3dd7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cefb2aaf868437ba37c283d9bb88d49237efd131412e7944b6e88fb04d77181755fe0d2aca2047558a34fd417a9c5f8b7796a157e085d969ebf9f54f62c08b7
|
7
|
+
data.tar.gz: 111ec34b1d7781a42dad333cc69c28df8fd85fb8065a8c91b1170f6d883bc5a8b44fee7363240e8f3f1aca7a62c5cf1cbae85658ed4d8563ba6d878ecf6bde3d
|
data/ext/uh/uh.c
CHANGED
@@ -120,6 +120,7 @@ void uh_screen() {
|
|
120
120
|
void uh_window() {
|
121
121
|
cWindow = rb_define_class_under(mUh, "Window", rb_cObject);
|
122
122
|
rb_define_attr(cWindow, "id", 1, 0);
|
123
|
+
rb_define_method(cWindow, "destroy", window_destroy, 0);
|
123
124
|
rb_define_method(cWindow, "focus", window_focus, 0);
|
124
125
|
rb_define_method(cWindow, "kill", window_kill, 0);
|
125
126
|
rb_define_method(cWindow, "map", window_map, 0);
|
data/ext/uh/uh.h
CHANGED
@@ -80,6 +80,7 @@ VALUE pixmap_make(Display *display, Pixmap xpixmap, VALUE width, VALUE height);
|
|
80
80
|
|
81
81
|
VALUE screen_init(VALUE self, VALUE id, VALUE x, VALUE y, VALUE w, VALUE h);
|
82
82
|
|
83
|
+
VALUE window_destroy(VALUE self);
|
83
84
|
VALUE window_focus(VALUE self);
|
84
85
|
VALUE window_icccm_wm_delete(VALUE self);
|
85
86
|
VALUE window_icccm_wm_protocols(VALUE self);
|
data/ext/uh/window.c
CHANGED
data/lib/uh/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thibault Jouan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|