pango 3.4.9 → 4.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 +4 -4
- data/ext/pango/rb-pango-attr-iterator.c +7 -5
- data/ext/pango/rb-pango-attribute.c +1 -9
- data/ext/pango/rb-pango-private.h +9 -1
- data/lib/pango/cairo-loader.rb +34 -24
- data/lib/pango/fc-loader.rb +18 -5
- data/lib/pango/ft2-loader.rb +18 -5
- data/lib/pango/loader.rb +4 -2
- data/lib/pango/ot-loader.rb +18 -5
- data/lib/pango/rectangle.rb +4 -2
- data/lib/pango.rb +16 -8
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 937e08dda62e2b0014da3bff2f3c31f75a7e787c2c45af0b3b35e72d5d1d45c5
|
4
|
+
data.tar.gz: efb473920b5036c52a73c540b70ab57d4045e31439761255752e8296cf35e0af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c5b6a71891497b254426a8409a7064778b764e2095204d7386a1c1c56860d8060ead68e81dcc4180e6e409435bc4765a58c01f367fcb34581a06e72acfd46fa
|
7
|
+
data.tar.gz: d199e895488c5cb6ce554842651d7d8c62dd261936d8eb298114642f1655f8b854dc54da40c5e7bd884d0c8b614db2e6492eb5da80293a36f58b9825017c8f32
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2017 Ruby-
|
3
|
+
* Copyright (C) 2017-2022 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
|
@@ -23,10 +23,12 @@
|
|
23
23
|
#define RG_TARGET_NAMESPACE cAttrIterator
|
24
24
|
#define _SELF(self) (RVAL2PANGOATTRITERATOR(self))
|
25
25
|
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
26
|
+
#if !PANGO_CHECK_VERSION(1, 44, 0)
|
27
|
+
G_DEFINE_BOXED_TYPE(PangoAttrIterator,
|
28
|
+
pango_attr_iterator,
|
29
|
+
pango_attr_iterator_copy,
|
30
|
+
pango_attr_iterator_destroy);
|
31
|
+
#endif
|
30
32
|
|
31
33
|
static VALUE
|
32
34
|
rg_attrs(VALUE self)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2017-
|
3
|
+
* Copyright (C) 2017-2022 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,14 +20,6 @@
|
|
20
20
|
|
21
21
|
#include "rb-pango-private.h"
|
22
22
|
|
23
|
-
#ifndef PANGO_CHECK_VERSION
|
24
|
-
# define PANGO_CHECK_VERSION(major, minor, micro) \
|
25
|
-
(PANGO_VERSION_MAJOR > (major) || \
|
26
|
-
(PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR > (minor)) || \
|
27
|
-
(PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR == (minor) && \
|
28
|
-
PANGO_VERSION_MICRO >= (micro)))
|
29
|
-
#endif
|
30
|
-
|
31
23
|
#if !PANGO_CHECK_VERSION(1, 44, 0)
|
32
24
|
static GType
|
33
25
|
pango_attribute_get_type(void)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2017 Ruby-
|
3
|
+
* Copyright (C) 2017-2022 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,6 +22,14 @@
|
|
22
22
|
|
23
23
|
#include "rb-pango.h"
|
24
24
|
|
25
|
+
#ifndef PANGO_CHECK_VERSION
|
26
|
+
# define PANGO_CHECK_VERSION(major, minor, micro) \
|
27
|
+
(PANGO_VERSION_MAJOR > (major) || \
|
28
|
+
(PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR > (minor)) || \
|
29
|
+
(PANGO_VERSION_MAJOR == (major) && PANGO_VERSION_MINOR == (minor) && \
|
30
|
+
PANGO_VERSION_MICRO >= (micro)))
|
31
|
+
#endif
|
32
|
+
|
25
33
|
G_GNUC_INTERNAL void rbpango_attribute_init(VALUE mPango);
|
26
34
|
G_GNUC_INTERNAL void rbpango_attr_iterator_init(VALUE mPango);
|
27
35
|
G_GNUC_INTERNAL void rbpango_attr_list_init(VALUE mPango);
|
data/lib/pango/cairo-loader.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2017 Ruby-
|
1
|
+
# Copyright (C) 2017-2021 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,15 +14,18 @@
|
|
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
|
-
module
|
18
|
-
class
|
17
|
+
module PangoCairo
|
18
|
+
class Loader < GObjectIntrospection::Loader
|
19
19
|
private
|
20
20
|
def pre_load(repository, namespace)
|
21
|
-
@
|
21
|
+
@context_cairo_methods_module =
|
22
|
+
define_methods_module(:ContextCairoMethods)
|
23
|
+
@cairo_context_methods_module =
|
24
|
+
define_methods_module(:CairoContextMethods)
|
22
25
|
end
|
23
26
|
|
24
27
|
def post_load(repository, namespace)
|
25
|
-
font_map_class = @base_module
|
28
|
+
font_map_class = @base_module::FontMap
|
26
29
|
font_types = []
|
27
30
|
font_types << :quartz if Cairo::FontFace.quartz_supported?
|
28
31
|
font_types << :win32 if Cairo::Surface.quartz_supported?
|
@@ -30,45 +33,52 @@ module Pango
|
|
30
33
|
font_types.each do |font_type|
|
31
34
|
font_map = font_map_class.new_for_font_type(font_type)
|
32
35
|
next if font_map.nil?
|
33
|
-
|
34
|
-
|
36
|
+
name = font_map.class.gtype.name.gsub(/\APangoCairo/, "")
|
37
|
+
next if @base_module.const_defined?(name)
|
38
|
+
@base_module.const_set(name, font_map.class)
|
35
39
|
end
|
36
|
-
|
40
|
+
apply_methods_module(@context_cairo_methods_module, Pango::Context)
|
41
|
+
apply_methods_module(@cairo_context_methods_module, Cairo::Context)
|
37
42
|
|
38
|
-
|
39
|
-
|
43
|
+
@base_module.constants.each do |constant|
|
44
|
+
case constant
|
45
|
+
when :INVOKERS,
|
46
|
+
:Loader
|
47
|
+
next
|
48
|
+
else
|
49
|
+
value = @base_module.const_get(constant)
|
50
|
+
next if value == @context_cairo_methods_module
|
51
|
+
next if value == @cairo_context_methods_module
|
52
|
+
Pango.const_set("Cairo#{constant}", value)
|
53
|
+
end
|
54
|
+
end
|
40
55
|
end
|
41
56
|
|
42
57
|
def load_function_info(info)
|
43
58
|
case info.name
|
44
59
|
when /\Acontext_get_(.+)\z/
|
45
60
|
method_name = $1
|
46
|
-
define_method(info, @
|
61
|
+
define_method(info, @context_cairo_methods_module, method_name)
|
47
62
|
when /\Acontext_set_(.+)\z/
|
48
63
|
method_base_name = $1
|
49
64
|
setter_method_name = "set_#{method_base_name}"
|
50
|
-
|
51
|
-
# ignore
|
52
|
-
return
|
53
|
-
end
|
54
|
-
define_method(info, @context_class, setter_method_name)
|
65
|
+
define_method(info, @context_cairo_methods_module, setter_method_name)
|
55
66
|
if info.n_args == 2
|
56
67
|
equal_method_name = "#{method_base_name}="
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
setter_method_name)
|
68
|
+
@context_cairo_methods_module.__send__(:alias_method,
|
69
|
+
equal_method_name,
|
70
|
+
setter_method_name)
|
61
71
|
end
|
62
72
|
when /\Afont_map_/
|
63
73
|
# ignore
|
64
74
|
when /\Acreate_(.+)\z/
|
65
|
-
define_method(info,
|
75
|
+
define_method(info, @cairo_context_methods_module, "create_pango_#{$1}")
|
66
76
|
when /\A(.+_path)\z/
|
67
|
-
define_method(info,
|
77
|
+
define_method(info, @cairo_context_methods_module, "pango_#{$1}")
|
68
78
|
when /\Ashow_(.+)\z/
|
69
|
-
define_method(info,
|
79
|
+
define_method(info, @cairo_context_methods_module, "show_pango_#{$1}")
|
70
80
|
when /\Aupdate_(.+)\z/
|
71
|
-
define_method(info,
|
81
|
+
define_method(info, @cairo_context_methods_module, "update_pango_#{$1}")
|
72
82
|
else
|
73
83
|
warn("Unsupported PangoCairo function: #{info.name}")
|
74
84
|
end
|
data/lib/pango/fc-loader.rb
CHANGED
@@ -14,11 +14,24 @@
|
|
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
|
-
module
|
18
|
-
class
|
19
|
-
|
20
|
-
|
21
|
-
|
17
|
+
module PangoFc
|
18
|
+
class Loader < GObjectIntrospection::Loader
|
19
|
+
def post_load(repository, namespace)
|
20
|
+
@base_module.constants.each do |constant|
|
21
|
+
case constant
|
22
|
+
when :INVOKERS,
|
23
|
+
:Loader
|
24
|
+
next
|
25
|
+
else
|
26
|
+
if constant.to_s.upcase == constant.to_s
|
27
|
+
name = "FC_#{constant}"
|
28
|
+
else
|
29
|
+
name = "Fc#{constant}"
|
30
|
+
end
|
31
|
+
value = @base_module.const_get(constant)
|
32
|
+
Pango.const_set(name, value)
|
33
|
+
end
|
34
|
+
end
|
22
35
|
end
|
23
36
|
end
|
24
37
|
end
|
data/lib/pango/ft2-loader.rb
CHANGED
@@ -14,11 +14,24 @@
|
|
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
|
-
module
|
18
|
-
class
|
19
|
-
|
20
|
-
|
21
|
-
|
17
|
+
module PangoFT2
|
18
|
+
class Loader < GObjectIntrospection::Loader
|
19
|
+
def post_load(repository, namespace)
|
20
|
+
@base_module.constants.each do |constant|
|
21
|
+
case constant
|
22
|
+
when :INVOKERS,
|
23
|
+
:Loader
|
24
|
+
next
|
25
|
+
else
|
26
|
+
if constant.to_s.upcase == constant.to_s
|
27
|
+
name = "FT2_#{constant}"
|
28
|
+
else
|
29
|
+
name = "FT2#{constant}"
|
30
|
+
end
|
31
|
+
value = @base_module.const_get(constant)
|
32
|
+
Pango.const_set(name, value)
|
33
|
+
end
|
34
|
+
end
|
22
35
|
end
|
23
36
|
end
|
24
37
|
end
|
data/lib/pango/loader.rb
CHANGED
@@ -26,8 +26,10 @@ module Pango
|
|
26
26
|
@pending_attribute_infos.each do |info|
|
27
27
|
name = rubyish_class_name(info)
|
28
28
|
klass = @base_module.const_get(name)
|
29
|
-
|
30
|
-
|
29
|
+
prepare_class(klass) do
|
30
|
+
load_fields(info, klass)
|
31
|
+
load_methods(info, klass)
|
32
|
+
end
|
31
33
|
end
|
32
34
|
require_libraries
|
33
35
|
convert_attribute_classes
|
data/lib/pango/ot-loader.rb
CHANGED
@@ -14,11 +14,24 @@
|
|
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
|
-
module
|
18
|
-
class
|
19
|
-
|
20
|
-
|
21
|
-
|
17
|
+
module PangoOT
|
18
|
+
class Loader < GObjectIntrospection::Loader
|
19
|
+
def post_load(repository, namespace)
|
20
|
+
@base_module.constants.each do |constant|
|
21
|
+
case constant
|
22
|
+
when :INVOKERS,
|
23
|
+
:Loader
|
24
|
+
next
|
25
|
+
else
|
26
|
+
if constant.to_s.upcase == constant.to_s
|
27
|
+
name = "OT_#{constant}"
|
28
|
+
else
|
29
|
+
name = "OT#{constant}"
|
30
|
+
end
|
31
|
+
value = @base_module.const_get(constant)
|
32
|
+
Pango.const_set(name, value)
|
33
|
+
end
|
34
|
+
end
|
22
35
|
end
|
23
36
|
end
|
24
37
|
end
|
data/lib/pango/rectangle.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Copyright (C) 2017-
|
1
|
+
# Copyright (C) 2017-2022 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
|
@@ -47,7 +47,9 @@ module Pango
|
|
47
47
|
|
48
48
|
def dup
|
49
49
|
duplicated = self.class.new(x, y, width, height)
|
50
|
-
|
50
|
+
if respond_to?(:tainted?) and tainted?
|
51
|
+
duplicated.taint
|
52
|
+
end
|
51
53
|
duplicated
|
52
54
|
end
|
53
55
|
end
|
data/lib/pango.rb
CHANGED
@@ -30,22 +30,30 @@ module Pango
|
|
30
30
|
|
31
31
|
loader = Loader.new(self)
|
32
32
|
loader.load("Pango")
|
33
|
+
end
|
33
34
|
|
34
|
-
|
35
|
-
|
35
|
+
module PangoCairo
|
36
|
+
loader = Loader.new(self)
|
37
|
+
loader.load("PangoCairo")
|
38
|
+
end
|
36
39
|
|
37
|
-
|
40
|
+
module PangoFc
|
41
|
+
loader = Loader.new(self)
|
38
42
|
begin
|
39
|
-
|
43
|
+
loader.load("PangoFc")
|
40
44
|
rescue GObjectIntrospection::RepositoryError::TypelibNotFound
|
41
45
|
end
|
46
|
+
end
|
42
47
|
|
43
|
-
|
44
|
-
|
48
|
+
module PangoFT2
|
49
|
+
loader = Loader.new(self)
|
50
|
+
loader.load("PangoFT2")
|
51
|
+
end
|
45
52
|
|
46
|
-
|
53
|
+
module PangoOT
|
54
|
+
loader = Loader.new(self)
|
47
55
|
begin
|
48
|
-
|
56
|
+
loader.load("PangoOT")
|
49
57
|
rescue GObjectIntrospection::RepositoryError::TypelibNotFound
|
50
58
|
end
|
51
59
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pango
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME Project Team
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cairo-gobject
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 4.0.0
|
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:
|
26
|
+
version: 4.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: gobject-introspection
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 4.0.0
|
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:
|
40
|
+
version: 4.0.0
|
41
41
|
description: Ruby/Pango is a Ruby binding of pango-1.x based on GObject-Introspection.
|
42
42
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
43
43
|
executables: []
|
@@ -88,7 +88,7 @@ metadata:
|
|
88
88
|
mailing_list_uri: https://sourceforge.net/p/ruby-gnome2/mailman/ruby-gnome2-devel-en
|
89
89
|
source_code_uri: https://github.com/ruby-gnome/ruby-gnome/tree/master/pango
|
90
90
|
msys2_mingw_dependencies: pango
|
91
|
-
post_install_message:
|
91
|
+
post_install_message:
|
92
92
|
rdoc_options: []
|
93
93
|
require_paths:
|
94
94
|
- lib
|
@@ -103,8 +103,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
103
|
- !ruby/object:Gem::Version
|
104
104
|
version: '0'
|
105
105
|
requirements: []
|
106
|
-
rubygems_version: 3.
|
107
|
-
signing_key:
|
106
|
+
rubygems_version: 3.4.0.dev
|
107
|
+
signing_key:
|
108
108
|
specification_version: 4
|
109
109
|
summary: Ruby/Pango is a Ruby binding of pango-1.x.
|
110
110
|
test_files: []
|