pango 1.0.3 → 1.1.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.
Files changed (43) hide show
  1. data/ext/pango/extconf.rb +3 -0
  2. data/ext/pango/rbpango.c +312 -12
  3. data/ext/pango/rbpango.h +33 -22
  4. data/ext/pango/rbpangoanalysis.c +98 -58
  5. data/ext/pango/rbpangoattribute.c +94 -85
  6. data/ext/pango/rbpangoattriterator.c +39 -28
  7. data/ext/pango/rbpangoattrlist.c +42 -32
  8. data/ext/pango/rbpangocairo.c +38 -172
  9. data/ext/pango/rbpangocairocontext.c +151 -0
  10. data/ext/pango/rbpangocolor.c +49 -38
  11. data/ext/pango/rbpangocontext.c +109 -102
  12. data/ext/pango/rbpangoconversions.h +111 -0
  13. data/ext/pango/rbpangocoverage.c +45 -37
  14. data/ext/pango/rbpangoengine.c +22 -12
  15. data/ext/pango/rbpangofont.c +52 -43
  16. data/ext/pango/rbpangofontdescription.c +102 -91
  17. data/ext/pango/rbpangofontface.c +32 -21
  18. data/ext/pango/rbpangofontfamily.c +31 -20
  19. data/ext/pango/rbpangofontmap.c +44 -36
  20. data/ext/pango/rbpangofontmetrics.c +41 -30
  21. data/ext/pango/rbpangofontset.c +32 -21
  22. data/ext/pango/rbpangofontsetsimple.c +34 -24
  23. data/ext/pango/rbpangoglyphinfo.c +48 -35
  24. data/ext/pango/rbpangoglyphitem.c +43 -33
  25. data/ext/pango/rbpangoglyphstring.c +59 -59
  26. data/ext/pango/rbpangogravity.c +34 -23
  27. data/ext/pango/rbpangoitem.c +43 -34
  28. data/ext/pango/rbpangolanguage.c +44 -34
  29. data/ext/pango/rbpangolayout.c +167 -160
  30. data/ext/pango/rbpangolayoutiter.c +70 -59
  31. data/ext/pango/rbpangolayoutline.c +106 -71
  32. data/ext/pango/rbpangologattr.c +42 -31
  33. data/ext/pango/rbpangomatrix.c +47 -35
  34. data/ext/pango/rbpangoprivate.h +53 -0
  35. data/ext/pango/rbpangorectangle.c +58 -49
  36. data/ext/pango/rbpangorenderer.c +81 -70
  37. data/ext/pango/rbpangoscript.c +37 -27
  38. data/ext/pango/rbpangoscriptiter.c +32 -22
  39. data/ext/pango/rbpangotabarray.c +48 -37
  40. metadata +12 -12
  41. data/ChangeLog +0 -721
  42. data/ext/pango/rbpangoinits.c +0 -72
  43. data/ext/pango/rbpangomain.c +0 -202
@@ -1,20 +1,31 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
- /************************************************
3
-
4
- rbpangoarray.c -
5
-
6
- $Author: ggc $
7
- $Date: 2007/07/13 16:07:33 $
8
-
9
- Copyright (C) 2002,2003 Masao Mutoh
10
- ************************************************/
11
-
12
- #include "rbpango.h"
13
-
14
- #define _SELF(self) ((PangoTabArray*)RVAL2BOXED(self, PANGO_TYPE_TAB_ARRAY))
2
+ /*
3
+ * Copyright (C) 2011 Ruby-GNOME2 Project Team
4
+ * Copyright (C) 2002,2003 Masao Mutoh
5
+ *
6
+ * This library is free software; you can redistribute it and/or
7
+ * modify it under the terms of the GNU Lesser General Public
8
+ * License as published by the Free Software Foundation; either
9
+ * version 2.1 of the License, or (at your option) any later version.
10
+ *
11
+ * This library is distributed in the hope that it will be useful,
12
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
+ * Lesser General Public License for more details.
15
+ *
16
+ * You should have received a copy of the GNU Lesser General Public
17
+ * License along with this library; if not, write to the Free Software
18
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
+ * MA 02110-1301 USA
20
+ */
21
+
22
+ #include "rbpangoprivate.h"
23
+
24
+ #define RG_TARGET_NAMESPACE cTabArray
25
+ #define _SELF(self) (RVAL2PANGOTABARRAY(self))
15
26
 
16
27
  static VALUE
17
- rtab_initialize(int argc, VALUE *argv, VALUE self)
28
+ rg_initialize(int argc, VALUE *argv, VALUE self)
18
29
  {
19
30
  VALUE size, positions_in_pixels, attr_ary;
20
31
  PangoTabArray *array;
@@ -29,11 +40,11 @@ rtab_initialize(int argc, VALUE *argv, VALUE self)
29
40
  if (! NIL_P(attr_ary)){
30
41
  for (i = 0; i < RARRAY_LEN(attr_ary); i++) {
31
42
  pango_tab_array_set_tab(array, i,
32
- RVAL2GENUM(RARRAY_PTR(RARRAY_PTR(attr_ary)[i])[0], PANGO_TYPE_TAB_ALIGN),
43
+ RVAL2PANGOTABALIGN(RARRAY_PTR(RARRAY_PTR(attr_ary)[i])[0]),
33
44
  FIX2INT(RARRAY_PTR(RARRAY_PTR(attr_ary)[i])[1]));
34
45
  }
35
46
  }
36
-
47
+
37
48
  return Qnil;
38
49
  }
39
50
  /* This is implemented in rtab_initialize.
@@ -45,38 +56,38 @@ PangoTabArray* pango_tab_array_new_with_positions
45
56
  ...);
46
57
  */
47
58
  static VALUE
48
- rtab_get_size(VALUE self)
59
+ rg_size(VALUE self)
49
60
  {
50
61
  return INT2NUM(pango_tab_array_get_size(_SELF(self)));
51
62
  }
52
63
 
53
64
  static VALUE
54
- rtab_resize(VALUE self, VALUE size)
65
+ rg_resize(VALUE self, VALUE size)
55
66
  {
56
67
  pango_tab_array_resize(_SELF(self), NUM2INT(size));
57
68
  return self;
58
69
  }
59
70
 
60
71
  static VALUE
