gdk3 3.3.6 → 3.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/dependency-check/Rakefile +4 -3
- data/gdk3.gemspec +2 -2
- data/lib/gdk3/color.rb +12 -1
- data/lib/gdk3/cursor.rb +5 -1
- data/lib/gdk3/rgba.rb +12 -1
- data/test/gdk-test-utils.rb +3 -2
- data/test/run-test.rb +3 -1
- data/test/test-gdk-color.rb +13 -3
- data/test/test-gdk-rgba.rb +13 -3
- metadata +11 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba535a498c1d9d80a0ce08b1a86d320fdfe4a9682db8742e7c63be03ef4c71c1
|
4
|
+
data.tar.gz: 520d8eebbb84057498995033024e88d2471952406ddc285af283c2efee8b78b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f44520cb0607564b2ce0d3b210812599b07e46bf4505762f3e1d4ca0fc72731d552b5c46ffcbd7f1b137104ae2706f4e49360ea4fda264ca41dea5e4183e1d43
|
7
|
+
data.tar.gz: dd98277694c2e23ecf232fba04b3eb559dcba598a7c35b5f6d6f45e74f979bf289ed4912e4cae996383699c9c16e530a4ca7f541bd491ca71becdc5c11e0cc52
|
data/dependency-check/Rakefile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2017 Ruby-
|
1
|
+
# Copyright (C) 2017-2019 Ruby-GNOME Project Team
|
2
2
|
#
|
3
3
|
# This library is free software; you can redistribute it and/or
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -29,10 +29,11 @@ end
|
|
29
29
|
namespace :dependency do
|
30
30
|
desc "Check dependency"
|
31
31
|
task :check do
|
32
|
-
|
32
|
+
package_id = "gdk-3.0"
|
33
|
+
unless PKGConfig.check_version?(package_id)
|
33
34
|
unless NativePackageInstaller.install(:altlinux => "libgtk+3-devel",
|
34
35
|
:debian => "libgtk-3-dev",
|
35
|
-
:redhat => "pkgconfig(
|
36
|
+
:redhat => "pkgconfig(#{package_id})",
|
36
37
|
:homebrew => "gtk+3",
|
37
38
|
:macports => "gtk3",
|
38
39
|
:msys2 => "gtk3")
|
data/gdk3.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
#
|
3
|
-
# Copyright (C) 2018 Ruby-
|
3
|
+
# Copyright (C) 2018 Ruby-GNOME Project Team
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|
22
22
|
s.name = "gdk3"
|
23
23
|
s.summary = "Ruby/GDK3 is a Ruby binding of GDK-3.x."
|
24
24
|
s.description = "Ruby/GDK3 is a Ruby binding of GDK-3.x."
|
25
|
-
s.author = "The Ruby-
|
25
|
+
s.author = "The Ruby-GNOME Project Team"
|
26
26
|
s.email = "ruby-gnome2-devel-en@lists.sourceforge.net"
|
27
27
|
s.homepage = "https://ruby-gnome2.osdn.jp/"
|
28
28
|
s.licenses = ["LGPL-2.1+"]
|
data/lib/gdk3/color.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2014 Ruby-
|
1
|
+
# Copyright (C) 2014-2019 Ruby-GNOME Project Team
|
2
2
|
#
|
3
3
|
# This library is free software; you can redistribute it and/or
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -36,6 +36,17 @@ module Gdk
|
|
36
36
|
end
|
37
37
|
color
|
38
38
|
end
|
39
|
+
|
40
|
+
def try_convert(value)
|
41
|
+
case value
|
42
|
+
when String
|
43
|
+
parse(value)
|
44
|
+
when Symbol
|
45
|
+
parse(value.to_s)
|
46
|
+
else
|
47
|
+
nil
|
48
|
+
end
|
49
|
+
end
|
39
50
|
end
|
40
51
|
|
41
52
|
alias_method :initialize_raw, :initialize
|
data/lib/gdk3/cursor.rb
CHANGED
@@ -38,7 +38,11 @@ module Gdk
|
|
38
38
|
end
|
39
39
|
display = options[:display] || Display.default
|
40
40
|
|
41
|
-
|
41
|
+
if args.size == 1 and args[0].is_a?(String)
|
42
|
+
initialize_new_from_name(display, *args)
|
43
|
+
else
|
44
|
+
initialize_raw(display, *args)
|
45
|
+
end
|
42
46
|
end
|
43
47
|
end
|
44
48
|
end
|
data/lib/gdk3/rgba.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2014 Ruby-
|
1
|
+
# Copyright (C) 2014-2019 Ruby-GNOME Project Team
|
2
2
|
#
|
3
3
|
# This library is free software; you can redistribute it and/or
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -35,6 +35,17 @@ module Gdk
|
|
35
35
|
end
|
36
36
|
rgba
|
37
37
|
end
|
38
|
+
|
39
|
+
def try_convert(value)
|
40
|
+
case value
|
41
|
+
when String
|
42
|
+
parse(value)
|
43
|
+
when Symbol
|
44
|
+
parse(value.to_s)
|
45
|
+
else
|
46
|
+
nil
|
47
|
+
end
|
48
|
+
end
|
38
49
|
end
|
39
50
|
|
40
51
|
alias_method :initialize_raw, :initialize
|
data/test/gdk-test-utils.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2013 Ruby-
|
1
|
+
# Copyright (C) 2013-2019 Ruby-GNOME Project Team
|
2
2
|
#
|
3
3
|
# This library is free software; you can redistribute it and/or
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -14,13 +14,14 @@
|
|
14
14
|
# License along with this library; if not, write to the Free Software
|
15
15
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
16
|
|
17
|
+
require "pkg-config"
|
17
18
|
require "test-unit"
|
18
19
|
|
19
20
|
module GdkTestUtils
|
20
21
|
private
|
21
22
|
def only_gdk_version(major, minor, micro=nil)
|
22
23
|
micro ||= 0
|
23
|
-
gdk_version_raw =
|
24
|
+
gdk_version_raw = PKGConfig.modversion("gdk-3.0")
|
24
25
|
gdk_version = gdk_version_raw.split(".").collect(&:to_i)
|
25
26
|
unless (gdk_version <=> [major, minor, micro]) >= 0
|
26
27
|
omit("Require GDK >= #{major}.#{minor}.#{micro}")
|
data/test/run-test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
#
|
3
|
-
# Copyright (C) 2013-
|
3
|
+
# Copyright (C) 2013-2019 Ruby-GNOME Project Team
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -20,6 +20,7 @@ ruby_gnome2_base = File.join(File.dirname(__FILE__), "..", "..")
|
|
20
20
|
ruby_gnome2_base = File.expand_path(ruby_gnome2_base)
|
21
21
|
|
22
22
|
glib_base = File.join(ruby_gnome2_base, "glib2")
|
23
|
+
gio_base = File.join(ruby_gnome2_base, "gio2")
|
23
24
|
atk_base = File.join(ruby_gnome2_base, "atk")
|
24
25
|
cairo_gobject_base = File.join(ruby_gnome2_base, "cairo-gobject")
|
25
26
|
pango_base = File.join(ruby_gnome2_base, "pango")
|
@@ -29,6 +30,7 @@ gdk3_base = File.join(ruby_gnome2_base, "gdk3")
|
|
29
30
|
|
30
31
|
[
|
31
32
|
[glib_base, "glib2"],
|
33
|
+
[gio_base, "gio2"],
|
32
34
|
[atk_base, "atk"],
|
33
35
|
[cairo_gobject_base, "cairo-gobject"],
|
34
36
|
[pango_base, "pango"],
|
data/test/test-gdk-color.rb
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
#
|
2
|
-
#
|
3
|
-
# Copyright (C) 2013 Ruby-GNOME2 Project Team
|
1
|
+
# Copyright (C) 2013-2019 Ruby-GNOME Project Team
|
4
2
|
#
|
5
3
|
# This library is free software; you can redistribute it and/or
|
6
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -42,6 +40,18 @@ class TestGdkColor < Test::Unit::TestCase
|
|
42
40
|
end
|
43
41
|
end
|
44
42
|
|
43
|
+
sub_test_case ".try_convert" do
|
44
|
+
test("String") do
|
45
|
+
assert_equal(Gdk::Color.parse("gray"),
|
46
|
+
Gdk::Color.try_convert("gray"))
|
47
|
+
end
|
48
|
+
|
49
|
+
test("Symbol") do
|
50
|
+
assert_equal(Gdk::Color.parse("gray"),
|
51
|
+
Gdk::Color.try_convert(:gray))
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
45
55
|
def test_to_s
|
46
56
|
color = Gdk::Color.new(0xffff, 0x1234, 0xabcd)
|
47
57
|
assert_equal("#ffff1234abcd", color.to_s)
|
data/test/test-gdk-rgba.rb
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
#
|
2
|
-
#
|
3
|
-
# Copyright (C) 2013-2014 Ruby-GNOME2 Project Team
|
1
|
+
# Copyright (C) 2013-2019 Ruby-GNOME Project Team
|
4
2
|
#
|
5
3
|
# This library is free software; you can redistribute it and/or
|
6
4
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,6 +15,18 @@
|
|
17
15
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
16
|
|
19
17
|
class TestGdkRGBA < Test::Unit::TestCase
|
18
|
+
sub_test_case ".try_convert" do
|
19
|
+
test("String") do
|
20
|
+
assert_equal(Gdk::RGBA.parse("gray"),
|
21
|
+
Gdk::RGBA.try_convert("gray"))
|
22
|
+
end
|
23
|
+
|
24
|
+
test("Symbol") do
|
25
|
+
assert_equal(Gdk::RGBA.parse("gray"),
|
26
|
+
Gdk::RGBA.try_convert(:gray))
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
20
30
|
def test_to_s
|
21
31
|
rgba = Gdk::RGBA.new(0.2, 0.4, 0.6, 0.5)
|
22
32
|
assert_equal("rgba(51,102,153,0.5)", rgba.to_s)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gdk3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- The Ruby-
|
7
|
+
- The Ruby-GNOME Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pango
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.
|
19
|
+
version: 3.4.1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.
|
26
|
+
version: 3.4.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: gdk_pixbuf2
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.
|
33
|
+
version: 3.4.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.
|
40
|
+
version: 3.4.1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: cairo-gobject
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 3.
|
47
|
+
version: 3.4.1
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 3.
|
54
|
+
version: 3.4.1
|
55
55
|
description: Ruby/GDK3 is a Ruby binding of GDK-3.x.
|
56
56
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
57
57
|
executables: []
|
@@ -116,7 +116,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: '0'
|
118
118
|
requirements: []
|
119
|
-
|
119
|
+
rubyforge_project:
|
120
|
+
rubygems_version: 2.7.6.2
|
120
121
|
signing_key:
|
121
122
|
specification_version: 4
|
122
123
|
summary: Ruby/GDK3 is a Ruby binding of GDK-3.x.
|