clutter-gtk 2.0.2-x86-mingw32 → 2.0.3-x86-mingw32
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 +7 -0
- data/Rakefile +1 -0
- data/lib/clutter-gtk.rb +1 -1
- data/test/run-test.rb +27 -4
- data/test/test-clutter-gtk-embed.rb +21 -0
- data/vendor/local/bin/libclutter-gtk-1.0-0.dll +0 -0
- data/vendor/local/lib/girepository-1.0/GtkClutter-1.0.typelib +0 -0
- data/vendor/local/lib/libclutter-gtk-1.0.dll.a +0 -0
- data/vendor/local/lib/libclutter-gtk-1.0.la +2 -2
- data/vendor/local/share/gir-1.0/GtkClutter-1.0.gir +70 -70
- metadata +15 -23
- data/vendor/local/lib/libclutter-gtk-1.0.a +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 38bc7ab671b5ad03a9c0194b6c023eb6e56060ee
|
4
|
+
data.tar.gz: 3b5aad4ec47e77812a1bacb438387be0ebff6ecc
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9ddbde0e6cb0e900416bb3eec860c3258ad8b3c95ee5ac30732d6d7a5055f7d0851564e15a8d659d2506f880d13b0889845844aefaebb521a6a92be6592dbc77
|
7
|
+
data.tar.gz: 09e15ae829dda7f0f942d989bba851cc8c5a6182c320b4028d18f18d75a16b1a1611efaab4f7e50cd49103f6e9eea5166ea62aec2631179c13c3953a92e0cf60
|
data/Rakefile
CHANGED
data/lib/clutter-gtk.rb
CHANGED
@@ -65,7 +65,7 @@ module ClutterGtk
|
|
65
65
|
1 + @init_arguments.size,
|
66
66
|
[$0] + @init_arguments,
|
67
67
|
]
|
68
|
-
error, argc, argv = init.invoke(arguments)
|
68
|
+
error, argc, argv = init.invoke(:arguments => arguments)
|
69
69
|
@init_arguments.replace(argv)
|
70
70
|
if error.to_i <= 0
|
71
71
|
raise InitError, "failed to initialize Clutter: #{error.name}"
|
data/test/run-test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
#
|
3
|
-
# Copyright (C) 2012 Ruby-GNOME2 Project Team
|
3
|
+
# Copyright (C) 2012-2013 Ruby-GNOME2 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
|
@@ -16,20 +16,36 @@
|
|
16
16
|
# License along with this library; if not, write to the Free Software
|
17
17
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
18
|
|
19
|
+
have_make = system("which make > /dev/null")
|
20
|
+
|
19
21
|
ruby_gnome2_base = File.join(File.dirname(__FILE__), "..", "..")
|
20
22
|
ruby_gnome2_base = File.expand_path(ruby_gnome2_base)
|
21
23
|
|
22
24
|
glib_base = File.join(ruby_gnome2_base, "glib2")
|
25
|
+
atk_base = File.join(ruby_gnome2_base, "atk")
|
26
|
+
pango_base = File.join(ruby_gnome2_base, "pango")
|
27
|
+
gdk_pixbuf_base = File.join(ruby_gnome2_base, "gdk_pixbuf2")
|
28
|
+
cairo_gobject_base = File.join(ruby_gnome2_base, "cairo-gobject")
|
23
29
|
gobject_introspection_base = File.join(ruby_gnome2_base, "gobject-introspection")
|
24
30
|
clutter_base = File.join(ruby_gnome2_base, "clutter")
|
31
|
+
gdk3_base = File.join(ruby_gnome2_base, "gdk3")
|
32
|
+
gtk3_base = File.join(ruby_gnome2_base, "gtk3")
|
33
|
+
clutter_gtk_base = File.join(ruby_gnome2_base, "clutter-gtk")
|
25
34
|
|
26
35
|
modules = [
|
27
36
|
[glib_base, "glib2"],
|
37
|
+
[atk_base, "atk"],
|
38
|
+
[pango_base, "pango"],
|
39
|
+
[gdk_pixbuf_base, "gdk_pixbuf2"],
|
40
|
+
[cairo_gobject_base, "cairo-gobject"],
|
28
41
|
[gobject_introspection_base, "gobject-introspection"],
|
29
42
|
[clutter_base, "clutter"],
|
43
|
+
[gdk3_base, "gdk3"],
|
44
|
+
[gtk3_base, "gtk3"],
|
45
|
+
[clutter_gtk_base, "clutter-gtk"],
|
30
46
|
]
|
31
47
|
modules.each do |target, module_name|
|
32
|
-
if
|
48
|
+
if File.exist?(File.join(target, "Makefile")) and have_make
|
33
49
|
`make -C #{target.dump} > /dev/null` or exit(false)
|
34
50
|
end
|
35
51
|
$LOAD_PATH.unshift(File.join(target, "ext", module_name))
|
@@ -39,12 +55,19 @@ end
|
|
39
55
|
$LOAD_PATH.unshift(File.join(glib_base, "test"))
|
40
56
|
require "glib-test-init"
|
41
57
|
|
58
|
+
$VERBOSE = false # TODO: remove me
|
59
|
+
|
42
60
|
$LOAD_PATH.unshift(File.join(gobject_introspection_base, "test"))
|
43
61
|
require "gobject-introspection-test-utils"
|
44
62
|
|
45
63
|
$LOAD_PATH.unshift(File.join(clutter_base, "test"))
|
46
64
|
require "clutter-test-utils"
|
47
65
|
|
48
|
-
|
66
|
+
$LOAD_PATH.unshift(File.join(clutter_gtk_base, "test"))
|
67
|
+
require "clutter-gtk-test-utils"
|
68
|
+
|
69
|
+
require "clutter-gtk"
|
49
70
|
|
50
|
-
|
71
|
+
# exclude sample/test-*
|
72
|
+
clutter_gtk_test_base = File.join(clutter_gtk_base, "test")
|
73
|
+
exit Test::Unit::AutoRunner.run(true, clutter_gtk_test_base)
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Copyright (C) 2013 Ruby-GNOME2 Project Team
|
2
|
+
#
|
3
|
+
# This library is free software; you can redistribute it and/or
|
4
|
+
# modify it under the terms of the GNU Lesser General Public
|
5
|
+
# License as published by the Free Software Foundation; either
|
6
|
+
# version 2.1 of the License, or (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This library is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
11
|
+
# Lesser General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU Lesser General Public
|
14
|
+
# License along with this library; if not, write to the Free Software
|
15
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
|
+
|
17
|
+
class ClutterGtkEmbedTest < Test::Unit::TestCase
|
18
|
+
def test_new
|
19
|
+
assert_not_nil(ClutterGtk::Embed.new)
|
20
|
+
end
|
21
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
@@ -14,10 +14,10 @@ library_names='libclutter-gtk-1.0.dll.a'
|
|
14
14
|
old_library=''
|
15
15
|
|
16
16
|
# Linker flags that can not go in dependency_libs.
|
17
|
-
inherited_linker_flags=''
|
17
|
+
inherited_linker_flags=' -pthread'
|
18
18
|
|
19
19
|
# Libraries that this one depends upon.
|
20
|
-
dependency_libs=' -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/rcairo.win32/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter-gtk/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gdk3/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libclutter-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-pango.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libjson-glib-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl.la -lopengl32 /home/kou/work/ruby/ruby-gnome2.win32/gdk3/vendor/local/lib/libgtk-3.la -lcomdlg32 -lwinspool -lcomctl32 /home/kou/work/ruby/ruby-gnome2.win32/gdk3/vendor/local/lib/libgdk-3.la -limm32 -lshell32 /home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib/libatk-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangocairo-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib/libgdk_pixbuf-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgio-2.0.la -ldnsapi /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo-gobject.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangoft2-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libharfbuzz.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangowin32-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpango-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgmodule-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgthread-2.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpixman-1.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfontconfig.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libxml2.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfreetype.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpng16.la -lgdi32 -lmsimg32 -lz /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la -lffi /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libglib-2.0.la -lws2_32 -lole32 -lwinmm -lshlwapi -lintl'
|
20
|
+
dependency_libs=' -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/rcairo.win32/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter-gtk/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/gdk3/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libclutter-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-pango.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libjson-glib-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl.la -lopengl32 /home/kou/work/ruby/ruby-gnome2.win32/gdk3/vendor/local/lib/libgtk-3.la -lcomdlg32 -lwinspool -lcomctl32 /home/kou/work/ruby/ruby-gnome2.win32/gdk3/vendor/local/lib/libgdk-3.la -limm32 -lshell32 /home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib/libatk-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangocairo-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib/libgdk_pixbuf-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgio-2.0.la -ldnsapi -liphlpapi /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo-gobject.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangoft2-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libharfbuzz.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpangowin32-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/pango/vendor/local/lib/libpango-1.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgmodule-2.0.la /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgthread-2.0.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libcairo.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpixman-1.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfontconfig.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libxml2.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libfreetype.la /home/kou/work/ruby/rcairo.win32/vendor/local/lib/libpng16.la -lgdi32 -lmsimg32 -lz /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la -lffi /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libglib-2.0.la -lws2_32 -lole32 -lwinmm -lshlwapi -lintl'
|
21
21
|
|
22
22
|
# Names of additional weak libraries provided by this library
|
23
23
|
weak_library_names=''
|
@@ -22,25 +22,25 @@ and/or use gtk-doc annotations. -->
|
|
22
22
|
glib:type-name="GtkClutterActor"
|
23
23
|
glib:get-type="gtk_clutter_actor_get_type"
|
24
24
|
glib:type-struct="ActorClass">
|
25
|
-
<doc xml:
|
25
|
+
<doc xml:space="preserve">A ClutterActor containing a #GtkWidget.</doc>
|
26
26
|
<implements name="Atk.ImplementorIface"/>
|
27
27
|
<implements name="Clutter.Animatable"/>
|
28
28
|
<implements name="Clutter.Container"/>
|
29
29
|
<implements name="Clutter.Scriptable"/>
|
30
30
|
<constructor name="new" c:identifier="gtk_clutter_actor_new">
|
31
|
-
<doc xml:
|
31
|
+
<doc xml:space="preserve">Creates a new #GtkClutterActor.
|
32
32
|
|
33
33
|
This widget can be used to embed a #GtkWidget into a Clutter scene,
|
34
34
|
by retrieving the internal #GtkBin container using
|
35
35
|
gtk_clutter_actor_get_widget() and adding the #GtkWidget to it.</doc>
|
36
36
|
<return-value transfer-ownership="none">
|
37
|
-
<doc xml:
|
37
|
+
<doc xml:space="preserve">the newly created #GtkClutterActor</doc>
|
38
38
|
<type name="Clutter.Actor" c:type="ClutterActor*"/>
|
39
39
|
</return-value>
|
40
40
|
</constructor>
|
41
41
|
<constructor name="new_with_contents"
|
42
42
|
c:identifier="gtk_clutter_actor_new_with_contents">
|
43
|
-
<doc xml:
|
43
|
+
<doc xml:space="preserve">Creates a new #GtkClutterActor widget. This widget can be
|
44
44
|
used to embed a Gtk widget into a clutter scene.
|
45
45
|
|
46
46
|
This function is the logical equivalent of:
|
@@ -52,19 +52,19 @@ GtkWidget *bin = gtk_clutter_actor_get_widget (GTK_CLUTTER_ACTOR (actor));
|
|
52
52
|
gtk_container_add (GTK_CONTAINER (bin), contents);
|
53
53
|
]|</doc>
|
54
54
|
<return-value transfer-ownership="none">
|
55
|
-
<doc xml:
|
55
|
+
<doc xml:space="preserve">the newly created #GtkClutterActor</doc>
|
56
56
|
<type name="Clutter.Actor" c:type="ClutterActor*"/>
|
57
57
|
</return-value>
|
58
58
|
<parameters>
|
59
59
|
<parameter name="contents" transfer-ownership="none">
|
60
|
-
<doc xml:
|
60
|
+
<doc xml:space="preserve">a #GtkWidget to pack into this #ClutterActor</doc>
|
61
61
|
<type name="Gtk.Widget" c:type="GtkWidget*"/>
|
62
62
|
</parameter>
|
63
63
|
</parameters>
|
64
64
|
</constructor>
|
65
65
|
<method name="get_contents"
|
66
66
|
c:identifier="gtk_clutter_actor_get_contents">
|
67
|
-
<doc xml:
|
67
|
+
<doc xml:space="preserve">Retrieves the child of the #GtkBin used to hold the contents of @actor.
|
68
68
|
|
69
69
|
This convenience function is the logical equivalent of:
|
70
70
|
|
@@ -75,25 +75,25 @@ bin = gtk_clutter_actor_get_widget (GTK_CLUTTER_ACTOR (actor));
|
|
75
75
|
return gtk_bin_get_child (GTK_BIN (bin));
|
76
76
|
]|</doc>
|
77
77
|
<return-value transfer-ownership="none">
|
78
|
-
<doc xml:
|
78
|
+
<doc xml:space="preserve">a #GtkWidget, or %NULL if not content has been set</doc>
|
79
79
|
<type name="Gtk.Widget" c:type="GtkWidget*"/>
|
80
80
|
</return-value>
|
81
81
|
<parameters>
|
82
82
|
<instance-parameter name="actor" transfer-ownership="none">
|
83
|
-
<doc xml:
|
83
|
+
<doc xml:space="preserve">a #GtkClutterActor</doc>
|
84
84
|
<type name="Actor" c:type="GtkClutterActor*"/>
|
85
85
|
</instance-parameter>
|
86
86
|
</parameters>
|
87
87
|
</method>
|
88
88
|
<method name="get_widget" c:identifier="gtk_clutter_actor_get_widget">
|
89
|
-
<doc xml:
|
89
|
+
<doc xml:space="preserve">Retrieves the #GtkBin used to hold the #GtkClutterActor:contents widget</doc>
|
90
90
|
<return-value transfer-ownership="none">
|
91
|
-
<doc xml:
|
91
|
+
<doc xml:space="preserve">a #GtkBin</doc>
|
92
92
|
<type name="Gtk.Widget" c:type="GtkWidget*"/>
|
93
93
|
</return-value>
|
94
94
|
<parameters>
|
95
95
|
<instance-parameter name="actor" transfer-ownership="none">
|
96
|
-
<doc xml:
|
96
|
+
<doc xml:space="preserve">a #GtkClutterActor</doc>
|
97
97
|
<type name="Actor" c:type="GtkClutterActor*"/>
|
98
98
|
</instance-parameter>
|
99
99
|
</parameters>
|
@@ -102,7 +102,7 @@ return gtk_bin_get_child (GTK_BIN (bin));
|
|
102
102
|
writable="1"
|
103
103
|
construct="1"
|
104
104
|
transfer-ownership="none">
|
105
|
-
<doc xml:
|
105
|
+
<doc xml:space="preserve">The #GtkWidget to be embedded into the #GtkClutterActor</doc>
|
106
106
|
<type name="Gtk.Widget"/>
|
107
107
|
</property>
|
108
108
|
<field name="parent_instance" readable="0" private="1">
|
@@ -115,7 +115,7 @@ return gtk_bin_get_child (GTK_BIN (bin));
|
|
115
115
|
<record name="ActorClass"
|
116
116
|
c:type="GtkClutterActorClass"
|
117
117
|
glib:is-gtype-struct-for="Actor">
|
118
|
-
<doc xml:
|
118
|
+
<doc xml:space="preserve">Base class for #GtkClutterActor.</doc>
|
119
119
|
<field name="parent_class" readable="0" private="1">
|
120
120
|
<type name="Clutter.ActorClass" c:type="ClutterActorClass"/>
|
121
121
|
</field>
|
@@ -171,30 +171,30 @@ return gtk_bin_get_child (GTK_BIN (bin));
|
|
171
171
|
glib:type-name="GtkClutterEmbed"
|
172
172
|
glib:get-type="gtk_clutter_embed_get_type"
|
173
173
|
glib:type-struct="EmbedClass">
|
174
|
-
<doc xml:
|
174
|
+
<doc xml:space="preserve">A #GtkWidget containing the default Clutter stage.
|
175
175
|
|
176
176
|
The <structname>GtkClutterEmbed</structname> structure contains only
|
177
177
|
private data and should be accessed using the provided API.</doc>
|
178
178
|
<implements name="Atk.ImplementorIface"/>
|
179
179
|
<implements name="Gtk.Buildable"/>
|
180
180
|
<constructor name="new" c:identifier="gtk_clutter_embed_new">
|
181
|
-
<doc xml:
|
181
|
+
<doc xml:space="preserve">Creates a new #GtkClutterEmbed widget. This widget can be
|
182
182
|
used to build a scene using Clutter API into a GTK+ application.</doc>
|
183
183
|
<return-value transfer-ownership="none">
|
184
|
-
<doc xml:
|
184
|
+
<doc xml:space="preserve">the newly created #GtkClutterEmbed</doc>
|
185
185
|
<type name="Gtk.Widget" c:type="GtkWidget*"/>
|
186
186
|
</return-value>
|
187
187
|
</constructor>
|
188
188
|
<method name="get_stage" c:identifier="gtk_clutter_embed_get_stage">
|
189
|
-
<doc xml:
|
189
|
+
<doc xml:space="preserve">Retrieves the #ClutterStage from @embed. The returned stage can be
|
190
190
|
used to add actors to the Clutter scene.</doc>
|
191
191
|
<return-value transfer-ownership="none">
|
192
|
-
<doc xml:
|
192
|
+
<doc xml:space="preserve">the Clutter stage. You should never destroy or unref the returned actor.</doc>
|
193
193
|
<type name="Clutter.Actor" c:type="ClutterActor*"/>
|
194
194
|
</return-value>
|
195
195
|
<parameters>
|
196
196
|
<instance-parameter name="embed" transfer-ownership="none">
|
197
|
-
<doc xml:
|
197
|
+
<doc xml:space="preserve">a #GtkClutterEmbed</doc>
|
198
198
|
<type name="Embed" c:type="GtkClutterEmbed*"/>
|
199
199
|
</instance-parameter>
|
200
200
|
</parameters>
|
@@ -202,15 +202,15 @@ used to add actors to the Clutter scene.</doc>
|
|
202
202
|
<method name="get_use_layout_size"
|
203
203
|
c:identifier="gtk_clutter_embed_get_use_layout_size"
|
204
204
|
version="1.4">
|
205
|
-
<doc xml:
|
205
|
+
<doc xml:space="preserve">Retrieves whether the embedding uses the layout size, see
|
206
206
|
gtk_clutter_embed_set_use_layout_size() for details.</doc>
|
207
207
|
<return-value transfer-ownership="none">
|
208
|
-
<doc xml:
|
208
|
+
<doc xml:space="preserve">%TRUE if reporting stage size as widget size, %FALSE otherwise.</doc>
|
209
209
|
<type name="gboolean" c:type="gboolean"/>
|
210
210
|
</return-value>
|
211
211
|
<parameters>
|
212
212
|
<instance-parameter name="embed" transfer-ownership="none">
|
213
|
-
<doc xml:
|
213
|
+
<doc xml:space="preserve">a #GtkClutterEmbed</doc>
|
214
214
|
<type name="Embed" c:type="GtkClutterEmbed*"/>
|
215
215
|
</instance-parameter>
|
216
216
|
</parameters>
|
@@ -218,7 +218,7 @@ gtk_clutter_embed_set_use_layout_size() for details.</doc>
|
|
218
218
|
<method name="set_use_layout_size"
|
219
219
|
c:identifier="gtk_clutter_embed_set_use_layout_size"
|
220
220
|
version="1.4">
|
221
|
-
<doc xml:
|
221
|
+
<doc xml:space="preserve">Changes the way @embed requests size. If @use_layout_size is
|
222
222
|
%TRUE, the @embed widget will request the size that the
|
223
223
|
LayoutManager reports as the preferred size. This means that
|
224
224
|
a Gtk+ window will automatically get the natural and minimum
|
@@ -235,11 +235,11 @@ as a viewport into a potentially unlimited clutter space.</doc>
|
|
235
235
|
</return-value>
|
236
236
|
<parameters>
|
237
237
|
<instance-parameter name="embed" transfer-ownership="none">
|
238
|
-
<doc xml:
|
238
|
+
<doc xml:space="preserve">a #GtkClutterEmbed</doc>
|
239
239
|
<type name="Embed" c:type="GtkClutterEmbed*"/>
|
240
240
|
</instance-parameter>
|
241
241
|
<parameter name="use_layout_size" transfer-ownership="none">
|
242
|
-
<doc xml:
|
242
|
+
<doc xml:space="preserve">a boolean</doc>
|
243
243
|
<type name="gboolean" c:type="gboolean"/>
|
244
244
|
</parameter>
|
245
245
|
</parameters>
|
@@ -249,7 +249,7 @@ as a viewport into a potentially unlimited clutter space.</doc>
|
|
249
249
|
writable="1"
|
250
250
|
construct="1"
|
251
251
|
transfer-ownership="none">
|
252
|
-
<doc xml:
|
252
|
+
<doc xml:space="preserve">The #GtkWidget to be embedded into the #GtkClutterActor</doc>
|
253
253
|
<type name="gboolean" c:type="gboolean"/>
|
254
254
|
</property>
|
255
255
|
<field name="parent_instance" readable="0" private="1">
|
@@ -262,7 +262,7 @@ as a viewport into a potentially unlimited clutter space.</doc>
|
|
262
262
|
<record name="EmbedClass"
|
263
263
|
c:type="GtkClutterEmbedClass"
|
264
264
|
glib:is-gtype-struct-for="Embed">
|
265
|
-
<doc xml:
|
265
|
+
<doc xml:space="preserve">Base class for #GtkClutterEmbed.
|
266
266
|
|
267
267
|
The <structname>GtkClutterEmbedClass</structname> contains only private
|
268
268
|
data.</doc>
|
@@ -322,7 +322,7 @@ data.</doc>
|
|
322
322
|
glib:type-name="GtkClutterTexture"
|
323
323
|
glib:get-type="gtk_clutter_texture_get_type"
|
324
324
|
glib:type-struct="TextureClass">
|
325
|
-
<doc xml:
|
325
|
+
<doc xml:space="preserve">The <structname>GtkClutterTexture</structname> structure contains
|
326
326
|
only private data and should be accessed using the provided API.</doc>
|
327
327
|
<implements name="Atk.ImplementorIface"/>
|
328
328
|
<implements name="Clutter.Animatable"/>
|
@@ -331,9 +331,9 @@ only private data and should be accessed using the provided API.</doc>
|
|
331
331
|
<constructor name="new"
|
332
332
|
c:identifier="gtk_clutter_texture_new"
|
333
333
|
version="1.0">
|
334
|
-
<doc xml:
|
334
|
+
<doc xml:space="preserve">Creates a new #GtkClutterTexture actor.</doc>
|
335
335
|
<return-value transfer-ownership="none">
|
336
|
-
<doc xml:
|
336
|
+
<doc xml:space="preserve">the newly created #GtkClutterTexture instance</doc>
|
337
337
|
<type name="Clutter.Actor" c:type="ClutterActor*"/>
|
338
338
|
</return-value>
|
339
339
|
</constructor>
|
@@ -347,27 +347,27 @@ only private data and should be accessed using the provided API.</doc>
|
|
347
347
|
c:identifier="gtk_clutter_texture_set_from_icon_name"
|
348
348
|
version="1.0"
|
349
349
|
throws="1">
|
350
|
-
<doc xml:
|
350
|
+
<doc xml:space="preserve">Sets the contents of @texture using the @icon_name from the
|
351
351
|
current icon theme.</doc>
|
352
352
|
<return-value transfer-ownership="none">
|
353
|
-
<doc xml:
|
353
|
+
<doc xml:space="preserve">%TRUE on success, %FALSE on failure</doc>
|
354
354
|
<type name="gboolean" c:type="gboolean"/>
|
355
355
|
</return-value>
|
356
356
|
<parameters>
|
357
357
|
<instance-parameter name="texture" transfer-ownership="none">
|
358
|
-
<doc xml:
|
358
|
+
<doc xml:space="preserve">a #GtkClutterTexture</doc>
|
359
359
|
<type name="Texture" c:type="GtkClutterTexture*"/>
|
360
360
|
</instance-parameter>
|
361
361
|
<parameter name="widget" transfer-ownership="none" allow-none="1">
|
362
|
-
<doc xml:
|
362
|
+
<doc xml:space="preserve">a #GtkWidget or %NULL</doc>
|
363
363
|
<type name="Gtk.Widget" c:type="GtkWidget*"/>
|
364
364
|
</parameter>
|
365
365
|
<parameter name="icon_name" transfer-ownership="none">
|
366
|
-
<doc xml:
|
366
|
+
<doc xml:space="preserve">the name of the icon</doc>
|
367
367
|
<type name="utf8" c:type="const gchar*"/>
|
368
368
|
</parameter>
|
369
369
|
<parameter name="icon_size" transfer-ownership="none">
|
370
|
-
<doc xml:
|
370
|
+
<doc xml:space="preserve">the icon size or -1</doc>
|
371
371
|
<type name="Gtk.IconSize" c:type="GtkIconSize"/>
|
372
372
|
</parameter>
|
373
373
|
</parameters>
|
@@ -375,18 +375,18 @@ current icon theme.</doc>
|
|
375
375
|
<method name="set_from_pixbuf"
|
376
376
|
c:identifier="gtk_clutter_texture_set_from_pixbuf"
|
377
377
|
throws="1">
|
378
|
-
<doc xml:
|
378
|
+
<doc xml:space="preserve">Sets the contents of @texture with a copy of @pixbuf.</doc>
|
379
379
|
<return-value transfer-ownership="none">
|
380
|
-
<doc xml:
|
380
|
+
<doc xml:space="preserve">%TRUE on success, %FALSE on failure.</doc>
|
381
381
|
<type name="gboolean" c:type="gboolean"/>
|
382
382
|
</return-value>
|
383
383
|
<parameters>
|
384
384
|
<instance-parameter name="texture" transfer-ownership="none">
|
385
|
-
<doc xml:
|
385
|
+
<doc xml:space="preserve">a #GtkClutterTexture</doc>
|
386
386
|
<type name="Texture" c:type="GtkClutterTexture*"/>
|
387
387
|
</instance-parameter>
|
388
388
|
<parameter name="pixbuf" transfer-ownership="none">
|
389
|
-
<doc xml:
|
389
|
+
<doc xml:space="preserve">a #GdkPixbuf</doc>
|
390
390
|
<type name="GdkPixbuf.Pixbuf" c:type="GdkPixbuf*"/>
|
391
391
|
</parameter>
|
392
392
|
</parameters>
|
@@ -394,27 +394,27 @@ current icon theme.</doc>
|
|
394
394
|
<method name="set_from_stock"
|
395
395
|
c:identifier="gtk_clutter_texture_set_from_stock"
|
396
396
|
throws="1">
|
397
|
-
<doc xml:
|
397
|
+
<doc xml:space="preserve">Sets the contents of @texture using the stock icon @stock_id, as
|
398
398
|
rendered by @widget.</doc>
|
399
399
|
<return-value transfer-ownership="none">
|
400
|
-
<doc xml:
|
400
|
+
<doc xml:space="preserve">%TRUE on success, %FALSE on failure.</doc>
|
401
401
|
<type name="gboolean" c:type="gboolean"/>
|
402
402
|
</return-value>
|
403
403
|
<parameters>
|
404
404
|
<instance-parameter name="texture" transfer-ownership="none">
|
405
|
-
<doc xml:
|
405
|
+
<doc xml:space="preserve">a #GtkClutterTexture</doc>
|
406
406
|
<type name="Texture" c:type="GtkClutterTexture*"/>
|
407
407
|
</instance-parameter>
|
408
408
|
<parameter name="widget" transfer-ownership="none">
|
409
|
-
<doc xml:
|
409
|
+
<doc xml:space="preserve">a #GtkWidget</doc>
|
410
410
|
<type name="Gtk.Widget" c:type="GtkWidget*"/>
|
411
411
|
</parameter>
|
412
412
|
<parameter name="stock_id" transfer-ownership="none">
|
413
|
-
<doc xml:
|
413
|
+
<doc xml:space="preserve">the stock id of the icon</doc>
|
414
414
|
<type name="utf8" c:type="const gchar*"/>
|
415
415
|
</parameter>
|
416
416
|
<parameter name="icon_size" transfer-ownership="none">
|
417
|
-
<doc xml:
|
417
|
+
<doc xml:space="preserve">the size of the icon, or -1</doc>
|
418
418
|
<type name="Gtk.IconSize" c:type="GtkIconSize"/>
|
419
419
|
</parameter>
|
420
420
|
</parameters>
|
@@ -427,7 +427,7 @@ rendered by @widget.</doc>
|
|
427
427
|
c:type="GtkClutterTextureClass"
|
428
428
|
glib:is-gtype-struct-for="Texture"
|
429
429
|
version="1.0">
|
430
|
-
<doc xml:
|
430
|
+
<doc xml:space="preserve">The <structname>GtkClutterTextureClass</structname> structure contains
|
431
431
|
only private data.</doc>
|
432
432
|
<field name="parent_class" readable="0" private="1">
|
433
433
|
<type name="Clutter.TextureClass" c:type="ClutterTextureClass"/>
|
@@ -436,11 +436,11 @@ only private data.</doc>
|
|
436
436
|
<enumeration name="TextureError"
|
437
437
|
version="1.0"
|
438
438
|
c:type="GtkClutterTextureError">
|
439
|
-
<doc xml:
|
439
|
+
<doc xml:space="preserve">Error enumeration for #GtkClutterTexture</doc>
|
440
440
|
<member name="texture_error_invalid_stock_id"
|
441
441
|
value="0"
|
442
442
|
c:identifier="GTK_CLUTTER_TEXTURE_ERROR_INVALID_STOCK_ID">
|
443
|
-
<doc xml:
|
443
|
+
<doc xml:space="preserve">Invalid stock id</doc>
|
444
444
|
</member>
|
445
445
|
</enumeration>
|
446
446
|
<class name="Window"
|
@@ -450,34 +450,34 @@ only private data.</doc>
|
|
450
450
|
glib:type-name="GtkClutterWindow"
|
451
451
|
glib:get-type="gtk_clutter_window_get_type"
|
452
452
|
glib:type-struct="WindowClass">
|
453
|
-
<doc xml:
|
453
|
+
<doc xml:space="preserve">A #GtkWindow containing a #ClutterStage.
|
454
454
|
|
455
455
|
The <structname>GtkClutterWindow</structname> structure contains only
|
456
456
|
private data and it should be accessed using the provided API.</doc>
|
457
457
|
<implements name="Atk.ImplementorIface"/>
|
458
458
|
<implements name="Gtk.Buildable"/>
|
459
459
|
<constructor name="new" c:identifier="gtk_clutter_window_new">
|
460
|
-
<doc xml:
|
460
|
+
<doc xml:space="preserve">Creates a new #GtkClutterWindow widget.
|
461
461
|
|
462
462
|
This window provides a hidden #ClutterStage on which the child
|
463
463
|
#GtkWidget<!-- -->s are placed. This allows other #ClutterActor<!-- -->s
|
464
464
|
to also be placed on the stage.</doc>
|
465
465
|
<return-value transfer-ownership="none">
|
466
|
-
<doc xml:
|
466
|
+
<doc xml:space="preserve">the newly created #GtkClutterWindow</doc>
|
467
467
|
<type name="Gtk.Widget" c:type="GtkWidget*"/>
|
468
468
|
</return-value>
|
469
469
|
</constructor>
|
470
470
|
<method name="get_stage" c:identifier="gtk_clutter_window_get_stage">
|
471
|
-
<doc xml:
|
471
|
+
<doc xml:space="preserve">Retrieves the #ClutterStage that this window is embedding
|
472
472
|
|
473
473
|
Use this function if you wish to add other actors to the #ClutterStage.</doc>
|
474
474
|
<return-value transfer-ownership="none">
|
475
|
-
<doc xml:
|
475
|
+
<doc xml:space="preserve">the window's #ClutterStage</doc>
|
476
476
|
<type name="Clutter.Actor" c:type="ClutterActor*"/>
|
477
477
|
</return-value>
|
478
478
|
<parameters>
|
479
479
|
<instance-parameter name="window" transfer-ownership="none">
|
480
|
-
<doc xml:
|
480
|
+
<doc xml:space="preserve">the #GtkClutterWindow</doc>
|
481
481
|
<type name="Window" c:type="GtkClutterWindow*"/>
|
482
482
|
</instance-parameter>
|
483
483
|
</parameters>
|
@@ -492,7 +492,7 @@ Use this function if you wish to add other actors to the #ClutterStage.</doc>
|
|
492
492
|
<record name="WindowClass"
|
493
493
|
c:type="GtkClutterWindowClass"
|
494
494
|
glib:is-gtype-struct-for="Window">
|
495
|
-
<doc xml:
|
495
|
+
<doc xml:space="preserve">Base class for #GtkClutterWindow.
|
496
496
|
|
497
497
|
The <structname>GtkClutterWindowClass</structname> structure contains
|
498
498
|
only private data.</doc>
|
@@ -549,7 +549,7 @@ only private data.</doc>
|
|
549
549
|
<function name="get_option_group"
|
550
550
|
c:identifier="gtk_clutter_get_option_group"
|
551
551
|
introspectable="0">
|
552
|
-
<doc xml:
|
552
|
+
<doc xml:space="preserve">Returns a #GOptionGroup for the command line arguments recognized
|
553
553
|
by Clutter. You should add this group to your #GOptionContext with
|
554
554
|
g_option_context_add_group(), if you are using g_option_context_parse()
|
555
555
|
to parse your commandline arguments instead of using gtk_clutter_init()
|
@@ -585,15 +585,15 @@ After g_option_context_parse() on a #GOptionContext containing the
|
|
585
585
|
the returned #GOptionGroup has returned %TRUE, Clutter and GTK-Clutter are
|
586
586
|
guaranteed to be initialized.</doc>
|
587
587
|
<return-value transfer-ownership="full">
|
588
|
-
<doc xml:
|
588
|
+
<doc xml:space="preserve">a #GOptionGroup for the commandline arguments recognized by ClutterGtk</doc>
|
589
589
|
<type name="GLib.OptionGroup" c:type="GOptionGroup*"/>
|
590
590
|
</return-value>
|
591
591
|
</function>
|
592
592
|
<function name="init" c:identifier="gtk_clutter_init">
|
593
|
-
<doc xml:
|
593
|
+
<doc xml:space="preserve">This function should be called instead of clutter_init() and
|
594
594
|
gtk_init().</doc>
|
595
595
|
<return-value transfer-ownership="none">
|
596
|
-
<doc xml:
|
596
|
+
<doc xml:space="preserve">%CLUTTER_INIT_SUCCESS on success, a negative integer on failure.</doc>
|
597
597
|
<type name="Clutter.InitError" c:type="ClutterInitError"/>
|
598
598
|
</return-value>
|
599
599
|
<parameters>
|
@@ -602,7 +602,7 @@ gtk_init().</doc>
|
|
602
602
|
caller-allocates="0"
|
603
603
|
transfer-ownership="full"
|
604
604
|
allow-none="1">
|
605
|
-
<doc xml:
|
605
|
+
<doc xml:space="preserve">pointer to the arguments count, or %NULL</doc>
|
606
606
|
<type name="gint" c:type="int*"/>
|
607
607
|
</parameter>
|
608
608
|
<parameter name="argv"
|
@@ -610,7 +610,7 @@ gtk_init().</doc>
|
|
610
610
|
caller-allocates="0"
|
611
611
|
transfer-ownership="full"
|
612
612
|
allow-none="1">
|
613
|
-
<doc xml:
|
613
|
+
<doc xml:space="preserve">pointer to the arguments vector, or %NULL</doc>
|
614
614
|
<array length="0" zero-terminated="0" c:type="char***">
|
615
615
|
<type name="utf8" c:type="char**"/>
|
616
616
|
</array>
|
@@ -620,10 +620,10 @@ gtk_init().</doc>
|
|
620
620
|
<function name="init_with_args"
|
621
621
|
c:identifier="gtk_clutter_init_with_args"
|
622
622
|
throws="1">
|
623
|
-
<doc xml:
|
623
|
+
<doc xml:space="preserve">This function should be called instead of clutter_init() and
|
624
624
|
gtk_init_with_args().</doc>
|
625
625
|
<return-value transfer-ownership="none">
|
626
|
-
<doc xml:
|
626
|
+
<doc xml:space="preserve">%CLUTTER_INIT_SUCCESS on success, a negative integer on failure.</doc>
|
627
627
|
<type name="Clutter.InitError" c:type="ClutterInitError"/>
|
628
628
|
</return-value>
|
629
629
|
<parameters>
|
@@ -632,7 +632,7 @@ gtk_init_with_args().</doc>
|
|
632
632
|
caller-allocates="0"
|
633
633
|
transfer-ownership="full"
|
634
634
|
allow-none="1">
|
635
|
-
<doc xml:
|
635
|
+
<doc xml:space="preserve">a pointer to the number of command line arguments, or %NULL</doc>
|
636
636
|
<type name="gint" c:type="int*"/>
|
637
637
|
</parameter>
|
638
638
|
<parameter name="argv"
|
@@ -640,7 +640,7 @@ gtk_init_with_args().</doc>
|
|
640
640
|
caller-allocates="0"
|
641
641
|
transfer-ownership="full"
|
642
642
|
allow-none="1">
|
643
|
-
<doc xml:
|
643
|
+
<doc xml:space="preserve">a pointer to the array of command line arguments, or %NULL</doc>
|
644
644
|
<array length="0" zero-terminated="0" c:type="char***">
|
645
645
|
<type name="utf8" c:type="char**"/>
|
646
646
|
</array>
|
@@ -648,11 +648,11 @@ gtk_init_with_args().</doc>
|
|
648
648
|
<parameter name="parameter_string"
|
649
649
|
transfer-ownership="none"
|
650
650
|
allow-none="1">
|
651
|
-
<doc xml:
|
651
|
+
<doc xml:space="preserve">a string which is displayed in the first line of <option>--help</option> output, after <literal><replaceable>programname</replaceable> [OPTION...]</literal></doc>
|
652
652
|
<type name="utf8" c:type="const char*"/>
|
653
653
|
</parameter>
|
654
654
|
<parameter name="entries" transfer-ownership="none" allow-none="1">
|
655
|
-
<doc xml:
|
655
|
+
<doc xml:space="preserve">a %NULL-terminated array of #GOptionEntry<!-- -->s describing the options of your program</doc>
|
656
656
|
<array c:type="GOptionEntry*">
|
657
657
|
<type name="GLib.OptionEntry" c:type="GOptionEntry"/>
|
658
658
|
</array>
|
@@ -660,7 +660,7 @@ gtk_init_with_args().</doc>
|
|
660
660
|
<parameter name="translation_domain"
|
661
661
|
transfer-ownership="none"
|
662
662
|
allow-none="1">
|
663
|
-
<doc xml:
|
663
|
+
<doc xml:space="preserve">a translation domain to use for translating the <option>--help</option> output for the options in @entries with gettext(), or %NULL</doc>
|
664
664
|
<type name="utf8" c:type="const char*"/>
|
665
665
|
</parameter>
|
666
666
|
</parameters>
|
metadata
CHANGED
@@ -1,62 +1,55 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clutter-gtk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
5
|
-
prerelease:
|
4
|
+
version: 2.0.3
|
6
5
|
platform: x86-mingw32
|
7
6
|
authors:
|
8
7
|
- The Ruby-GNOME2 Project Team
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-12-28 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: clutter
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
17
|
- - '='
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version: 2.0.
|
19
|
+
version: 2.0.3
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
24
|
- - '='
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version: 2.0.
|
26
|
+
version: 2.0.3
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: gtk3
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
31
|
- - '='
|
36
32
|
- !ruby/object:Gem::Version
|
37
|
-
version: 2.0.
|
33
|
+
version: 2.0.3
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
38
|
- - '='
|
44
39
|
- !ruby/object:Gem::Version
|
45
|
-
version: 2.0.
|
40
|
+
version: 2.0.3
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: test-unit-notify
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - '>='
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: '0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - '>='
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: '0'
|
62
55
|
description: Ruby/ClutterGTK is a Ruby binding of Clutter-GTK.
|
@@ -77,6 +70,7 @@ files:
|
|
77
70
|
- sample/window-test2.rb
|
78
71
|
- test/clutter-gtk-test-utils.rb
|
79
72
|
- test/run-test.rb
|
73
|
+
- test/test-clutter-gtk-embed.rb
|
80
74
|
- vendor/local/bin/libclutter-gtk-1.0-0.dll
|
81
75
|
- vendor/local/include/clutter-gtk-1.0/clutter-gtk/clutter-gtk.h
|
82
76
|
- vendor/local/include/clutter-gtk-1.0/clutter-gtk/gtk-clutter-actor.h
|
@@ -86,7 +80,6 @@ files:
|
|
86
80
|
- vendor/local/include/clutter-gtk-1.0/clutter-gtk/gtk-clutter-version.h
|
87
81
|
- vendor/local/include/clutter-gtk-1.0/clutter-gtk/gtk-clutter-window.h
|
88
82
|
- vendor/local/lib/girepository-1.0/GtkClutter-1.0.typelib
|
89
|
-
- vendor/local/lib/libclutter-gtk-1.0.a
|
90
83
|
- vendor/local/lib/libclutter-gtk-1.0.dll.a
|
91
84
|
- vendor/local/lib/libclutter-gtk-1.0.la
|
92
85
|
- vendor/local/lib/pkgconfig/clutter-gtk-1.0.pc
|
@@ -122,26 +115,25 @@ files:
|
|
122
115
|
- vendor/local/share/locale/zh_CN/LC_MESSAGES/cluttergtk-1.0.mo
|
123
116
|
homepage: http://ruby-gnome2.sourceforge.jp/
|
124
117
|
licenses: []
|
118
|
+
metadata: {}
|
125
119
|
post_install_message:
|
126
120
|
rdoc_options: []
|
127
121
|
require_paths:
|
128
122
|
- lib
|
129
123
|
required_ruby_version: !ruby/object:Gem::Requirement
|
130
|
-
none: false
|
131
124
|
requirements:
|
132
|
-
- -
|
125
|
+
- - '>='
|
133
126
|
- !ruby/object:Gem::Version
|
134
|
-
version: 1.
|
127
|
+
version: 1.9.3
|
135
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
136
|
-
none: false
|
137
129
|
requirements:
|
138
|
-
- -
|
130
|
+
- - '>='
|
139
131
|
- !ruby/object:Gem::Version
|
140
132
|
version: '0'
|
141
133
|
requirements: []
|
142
134
|
rubyforge_project:
|
143
|
-
rubygems_version:
|
135
|
+
rubygems_version: 2.0.14
|
144
136
|
signing_key:
|
145
|
-
specification_version:
|
137
|
+
specification_version: 4
|
146
138
|
summary: Ruby/ClutterGTK is a Ruby binding of Clutter-GTK.
|
147
139
|
test_files: []
|
Binary file
|