61
- rtab_set_tab(VALUE self, VALUE tab_index, VALUE align, VALUE location)
72
+ rg_set_tab(VALUE self, VALUE tab_index, VALUE align, VALUE location)
62
73
  {
63
- pango_tab_array_set_tab(_SELF(self), NUM2INT(tab_index), RVAL2GENUM(align, PANGO_TYPE_TAB_ALIGN),
74
+ pango_tab_array_set_tab(_SELF(self), NUM2INT(tab_index), RVAL2PANGOTABALIGN(align),
64
75
  NUM2INT(location));
65
76
  return self;
66
77
  }
67
78
 
68
79
  static VALUE
69
- rtab_get_tab(VALUE self, VALUE tab_index)
80
+ rg_get_tab(VALUE self, VALUE tab_index)
70
81
  {
71
82
  PangoTabAlign align;
72
83
  gint location;
73
84
  pango_tab_array_get_tab(_SELF(self), NUM2INT(tab_index),
74
85
  &align, &location);
75
- return rb_ary_new3(2, GENUM2RVAL(align, PANGO_TYPE_TAB_ALIGN), INT2NUM(location));
86
+ return rb_ary_new3(2, PANGOTABALIGN2RVAL(align), INT2NUM(location));
76
87
  }
77
88
 
78
89
  static VALUE
79
- rtab_get_tabs(VALUE self)
90
+ rg_tabs(VALUE self)
80
91
  {
81
92
  PangoTabAlign* aligns;
82
93
  gint* locations;
@@ -87,33 +98,33 @@ rtab_get_tabs(VALUE self)
87
98
  pango_tab_array_get_tabs(tab_array, &aligns, &locations);
88
99
 
89
100
  for (i = 0; i < pango_tab_array_get_size(tab_array); i++){
90
- rb_ary_push(ary, rb_ary_new3(2, GENUM2RVAL(aligns[i], PANGO_TYPE_TAB_ALIGN),
101
+ rb_ary_push(ary, rb_ary_new3(2, PANGOTABALIGN2RVAL(aligns[i]),
91
102
  INT2NUM(locations[i])));
92
103
  }
93
104
  return ary;
94
105
  }
95
106
 
96
107
  static VALUE
97
- rtab_get_positions_in_pixels(VALUE self)
108
+ rg_positions_in_pixels_p(VALUE self)
98
109
  {
99
110
  return CBOOL2RVAL(pango_tab_array_get_positions_in_pixels(_SELF(self)));
100
111
  }
101
112
 
102
113
  void
103
- Init_pango_array()
114
+ Init_pango_array(VALUE mPango)
104
115
  {
105
- VALUE pTabArray = G_DEF_CLASS(PANGO_TYPE_TAB_ARRAY, "TabArray", mPango);
106
- rb_define_method(pTabArray, "initialize", rtab_initialize, -1);
107
- rb_define_method(pTabArray, "size", rtab_get_size, 0);
108
- rb_define_method(pTabArray, "resize", rtab_resize, 1);
109
- rb_define_method(pTabArray, "set_tab", rtab_set_tab, 3);
110
- rb_define_method(pTabArray, "get_tab", rtab_get_tab, 1);
111
- rb_define_method(pTabArray, "tabs", rtab_get_tabs, 0);
112
- rb_define_method(pTabArray, "positions_in_pixels?", rtab_get_positions_in_pixels, 0);
116
+ VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(PANGO_TYPE_TAB_ARRAY, "TabArray", mPango);
117
+ RG_DEF_METHOD(initialize, -1);
118
+ RG_DEF_METHOD(size, 0);
119
+ RG_DEF_METHOD(resize, 1);
120
+ RG_DEF_METHOD(set_tab, 3);
121
+ RG_DEF_METHOD(get_tab, 1);
122
+ RG_DEF_METHOD(tabs, 0);
123
+ RG_DEF_METHOD_P(positions_in_pixels, 0);
113
124
 
114
- G_DEF_SETTERS(pTabArray);
125
+ G_DEF_SETTERS(RG_TARGET_NAMESPACE);
115
126
 
116
127
  /* PangoTabAlign */
117
- G_DEF_CLASS(PANGO_TYPE_TAB_ALIGN, "TabAlign", pTabArray);
118
- G_DEF_CONSTANTS(pTabArray, PANGO_TYPE_TAB_ALIGN, "PANGO_");
128
+ G_DEF_CLASS(PANGO_TYPE_TAB_ALIGN, "TabAlign", RG_TARGET_NAMESPACE);
129
+ G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, PANGO_TYPE_TAB_ALIGN, "PANGO_");
119
130
  }
metadata CHANGED
@@ -1,21 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pango
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
+ - 1
8
9
  - 0
9
- - 3
10
- version: 1.0.3
10
+ version: 1.1.0
11
11
  platform: ruby
12
12
  authors:
13
- - The Ruby-GNOME2 Proejct Team
13
+ - The Ruby-GNOME2 Project Team
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-09-18 00:00:00 Z
18
+ date: 2012-01-05 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: cairo
@@ -41,12 +41,12 @@ dependencies:
41
41
  requirements:
42
42
  - - ">="
43
43
  - !ruby/object:Gem::Version
44
- hash: 17
44
+ hash: 19
45
45
  segments:
46
46
  - 1
47
+ - 1
47
48
  - 0
48
- - 3
49
- version: 1.0.3
49
+ version: 1.1.0
50
50
  type: :runtime
51
51
  version_requirements: *id002
52
52
  description: Ruby/Pango is a Ruby binding of pango-1.x.
@@ -58,7 +58,6 @@ extensions:
58
58
  extra_rdoc_files: []
59
59
 
60
60
  files:
61
- - ChangeLog
62
61
  - README
63
62
  - Rakefile
64
63
  - extconf.rb
@@ -66,15 +65,14 @@ files:
66
65
  - ext/pango/rbpangoglyphstring.c
67
66
  - ext/pango/rbpango.c
68
67
  - ext/pango/rbpangofontmetrics.c
68
+ - ext/pango/rbpangocairocontext.c
69
69
  - ext/pango/rbpangogravity.c
70
70
  - ext/pango/rbpangoattribute.c
71
71
  - ext/pango/rbpangoglyphinfo.c
72
72
  - ext/pango/rbpangoglyphitem.c
73
73
  - ext/pango/rbpangolayout.c
74
74
  - ext/pango/rbpangoattriterator.c
75
- - ext/pango/rbpangoinits.c
76
75
  - ext/pango/rbpangoattrlist.c
77
- - ext/pango/rbpangomain.c
78
76
  - ext/pango/rbpangofontsetsimple.c
79
77
  - ext/pango/rbpangoscript.c
80
78
  - ext/pango/rbpangolanguage.c
@@ -97,8 +95,10 @@ files:
97
95
  - ext/pango/rbpangorectangle.c
98
96
  - ext/pango/rbpangoscriptiter.c
99
97
  - ext/pango/rbpangorenderer.c
98
+ - ext/pango/rbpangoconversions.h
100
99
  - ext/pango/rbpangocairo.c
101
100
  - ext/pango/depend
101
+ - ext/pango/rbpangoprivate.h
102
102
  - ext/pango/rbpangolayoutline.c
103
103
  - ext/pango/rbpangocontext.c
104
104
  - ext/pango/rbpangofontset.c
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  requirements: []
151
151
 
152
152
  rubyforge_project:
153
- rubygems_version: 1.7.2
153
+ rubygems_version: 1.8.12
154
154
  signing_key:
155
155
  specification_version: 3
156
156
  summary: Ruby/Pango is a Ruby binding of pango-1.x.
data/ChangeLog DELETED
@@ -1,721 +0,0 @@
1
- 2011-09-16 Nikolai Weibull <now@bitwi.se>
2
-
3
- * lib/pango.rb: Remove unused variable.
4
-
5
- 2011-09-12 Nikolai Weibull <now@bitwi.se>
6
-
7
- * ext/pango/*.c: Call StringValue() before calling
8
- RSTRING_PTR()/RSTRING_LEN(); also use RSTRING_PTR() instead of
9
- RVAL2CSTR() if StringValue() has already been called on the value.
10
-
11
- 2011-09-09 Nikolai Weibull <now@bitwi.se>
12
-
13
- * ext/pango/*.c: Fix all RVAL2CSTR calls.
14
-
15
- 2011-02-26 Kouhei Sutou <kou@cozmixng.org>
16
-
17
- * ext/pango/extconf.rb: remove needless add_distcleanfile.
18
- Patch by Vincent Carmona. Thanks!!!
19
-
20
- 2011-02-05 Masaaki Aoyagi
21
-
22
- * ext/pango/*.c: change to ANSI C style.
23
-
24
- 2011-02-04 Masaaki Aoyagi
25
-
26
- * ext/pango/rbpangoglyphinfo.c: fix declaration.
27
-
28
- 2011-01-30 Kouhei Sutou <kou@cozmixng.org>
29
-
30
- * Rakefile, ext/pango/extconf.rb: share depended packages
31
- vendor/local/.
32
-
33
- 2011-01-22 Masaaki Aoyagi
34
-
35
- * Rakefile: change to use gnome2-raketask.rb.
36
-
37
- 2010-12-22 Kouhei Sutou <kou@cozmixng.org>
38
-
39
- * ext/pango/rbpangolayoutiter.c (Init_pango_layout_iter):
40
- at_last_line! -> at_last_line? because at_last_line is a predicate
41
- method.
42
- Reported by mrkn. Thanks!!!
43
-
44
- 2010-09-23 Kouhei Sutou <kou@cozmixng.org>
45
-
46
- * Rakefile: don't add .zip into gem.
47
-
48
- * lib/pango.rb: support bundled Windows DLL.
49
-
50
- * test/run-test.rb: fix extension library path.
51
-
52
- 2010-09-21 Kouhei Sutou <kou@cozmixng.org>
53
-
54
- * ./: make buildable by rake-compiler.
55
-
56
- * src/ -> ext/pango/
57
-
58
- * src/lib/: -> lib/
59
-
60
- 2010-02-02 Hiroyuki Ito <ZXB01226@nifty.com>
61
-
62
- * src/rbpangogravity.c (Init_pango_gravity): remove redundant
63
- "void" in the function's parameter.
64
-
65
- 2010-01-17 Hiroyuki Ito <ZXB01226@nifty.com>
66
-
67
- * src/rbpangogravity.c: fix indentation.
68
-
69
- * src/rbpangogravity.c: add Pango::Gravity#vertical?.
70
-
71
- 2010-01-17 Kouhei Sutou <kou@cozmixng.org>
72
-
73
- * src/rbpangoscript.c: Pango::Script#get_gravity doesn't accept
74
- 'wide' argument with Pango < 1.26 because
75
- pango_gravity_get_for_script_and_width() is defined since Pango
76
- 1.26.
77
-
78
- * src/rbpangogravity.c (Init_pango_gravity): don't define
79
- Pango::Gravity on Pango < 1.16 environment.
80
-
81
- * src/rbpangoscript.c: Pango::Script#gravity ->
82
- Pango::Script#get_gravity.
83
-
84
- 2010-01-17 Hiroyuki Ito <ZXB01226@nifty.com>
85
-
86
- * src/rbpangoattribute.c,
87
- src/rbpangocontext.c,
88
- src/rbpangofontdescription.c,
89
- src/rbpangogravity.c,
90
- src/rbpangomatrix.c,
91
- src/rbpangoscript.c: support PangoGravity.
92
-
93
- 2009-05-31 Kouhei Sutou <kou@cozmixng.org>
94
-
95
- * src/lib/pango.rb: use gem version rcairo as fallback.
96
- Patch by OBATA Akio. Thanks!!!
97
-
98
- * src/depend: use RUBYARCHDIR.
99
- Patch by OBATA Akio. Thanks!!!
100
-
101
- 2009-03-07 Kouhei Sutou <kou@cozmixng.org>
102
-
103
- * src/rbpangoattribute.c, test/test-attribute.rb: add
104
- Pango::Attribute#start_index= and Pango::Attribute#end_index=.
105
- Suggested by Geoff Youngs. Thanks!!!
106
-
107
- * src/rbpangolanguage.c, test/test-language.rb: bind
108
- Pango::Language.default.
109
-
110
- * test/run-test.rb: set $VERBOSE.
111
-
112
- 2009-02-23 Kouhei Sutou <kou@cozmixng.org>
113
-
114
- * src/lib/pango.rb: fix indent.
115
-
116
- 2008-11-01 Kouhei Sutou <kou@cozmixng.org>
117
-
118
- * src/: use RARRAY_PTR() and RARRAY_LEN().
119
-
120
- 2008-09-14 Kouhei Sutou <kou@cozmixng.org>
121
-
122
- * src/rbpangofontdescription.c (font_desc_initialize): fix memory leak.
123
-
124
- * src/rbpangolayout.c (layout_copy): fix memory leak.
125
-
126
- * src/rbpangocairo.c (create_layout, font_map_create_context):
127
- fix memory leak.
128
- Reported by James Healy. Thanks!!!
129
-
130
- 2008-09-13 Kouhei Sutou <kou@cozmixng.org>
131
-
132
- * extconf.rb: use check_cairo.
133
-
134
- 2008-08-20 Kouhei Sutou <kou@cozmixng.org>
135
-
136
- * src/rbpangofontdescription.c (font_desc_set_weight): add missing
137
- type declaration for 'wight' argument. [#2059917]
138
- Reported by Blondel Mathieu. Thanks!!!
139
-
140
- 2008-08-09 Kouhei Sutou <kou@cozmixng.org>
141
-
142
- * src/rbpangolayout.c: Pango::Layout#font_description= accepts
143
- font description string too.
144
-
145
- * test/: add.
146
-
147
- 2008-06-11 Kouhei Sutou <kou@cozmixng.org>
148
-
149
- * extconf.rb: include pango/pango.h in have_func test.
150
-
151
- 2008-06-10 Kouhei Sutou <kou@cozmixng.org>
152
-
153
- * src/rbpangolayoutiter.c: use '#ifndef' not '#if !' for -DXXX variable.
154
-
155
- 2008-04-13 Kouhei Sutou <kou@cozmixng.org>
156
-
157
- * extconf.rb: fix rcairo's source path.
158
-
159
- 2008-03-04 Kouhei Sutou <kou@cozmixng.org>
160
-
161
- * extconf.rb, src/rbpango.h, src/rbpangoglyphitem.c:
162
- pango_glyph_item_get_type() was defined in upstream.
163
-
164
- 2008-01-03 Kouhei Sutou <kou@cozmixng.org>
165
-
166
- * src/depend: don't use ftools.
167
- Reported by Carlo E. Prelz. Thanks!!!
168
-
169
- 2007-12-28 Kouhei Sutou <kou@cozmixng.org>
170
-
171
- * src/lib/pango.rb: used implicit to_s instead of '+'.
172
-
173
- * src/rbpangoglyphstring.c, src/rbpangolayout.c: used RSTRING_LEN.
174
-
175
- 2007-08-31 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
176
-
177
- * src/depend: re-supported build in no-source directory.
178
-
179
- 2007-08-13 Kouhei Sutou <kou@cozmixng.org>
180
-
181
- * src/rbpangocairo.c (Pango.cairo_available?): moved from ...
182
- * src/lib/pango.rb: ... here.
183
-
184
- 2007-07-14 Detlef Reichl
185
-
186
- * extconf.rb: Accept the srcdir includes spaces.
187
-
188
- 2007-07-13 Guillaume Cottenceau
189
-
190
- * src/rbpangoattribute.c, src/rbpangofont.c,
191
- src/rbpangofontdescription.c, src/rbpangofontset.c,
192
- src/rbpangoglyphinfo.c, src/rbpangoglyphstring.c,
193
- src/rbpangolayout.c, src/rbpangolayoutline.c, src/rbpangologattr.c,
194
- src/rbpangotabarray.c: replace RTEST uses by RVAL2CBOOL
195
-
196
- 2007-07-13 Guillaume Cottenceau
197
-
198
- * src/rbpangocolor.c: "? Qtrue : QFalse" => CBOOL2RVAL cleanup
199
-
200
- 2007-07-08 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
201
-
202
- * src/*.c: use rb_block_proc() directly instead of using G_BLOCK_PROC().
203
-
204
- 2006-12-26 Masao Mutoh <mutoh@highway.ne.jp>
205
-
206
- * src/rbpangolayoutline.c: Fixed a comipling warning.
207
- * extconf.rb: Work MinGW again.
208
-
209
- 2006-12-11 Masao Mutoh <mutoh@highway.ne.jp>
210
-
211
- * src/rbpangomatrix.c: Add Pango::Matrix#font_scale_factor for Pango-1.2.
212
- * src/rbpangofont*.c: Add ATSUIFont classes for Pango-1.2.
213
-
214
- 2006-12-05 Masao Mutoh <mutoh@highway.ne.jp>
215
-
216
- * src/rbpangoglyphstring.c: Add Pango::GlyphString#width for Pango-1.4.
217
- * src/rbpangofont.c: Pango::Font#describe accept an argument as absolute_size for Pango-1.4.
218
- * src/rbpangocairo.c: Add Cairo#pango_error_underline_path,
219
- #show_pango_error_underline. for Pango-1.4.
220
-
221
- 2006-06-22 Guillaume Cottenceau
222
-
223
- * src/rbpangocontext.c, src/rbpangofont.c, src/rbpangoglyphitem.c,
224
- src/rbpangolayout.c, src/rbpangolayoutiter.c,
225
- src/rbpangorenderer.c, src/rbpangoscript.c: simplify code
226
-
227
- 2006-06-17 Masao Mutoh <mutoh@highway.ne.jp>
228
-
229
- * src/rbpangocontext.c: Pango.itemize: Fix memoryleak.
230
- * sample/*.rb: Code cleanup.
231
-
232
- 2005-11-29 Laurent Sansonetti <lrz@gnome.org>
233
-
234
- * src/rbpangoglyphitem.c: Fixed build error.
235
-
236
- 2005-11-18 Masao Mutoh <mutoh@highway.ne.jp>
237
-
238
- * src/rbpangorenderer.c: Pango::Renderer#matrix= accept nil.
239
- * src/rbpangomatrix.c: Fix to return wrong value of Pango::Matrix#to_a.
240
- * src/rbpangorenderer.c: Pango::Renderer#set_color accept nil.
241
- Pango::Renderer#activate accept block.
242
-
243
- 2005-11-17 Masao Mutoh <mutoh@highway.ne.jp>
244
-
245
- * src/rbpangoattribute.c: Fix wrong argument of Pango::Attribute.type_register.
246
- Added Pango::AttrAbsoluteSize and Pango::AttrSize removed second parameter.
247
-
248
- 2005-11-12 Masao Mutoh <mutoh@highway.ne.jp>
249
-
250
- * src/rbpangolayout.c: Added Pango::Layout#markup=.
251
- Pango::Layout#tabs: Fix memory leak.
252
- * src/rbpangocontext.c: Pango::Context#get_metrics: 2nd parameter is omittable.
253
- Pango::Context#families: Fix memory leak.
254
-
255
- 2005-10-16 Masao Mutoh <mutoh@highway.ne.jp>
256
-
257
- * README: Added cairo/rcairo information.
258
- * src/lib/pango.rb: Rewrited a code which creates convinient constants
259
- to Pango module to avoid to make unexpect values and works Ruby-1.6.
260
-
261
- 2005-10-15 Masao Mutoh <mutoh@highway.ne.jp>
262
-
263
- * src/lib/pango.rb: Fixed to work under Ruby-1.6.
264
- * sample/pango_cairo.rb: Rename cairo.rb to pango_cairo.rb.
265
- * src/rbpangolayoutline.c, rbpangoengine.c:
266
- Fix compiling problem on Pango-1.1.
267
- * src/lib/pango.rb: Added Pango.cairo_available?.
268
- * sample/glyphstring.rb: Added.
269
- * src/rbpangofontmap.c: Removed the definition of PangoCairoFontMap.
270
- (It's defined at src/rbpangocairo.c now).
271
-
272
- 2005-10-13 Masao Mutoh <mutoh@highway.ne.jp>
273
-
274
- * src/rbpangofontset.c, rbpangofontsetsimple.c,
275
- src/lib/pango.rb: Rename FontSet to Fontset.
276
-
277
- 2005-10-14 Kouhei Sutou <kou@cozmixng.org>
278
-
279
- * src/rbpangocairo.c: Added 'pango_' prefix.
280
-
281
- * sample/cairo.rb: Added sample using cairo.
282
-
283
- * src/rbpangocairo.c: Pango::CairoFontMap.new ->
284
- Pango::CairoFontMap.create because Pango::CairoFontMap is Module.
285
-
286
- 2005-10-08 Kouhei Sutou <kou@cozmixng.org>
287
-
288
- * src/rbpangocontext.c
289
- (rcontext_set_font_options, rcontext_get_font_options): Added
290
- NULL/nil check.
291
-
292
- 2005-10-08 Masao Mutoh <mutoh@highway.ne.jp>
293
-
294
- * src/makeversion.rb: Removed. Use make_version_header() of
295
- Ruby/GLib.
296
- * extconf.rb: Follow above change.
297
-
298
- 2005-10-07 Masao Mutoh <mutoh@highway.ne.jp>
299
-
300
- * extconf.rb: Fix a compilation error on Win32 and Ruby/Cairo.
301
-
302
- 2005-10-05 Kouhei Sutou <kou@cozmixng.org>
303
-
304
- * extconf.rb: Added Cairo check.
305
-
306
- * src/rbpango.h: Include Cairo related headers.
307
-
308
- * src/rbpangocontext.c: Added 1.10 API.
309
-
310
- * src/rbpangocairo.c: Added.
311
-
312
- * src/lib/pango.rb: Require 'cairo'.
313
-
314
- 2005-10-02 Masao Mutoh <mutoh@highway.ne.jp>
315
-
316
- * src/rbpangomain.c: Raises RuntimeError if 1st argument is nil.
317
-
318
- 2005-09-29 Masao Mutoh <mutoh@highway.ne.jp>
319
-
320
- * src/rbpango.c: Renamed Pango::VERSION to Pango::BUILD_VERSION.
321
- Removed Pango::(MAJOR|MINOR|MICRO)_VERSION.
322
-
323
- 2005-09-18 Masao Mutoh <mutoh@highway.ne.jp>
324
-
325
- * src/rbpangoitem.c: Check pango version for pango_item_get_type().
326
- * src/rbpangolayoutline.c: ditto.
327
-
328
- 2005-09-17 Masao Mutoh <mutoh@highway.ne.jp>
329
-
330
- * src/rbpangoengine.c: Added (class names only, Pango::Engine,
331
- Pango::EngineShape, Pango::EngineLang).
332
- * src/rbpangoanalysis.c: Fix problems not to show correct class names
333
- of Pango::Analysis#shape_engine, #lang_engine.
334
- * src/rbpangolayoutline.c: Fix a segfault of Pango::LayoutLine#runs.
335
- * src/rbpangolayoutiter.c: Fix a bug of Pango::LayoutIter#line.
336
- * sample/script.rb, break.rb, item.rb, layout.rb: Added.
337
-
338
- 2005-09-16 Masao Mutoh <mutoh@highway.ne.jp>
339
-
340
- * src/rbpangoscriptiter.c: Added Pango::ScriptIter for Pango-1.4.
341
- * src/rbpangoscript.c: Added Pango::Script for Pango-1.4.
342
- * src/rbpangolanguage.c: Added Pango::Language#includes_script.
343
- * src/rbpangofontmap.c:
344
- Added Pango::(FT2|X|Win32|Cairo|CairoFc|CairoWin32)FontMap.
345
- * src/rbpangofontface.c: Added Pango::(Fc|FT2|Xft|X|Win32)Face.
346
- * src/rbpangofontfamily.c: Added Pango::(X|FT2|Win32)Family.
347
- * src/rbpangofont.c: Added Pango::Font#font_map for Pango-1.9.
348
- Supports Pango::CairoFcFont, Pango::CairoFont, Pango::CairoWin32Font
349
- for Pango-1.10.
350
- Added Pango::XFont, Pango::FT2Font.
351
- * src/rbpangoglyphitem.c: Added Pango::GlyphItem#split, #apply_attrs,
352
- #letter_space.
353
- * src/rbpangoglyphstring.c: Added Pango::GlyphString#extents, #index_to_x,
354
- #x_to_index, #get_logical_widths, #glyphs.
355
- * src/rbpangocontext.c: Pango::Context#list_families is deprecated.
356
- Use Pango::Context#families instead.
357
-
358
- 2005-09-16 Kouhei Sutou <kou@cozmixng.org>
359
-
360
- * src/lib/pango.rb (Pango): Don't make aliases for:
361
- - Pango::AttrXXX::TYPE_* -> Pango::XXX_*
362
-
363
- 2005-09-15 Masao Mutoh <mutoh@highway.ne.jp>
364
-
365
- * src/makeversion.rb: Added copyright to the header.
366
-
367
- 2005-09-08 Kouhei Sutou <kou@cozmixng.org>
368
-
369
- * src/lib/pango.rb (Pango): Add convenient aliases.
370
- - Pango::Attribute::* -> Pango::ATTRIBUTE_*
371
- - Pango::Coverage::* -> Pango::COVERAGE_*
372
- - Pango::AttrXXX::TYPE_* -> Pango::XXX_*
373
- - Pango::AttrXXX::* -> Pango::XXX_*
374
- - Pango::XXX::* -> Pango::*
375
-
376
- * src/rbpangolayoutline.c: Use original
377
- pango_layout_line_get_type() if available.
378
- (layout_line_copy): Don't use g_new().
379
-
380
- * src/rbpangolayout.c (layout_get_line): Removed NULL check
381
- because BOXED2RVAL() does.
382
-
383
- 2005-09-06 Kouhei Sutou <kou@cozmixng.org>
384
-
385
- * src/rbpangolayout.c (layout_get_line): Return nil if line is out
386
- of range.
387
-
388
- 2005-08-28 Guillaume Cottenceau
389
-
390
- * src/rbpango.h: compile without warning with a recent pango by not
391
- redefining PANGO_TYPE_ITEM and PANGO_TYPE_LAYOUT_LINE if they are
392
- already defined
393
-
394
- 2005-07-30 Masao Mutoh <mutoh@highway.ne.jp>
395
-
396
- * src/rbpangolayout.c (layout_get_font_description,
397
- layout_set_tabs):
398
- Fix type declarations.
399
-
400
- 2005-07-24 Masao Mutoh <mutoh@highway.ne.jp>
401
-
402
- * src/rbpangolayoutiter.c: Fix for pango-1.4.x. Reported by Noritsugu Nakamura.
403
- * extconf.rb src/rbpangofontfamily.c: Fix for pango-1.2.x.
404
- * extconf.rb, src/rbpangoattriterator.: Fix to work on pango-1.1.x.
405
-
406
- 2005-07-23 Masao Mutoh <mutoh@highway.ne.jp>
407
-
408
- * src/rbpangocoverage.c: Fix a compiling warning.
409
-
410
- 2005-04-15 Pascal Terjan <pterjan@linuxfr.org>
411
-
412
- * src/rbpangolayoutline.c: Fixed a warning of Pango::LayoutLine#set_runs.
413
-
414
- 2005-03-22 Mirko Maischberger <mirko@lilik.it>
415
-
416
- * sample/parse.rb: sh-bang (!#) normalization.
417
- Reported by Mezz
418
-
419
- 2005-03-06 Masao Mutoh <mutoh@highway.ne.jp>
420
-
421
- * src/rbpangoglyphitem.c, src/rbpangocontext.c, rbpangofontfamily.c,
422
- rbpangoattrlist.c: Fix compiling errors on pango-1.1.x.
423
- * extconf.rb, src/rbpangoglyphitem.c, rbpangomain.c,
424
- rbpangologattr.c, rbpangolayoutline.c, rbpangolayoutiter.c,
425
- rbpangolayout.c, rbpangoanalysis.c, rbpangoattribute.c:
426
- Fix compiling errors on pango-1.2.x.
427
- * README: Revised.
428
-
429
- 2005-02-17 Masao Mutoh <mutoh@highway.ne.jp>
430
-
431
- * extconf.rb, src/rbpangoattribute.c: Fix a compiling problem on
432
- MSVC++/pango-1.8.0.
433
-
434
- 2005-02-15 Masao Mutoh <mutoh@highway.ne.jp>
435
-
436
- * src/rbpangolayoutline.c: Added Pango::LayoutLine#extents, #pixel_extents
437
- #get_x_ranges. Added the accessors.
438
- * src/rbpangolayoutiter.c: Added Pango::LayoutIter#line, #char_extents,
439
- #cluster_extents, #run_extents, #line_extents, #layout_extents
440
- #run.
441
- * src/rbpangoglyphitem.c: Added.
442
- * src/rbpangoglyphinfo.c: Fix a bug of Pango::GlyphInfo#set_glyph.
443
- * src/rbpangotabarray.c: Added a comment.
444
-
445
- 2005-02-13 Masao Mutoh <mutoh@highway.ne.jp>
446
-
447
- * src/rbpangolayout.c: Added Pango::Layout#log_attrs.
448
- * src/rbpangorectangle.c: Added Pango::Rectangle#ascent, #descent,
449
- #lbearing, #rbearing.
450
- * src/rbpangoattriterator.c: Added Pango::AttrIterator#attrs.
451
- * src/rbpangoattrlist.c: Added Pango::AttrList#filter.
452
- * src/rbpangofontset.c: Added Pango::FontSet#each for Pango-1.4.
453
- * src/rbpangofontmap.c: Rename Pango::FontMap#list_families to
454
- #families. Added #shape_engine_type. Added Pango::FcFontMap, XftFontMap.
455
- * src/rbpangofontface.c: Added Pango::FontFace#sizes.
456
- * src/rbpangofontfamily.c: Added Pango::FontFamily#monospace?.
457
- Rename Pango::FontFamily#list_faces to #faces.
458
- * src/rbpangofontmetrics.c: Added underline_(thickness|position),
459
- strikethrough_(thickness|position).
460
- * src/rbpangofontdescription.c: Added Pango::FontDescription#set_absolute_size,
461
- #size_is_absolute? for Pango-1.8.x.
462
- * src/rbpango.h: Added some type macros. Define PANGO_ENABLE_(ENGINE|BACKEND).
463
- * src/rbpangofont.c: Added Pango::Font#get_coverage, #get_glyph_extents.
464
- Added Pango::FcFont, Pango::XftFont.
465
- * src/rbpangocoverage.c: Added.
466
- * src/rbpangoanalysis.c: Added Pango::Analysis#set_extra_attrs,
467
- #extra_attrs.
468
- * sample/attribute.rb: Follow Ruby/GTK changes.
469
- * src/rbpangoitem.c: Added Pango::Item#offset, #set_offset, #length,
470
- #set_length, #num_chars, #set_num_chars, #analysis, #set_analysis.
471
- * src/rbpangologattr.c: Added Pango::LogAttr#backspace_deletes_character?,
472
- #set_backspace_deletes_characer.
473
- * src/rbpangoattribute.c: Pango::AttrSize.new supports Pango-1.8.
474
- Added Pango::AttrStrikethroughColor, Panog::AttrUnderlineColor,
475
- Pango::AttrFallback, Pango::AttrLetterSpacing
476
- * src/rbpangomain.c: Added Pango.reorder_items, .unichar_direction,
477
- .find_base_dir, .shape, .break, .get_log_attrs.
478
- * src/rbpangoitem.c: Fix a wrong argument.
479
-
480
- 2005-02-12 Masao Mutoh <mutoh@highway.ne.jp>
481
-
482
- * src/rbpangolayout.c: Added Pango::Layout#(get_)extents,
483
- #(get)_pixel_extents.
484
-
485
- 2005-02-11 Masao Mutoh <mutoh@highway.ne.jp>
486
-
487
- * src/rbpangomatrix.c: Added accessors for xx, xy, yx, yy, x0, y0.
488
- Added #to_a.
489
- * src/rbpangoattribute.c: Fix a segfault.
490
- Make a subclass of Data instead of GLib::Boxed.
491
-
492
- 2005-02-08 Masao Mutoh <mutoh@highway.ne.jp>
493
-
494
- * src/rbpangocontext.c: Added Pango::Context#itemize.
495
- * src/rbpangoattrlist.c: Fix wrong argument number of
496
- Pango::AttrList.new.
497
-
498
- 2005-01-30 Masao Mutoh <mutoh@highway.ne.jp>
499
-
500
- * src/rbpangocontext.c: Added Pango::Context#font_map,
501
- #matrix, #set_matrix for Pango-1.6.x.
502
- * extconf.rb: Follow mkmf-gnome2.rb changes.
503
-
504
- 2005-01-29 Masao Mutoh <mutoh@highway.ne.jp>
505
-
506
- * src/rbpangorenderer.c: Fix compiling error on MSVC++/Pango-1.8.0.
507
- #Is it a bug of Pango-1.8.0?
508
- * src/rbpangoattribute.c: Fix compiling error on MSVC++.
509
-
510
- 2005-01-28 Masao Mutoh <mutoh@highway.ne.jp>
511
-
512
- * src/rbpangomatrix.c: Added Pango::Matrix for Pango-1.6.
513
- * src/rbpangorenderer.c: Added Pango::Renderer for Pango-1.8.
514
- * src/depend: Added rbpangoversion.h
515
- * src/makeversion.rb: Added. Create rbpangoversion.h which defines
516
- pango version as constants detected from pkg-config.
517
- * extconf.rb: Call makeversion.rb.
518
- * src/rbpango.h: Include rbpangoversion.h.
519
-
520
- 2005-01-23 Masao Mutoh <mutoh@highway.ne.jp>
521
-
522
- * extconf.rb, src/rbpangolayout.c: Fix to compile under older pango.
523
- (Define HAVE_PANGO_LAYOUT_GET_FONT_DESCRIPTION).
524
- Reported by Vincent Isambart.
525
-
526
- 2005-01-10 Masao Mutoh <mutoh@highway.ne.jp>
527
-
528
- * src/rbpangolayout.c: Added Pango#font_description,
529
- #set_auto_dir, #auto_dir?, #lines.
530
- Added Pango::Layout#set_ellipsize, #ellipsize,
531
- Pango::Layout::EllipsizeMode for Pango-1.6.x.
532
-
533
- 2004-11-14 Masao Mutoh <mutoh@highway.ne.jp>
534
-
535
- * src/lib/pango.rb: Works ruby-1.6.x again.
536
-
537
- 2004-11-06 Geoff Youngs <g@intersect-uk.co.uk>
538
-
539
- * src/rbpangoitem.c: Pango::Item#split
540
- Fix method registration (2 parameters, not 0)
541
-
542
- 2004-10-28 Masao Mutoh <mutoh@highway.ne.jp>
543
-
544
- * src/rbpango.h, rbpangolayoutiter.c: Fix compiling warning under
545
- pango-1.6.x.
546
-
547
- 2004-10-17 Vincent Isambart <isambart@netcourrier.com>
548
-
549
- * extconf.rb: Changed add_uniq_to_objs to add_obj.
550
-
551
- 2004-10-17 Vincent Isambart <isambart@netcourrier.com>
552
-
553
- * extconf.rb: Fixed a bug under ruby-1.9.
554
-
555
- 2004-03-29 Masao Mutoh <mutoh@highway.ne.jp>
556
-
557
- * extconf.rb: Fix a bug under ruby-1.6.x.
558
-
559
- 2004-03-28 Masao Mutoh <mutoh@highway.ne.jp>
560
-
561
- * src/rbpangomain.c: Fix a memory leak of Pango.parse_markup.
562
- Reported by Joao Pedrosa
563
-
564
- 2004-03-14 Masao Mutoh <mutoh@highway.ne.jp>
565
-
566
- * extconf.rb: Remove src/rbpangoinits.c when run "make distclean".
567
-
568
- 2003-12-02 Masao Mutoh <mutoh@highway.ne.jp>
569
-
570
- * src/rbpango.h: Remove definition of CBOOL2RVAL(merged to Ruby/GLib).
571
-
572
- 2003-11-10 Masao Mutoh <mutoh@highway.ne.jp>
573
-
574
- * src/rbpangologattr.c, src/rbpangoanalysis.c: Added.
575
-
576
- 2003-11-08 Masao Mutoh <mutoh@highway.ne.jp>
577
-
578
- * src/depend: Added.
579
-
580
- 2003-10-07 Masao Mutoh <mutoh@highway.ne.jp>
581
-
582
- * src/rbpangoattribute.c: Remove debug code.
583
-
584
- 2003-09-11 Masao Mutoh <mutoh@highway.ne.jp>
585
-
586
- * src/rbpangolayout.c: Add Pango::Layout#index_to_pos, get_cursor_pos.
587
- Move Pango::Layout#line to Pango::Layout#get_line.
588
-
589
- 2003-09-01 Masao Mutoh <mutoh@highway.ne.jp>
590
-
591
- * src/rbpangocontext.c, rbpangofontdescription.c, rbpangotabarray.c
592
- rbpangoattribute.c, rbpangolayout.c: Apply enum/flags.
593
- * sample/attribute.rb: ditto.
594
- * sample/gdk_layout.rb: Fix warning for ruby-1.8.x.
595
-
596
- 2003-08-30 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
597
-
598
- * extconf.rb: add set_output_lib call.
599
-
600
- * extconf.rb: fix to allow building in a foreign directory.
601
-
602
- 2003-08-28 Masao Mutoh <mutoh@highway.ne.jp>
603
-
604
- * extconf.rb: Exit with 1 when the package is not found.
605
-
606
- 2003-08-21 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
607
-
608
- * rbpangofontdescription.c: new method Pango::FontDescription#to_s
609
- (alias to Pango::FontDescription#to_str).
610
-
611
- * src/*.c: define enum/flags classes.
612
-
613
- 2003-08-17 Vincent Isambart <vincent.isambart@laposte.net>
614
-
615
- * src/rbpangofont.c: Pango::Font#metrics accept no parameter.
616
-
617
- 2003-08-16 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
618
-
619
- * src/rbpangolanguage.c: implement Pango::Language#to_s
620
-
621
- * src/rbpangolanguage.c (language_to_str): use
622
- pango_language_to_string()
623
-
624
- * src/rbpangofontmap.c: implment Pango::FontMap#list_families
625
-
626
- * src/rbpangofontfamily.c: implement Pango::FontFamily#list_faces
627
-
628
- * src/pango/rbpangocontext.c: implement Pango::Context#list_families
629
-
630
- * src/pango/rbpangofont.c: fix Pango::Font.metrics
631
-
632
- 2003-08-15 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
633
-
634
- * src/*: use G_DEF_CONSTANTS() for defining enum/flags constants.
635
-
636
- 2003-05-27 Masao Mutoh <mutoh@highway.ne.jp>
637
-
638
- * extconf.rb: Follow mkmf-gnome2.rb position changes.
639
-
640
- 2003-04-05 Masao Mutoh <mutoh@highway.ne.jp>
641
-
642
- * src/rbpangoattribute.c: Move Pango::Attribute::UNDERLINE_...
643
- to Pango::AttrUnderline::...
644
- Move Pango::Attribute::SCALE_... to Pango::AttrScale::...
645
- * sample/attribute.rb: Move Pango::Attribute::UNDERLINE_...
646
- to Pango::AttrUnderline::...
647
-
648
- 2003-03-19 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
649
-
650
- * src/pango.def: Add a file
651
-
652
- 2003-03-08 Masao Mutoh <mutoh@highway.ne.jp>
653
-
654
- * src/rbpangomain.c: Add Pango.pixels
655
-
656
- 2003-03-07 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
657
-
658
- * extconf.rb: append "-DRUBY_PANGO_COMPILATION" to $defs.
659
- * src/rbpango.h: define RUBY_PANGO_VAR macro for exporting variables
660
- on some win32 platforms.
661
-
662
- 2003-02-14 Masahiro Sakai <sakai@tom.sfc.keio.ac.jp>
663
-
664
- * extconf.rb: Use ../mkmf-gnome2.rb
665
-
666
- 2003-02-10 Masao Mutoh <mutoh@highway.ne.jp>
667
-
668
- * README: Revise documents.
669
- Pointed out by Jeremy Henty <jeremy@chaos.org.uk>
670
-
671
- 2003-02-09 Masao Mutoh <mutoh@highway.ne.jp>
672
-
673
- * sample/*.rb: Fix to work under Ruby-1.6.x.
674
-
675
- 2003-02-02 Geoff Youngs <g@intersect-uk.co.uk>
676
-
677
- * src/rbpangolayout.c: Fix a couple of the returned arrays in Pango::Layout
678
- used the wrong macros (ie. NUM2INT instead of INT2NUM)
679
- * src/rbpangomain.c: Add Pango::SCALE.
680
-
681
- 2003-02-02 Masao Mutoh <mutoh@highway.ne.jp>
682
-
683
- * sample/gdk_layout.rb: Add a file.
684
- * src/rbpangofontmap.c: Comment out test code.
685
- * All files: Update copyright.
686
-
687
- 2003-01-29 Masao Mutoh <mutoh@highway.ne.jp>
688
-
689
- * src/rbpangocontext.c: Fix segfault when Pango::Context#layout, #font_description
690
- are return NULL.
691
- * src/rbpangolayout.c: Fix wrong arguments of Pango::Layout#set_mark.
692
-
693
- 2003-01-11 Masao Mutoh <mutoh@highway.ne.jp>
694
-
695
- * sample/attribute.rb: Add a file.
696
- * src/rbpangocolor.c: Add accessor for the struct PangoColor.
697
- * src/rbpangofontdescription.c: Remove Pango::FontDescription#to_s.
698
- * src/rbpangoattribute.c: Improve Gtk::Attribute and children. Add initialize methods.
699
- * src/rbpangolanguage.c: Add Pango::Language#to_str.
700
-
701
- 2003-01-04 Masao Mutoh <mutoh@highway.ne.jp>
702
-
703
- * src/rbpango.h, src/rbpangoattribute.c:
704
- Add RBPANGO_ADD_ATTRIBUTE for other libs(rbgdkpango.c).
705
- Add extern declaration for accessing to pattr, pattrstring,
706
- pattrint, pattrfloat, pattrcolor.
707
-
708
- 2003-01-03 Masao Mutoh <mutoh@highway.ne.jp>
709
-
710
- * src/rbpangoattribute.c: Add accessor methods to attributes.
711
- * src/rbpango.c: Add Pango.parse_markup.
712
- * src/rbpango.h: Add a file.
713
- * src/rbpangoinits.c: Remove a file. This file is auto-generated.
714
- * src/rbpangomain.c: Add Pango.parse_markup.
715
- * src/lib/pango.rb: Add AttrList#each.
716
- * sample/label.rb, parse.rb, sample.txt: Add files.
717
-
718
- 2002-12-31 Masao Mutoh <mutoh@highway.ne.jp>
719
-
720
- * Initial import.
721
-