clutter-gtk 3.0.9-x86-mingw32 → 3.1.0-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 +4 -4
- data/Rakefile +3 -3
- data/lib/clutter-gtk.rb +2 -7
- data/sample/events.rb +6 -2
- data/sample/test.rb +1 -1
- data/sample/window-test.rb +0 -2
- data/vendor/local/bin/libclutter-gtk-1.0-0.dll +0 -0
- data/vendor/local/include/clutter-gtk-1.0/clutter-gtk/gtk-clutter-version.h +3 -3
- 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/lib/pkgconfig/clutter-gtk-1.0.pc +1 -1
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/GtkClutterActor.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/GtkClutterEmbed.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/GtkClutterWindow.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/annotation-glossary.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ch01.html +4 -4
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ch02.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ch03.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/clutter-gtk-1.0-Utility-Functions.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/clutter-gtk-1.0.devhelp2 +1 -1
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/cluttergtk-glossary.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/cluttergtk-object-hierarchy.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/cluttergtk-object-index.html +2 -2
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/cluttergtk-objects.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/index.html +4 -4
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ix01.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ix02.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ix03.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ix04.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ix05.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ix06.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/ix07.html +3 -3
- data/vendor/local/share/gtk-doc/html/clutter-gtk-1.0/license.html +3 -3
- data/vendor/local/share/locale/ja/LC_MESSAGES/cluttergtk-1.0.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/cluttergtk-1.0.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/cluttergtk-1.0.mo +0 -0
- metadata +21 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27464db224f71437b6f5319404d0b0d8b256f3b6
|
4
|
+
data.tar.gz: e9cacefae88ff75ba0463d2f9789bada315272d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7906d91c1a6509344d55d061c00a68e6e9fbb3abf01fa8e868de5f4de19c2505cc1351c9a25c5cf54833d93465c449394c17a20eb8be4de234b7e6e93c78654
|
7
|
+
data.tar.gz: e708666f776b28b7ec1801cb4815bff8623d40d42fa0a7318993e4beb85399e3f95d2942bc11a3a363200192117c1f202aec970671fef121c5b07fd96d302bb1
|
data/Rakefile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
#
|
3
|
-
# Copyright (C) 2013-
|
3
|
+
# Copyright (C) 2013-2016 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
|
@@ -22,7 +22,7 @@ require "gnome2/rake/package-task"
|
|
22
22
|
package_task = GNOME2::Rake::PackageTask.new do |package|
|
23
23
|
package.summary = "Ruby/ClutterGTK is a Ruby binding of Clutter-GTK."
|
24
24
|
package.description = "Ruby/ClutterGTK is a Ruby binding of Clutter-GTK."
|
25
|
-
package.dependency.gem.runtime = ["clutter", "gtk3"]
|
25
|
+
package.dependency.gem.runtime = ["clutter", "clutter-gdk", "gtk3"]
|
26
26
|
package.windows.packages = []
|
27
27
|
package.windows.dependencies = []
|
28
28
|
package.windows.build_dependencies = [
|
@@ -46,7 +46,7 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
|
|
46
46
|
:name => "clutter-gtk",
|
47
47
|
:download_site => :gnome,
|
48
48
|
:label => "Clutter-GTK",
|
49
|
-
:version => "1.8.
|
49
|
+
:version => "1.8.2",
|
50
50
|
:compression_method => "xz",
|
51
51
|
:windows => {
|
52
52
|
:configure_args => [
|
data/lib/clutter-gtk.rb
CHANGED
@@ -15,6 +15,7 @@
|
|
15
15
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
16
16
|
|
17
17
|
require "clutter"
|
18
|
+
require "clutter-gdk"
|
18
19
|
require "gtk3"
|
19
20
|
|
20
21
|
base_dir = Pathname.new(__FILE__).dirname.dirname.expand_path
|
@@ -71,7 +72,7 @@ module ClutterGtk
|
|
71
72
|
arguments = [
|
72
73
|
[$0] + @init_arguments,
|
73
74
|
]
|
74
|
-
error, returned_arguments = init.invoke(
|
75
|
+
error, returned_arguments = init.invoke(arguments)
|
75
76
|
@init_arguments.replace(returned_arguments[1..-1])
|
76
77
|
if error.to_i <= 0
|
77
78
|
raise InitError, "failed to initialize Clutter-GTK: #{error.name}"
|
@@ -80,11 +81,5 @@ module ClutterGtk
|
|
80
81
|
|
81
82
|
def post_load(repository, namespace)
|
82
83
|
end
|
83
|
-
|
84
|
-
def initialize_post(object)
|
85
|
-
super
|
86
|
-
return unless object.is_a?(GLib::Object)
|
87
|
-
self.class.reference_gobject(object, :sink => true)
|
88
|
-
end
|
89
84
|
end
|
90
85
|
end
|
data/sample/events.rb
CHANGED
@@ -73,8 +73,12 @@ stage.signal_connect("captured-event") do |_stage, event|
|
|
73
73
|
when Clutter::KeyEvent
|
74
74
|
if event.type == Clutter::EventType::KEY_PRESS
|
75
75
|
format = "the stage got a key press: '%s' (symbol: %d, unicode: 0x%x)"
|
76
|
-
|
77
|
-
|
76
|
+
if event.key_unicode.empty?
|
77
|
+
unicode = 0
|
78
|
+
else
|
79
|
+
unicode = event.key_unicode.unpack("U")[0]
|
80
|
+
end
|
81
|
+
puts(format % [event.key_unicode, event.key_symbol, unicode])
|
78
82
|
end
|
79
83
|
end
|
80
84
|
|
data/sample/test.rb
CHANGED
@@ -128,7 +128,7 @@ stage.signal_connect("button-press-event") do |_stage, event|
|
|
128
128
|
Clutter::Event::STOP
|
129
129
|
end
|
130
130
|
stage.signal_connect("key-release-event") do |_stage, event|
|
131
|
-
puts("*** key press event (key:#{
|
131
|
+
puts("*** key press event (key:#{event.key_unicode}) ***")
|
132
132
|
case event.key_symbol
|
133
133
|
when Clutter::Keys::KEY_q
|
134
134
|
Gtk.main_quit
|
data/sample/window-test.rb
CHANGED
Binary file
|
@@ -62,14 +62,14 @@ G_BEGIN_DECLS
|
|
62
62
|
* The micro version of the Clutter-GTK library (3, if %CLUTTER_GTK_VERSION
|
63
63
|
* is 1.2.3)
|
64
64
|
*/
|
65
|
-
#define CLUTTER_GTK_MICRO_VERSION (
|
65
|
+
#define CLUTTER_GTK_MICRO_VERSION (2)
|
66
66
|
|
67
67
|
/**
|
68
68
|
* CLUTTER_GTK_VERSION:
|
69
69
|
*
|
70
70
|
* The full version of the Clutter-GTK library, like 1.2.3
|
71
71
|
*/
|
72
|
-
#define CLUTTER_GTK_VERSION 1.8.
|
72
|
+
#define CLUTTER_GTK_VERSION 1.8.2
|
73
73
|
|
74
74
|
/**
|
75
75
|
* CLUTTER_GTK_VERSION_S:
|
@@ -77,7 +77,7 @@ G_BEGIN_DECLS
|
|
77
77
|
* The full version of the Clutter-GTK library, in string form (suited for
|
78
78
|
* string concatenation)
|
79
79
|
*/
|
80
|
-
#define CLUTTER_GTK_VERSION_S "1.8.
|
80
|
+
#define CLUTTER_GTK_VERSION_S "1.8.2"
|
81
81
|
|
82
82
|
/**
|
83
83
|
* CLUTTER_GTK_VERSION_HEX:
|
Binary file
|
@@ -17,7 +17,7 @@ old_library=''
|
|
17
17
|
inherited_linker_flags=' -pthread'
|
18
18
|
|
19
19
|
# Libraries that this one depends upon.
|
20
|
-
dependency_libs=' -R/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/vagrant/rcairo.win32/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/clutter-gtk/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/atk/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/gdk3/vendor/local/lib /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libclutter-1.0.la -L/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/../lib /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-path.la /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-pango.la /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl.la /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libjson-glib-1.0.la /home/vagrant/ruby-gnome2.win32/gdk3/vendor/local/lib/libgtk-3.la -lcomdlg32 -lwinspool -lcomctl32 /home/vagrant/ruby-gnome2.win32/gdk3/vendor/local/lib/libgdk-3.la /home/vagrant/ruby-gnome2.win32/gdk3/vendor/local/lib/libepoxy.la -lopengl32 -limm32 -lshell32 -ldwmapi /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libpangocairo-1.0.la /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libpangowin32-1.0.la -lusp10 /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libpangoft2-1.0.la /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libharfbuzz.la /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libpango-1.0.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libgthread-2.0.la /home/vagrant/ruby-gnome2.win32/atk/vendor/local/lib/libatk-1.0.la /home/vagrant/rcairo.win32/vendor/local/lib/libcairo-gobject.la /home/vagrant/rcairo.win32/vendor/local/lib/libcairo.la -lpthread /home/vagrant/rcairo.win32/vendor/local/lib/libpixman-1.la /home/vagrant/rcairo.win32/vendor/local/lib/libfontconfig.la /home/vagrant/rcairo.win32/vendor/local/lib/libxml2.la /home/vagrant/rcairo.win32/vendor/local/lib/libfreetype.la -lgdi32 -lmsimg32 /home/vagrant/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib/libgdk_pixbuf-2.0.la /home/vagrant/rcairo.win32/vendor/local/lib/libpng16.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libgio-2.0.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libgmodule-2.0.la -ldnsapi -liphlpapi -lz /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/../lib/libffi.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libglib-2.0.la -lws2_32 -lole32 -lwinmm -lshlwapi /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libpcre.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libintl.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libiconv.la'
|
20
|
+
dependency_libs=' -R/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/vagrant/rcairo.win32/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/clutter-gtk/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/atk/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib -L/home/vagrant/ruby-gnome2.win32/gdk3/vendor/local/lib /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libclutter-1.0.la -L/home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/../lib /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-path.la /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl-pango.la /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libcogl.la /home/vagrant/ruby-gnome2.win32/clutter/vendor/local/lib/libjson-glib-1.0.la /home/vagrant/ruby-gnome2.win32/gdk3/vendor/local/lib/libgtk-3.la -lcomdlg32 -lwinspool -lcomctl32 /home/vagrant/ruby-gnome2.win32/gdk3/vendor/local/lib/libgdk-3.la /home/vagrant/ruby-gnome2.win32/gdk3/vendor/local/lib/libepoxy.la -lopengl32 -limm32 -lshell32 -ldwmapi -lsetupapi -lcfgmgr32 /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libpangocairo-1.0.la /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libpangowin32-1.0.la -lusp10 /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libpangoft2-1.0.la /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libharfbuzz.la /home/vagrant/ruby-gnome2.win32/pango/vendor/local/lib/libpango-1.0.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libgthread-2.0.la /home/vagrant/ruby-gnome2.win32/atk/vendor/local/lib/libatk-1.0.la /home/vagrant/rcairo.win32/vendor/local/lib/libcairo-gobject.la /home/vagrant/rcairo.win32/vendor/local/lib/libcairo.la -lpthread /home/vagrant/rcairo.win32/vendor/local/lib/libpixman-1.la /home/vagrant/rcairo.win32/vendor/local/lib/libfontconfig.la /home/vagrant/rcairo.win32/vendor/local/lib/libxml2.la /home/vagrant/rcairo.win32/vendor/local/lib/libfreetype.la -lgdi32 -lmsimg32 /home/vagrant/ruby-gnome2.win32/gdk_pixbuf2/vendor/local/lib/libgdk_pixbuf-2.0.la /home/vagrant/rcairo.win32/vendor/local/lib/libpng16.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libgio-2.0.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libgmodule-2.0.la -ldnsapi -liphlpapi -lz /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/../lib/libffi.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libglib-2.0.la -lws2_32 -lole32 -lwinmm -lshlwapi /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libpcre.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libintl.la /home/vagrant/ruby-gnome2.win32/glib2/vendor/local/lib/libiconv.la'
|
21
21
|
|
22
22
|
# Names of additional weak libraries provided by this library
|
23
23
|
weak_library_names=''
|
@@ -25,7 +25,7 @@ weak_library_names=''
|
|
25
25
|
# Version information for libclutter-gtk-1.0.
|
26
26
|
current=800
|
27
27
|
age=800
|
28
|
-
revision=
|
28
|
+
revision=2
|
29
29
|
|
30
30
|
# Is this an already installed library?
|
31
31
|
installed=yes
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>GtkClutterActor: Clutter-Gtk 1.8.
|
5
|
+
<title>GtkClutterActor: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
9
|
<link rel="up" href="ch02.html" title="Clutter-Gtk Widgets">
|
10
10
|
<link rel="prev" href="GtkClutterEmbed.html" title="GtkClutterEmbed">
|
11
11
|
<link rel="next" href="GtkClutterWindow.html" title="GtkClutterWindow">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>GtkClutterEmbed: Clutter-Gtk 1.8.
|
5
|
+
<title>GtkClutterEmbed: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
9
|
<link rel="up" href="ch02.html" title="Clutter-Gtk Widgets">
|
10
10
|
<link rel="prev" href="ch02.html" title="Clutter-Gtk Widgets">
|
11
11
|
<link rel="next" href="GtkClutterActor.html" title="GtkClutterActor">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>GtkClutterWindow: Clutter-Gtk 1.8.
|
5
|
+
<title>GtkClutterWindow: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
9
|
<link rel="up" href="ch02.html" title="Clutter-Gtk Widgets">
|
10
10
|
<link rel="prev" href="GtkClutterActor.html" title="GtkClutterActor">
|
11
11
|
<link rel="next" href="ch03.html" title="Miscellaneous">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Annotation Glossary: Clutter-Gtk 1.8.
|
5
|
+
<title>Annotation Glossary: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
9
|
<link rel="up" href="cluttergtk-glossary.html" title="Part II. Glossaries">
|
10
10
|
<link rel="prev" href="cluttergtk-glossary.html" title="Part II. Glossaries">
|
11
11
|
<link rel="next" href="ix02.html" title="Index of all symbols">
|
@@ -2,12 +2,12 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter-Gtk Overview: Clutter-Gtk 1.8.
|
5
|
+
<title>Clutter-Gtk Overview: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
10
|
-
<link rel="prev" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
|
+
<link rel="prev" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
11
11
|
<link rel="next" href="ch02.html" title="Clutter-Gtk Widgets">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
13
13
|
<link rel="stylesheet" href="style.css" type="text/css">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter-Gtk Widgets: Clutter-Gtk 1.8.
|
5
|
+
<title>Clutter-Gtk Widgets: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="ch01.html" title="Clutter-Gtk Overview">
|
11
11
|
<link rel="next" href="GtkClutterEmbed.html" title="GtkClutterEmbed">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Miscellaneous: Clutter-Gtk 1.8.
|
5
|
+
<title>Miscellaneous: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="GtkClutterWindow.html" title="GtkClutterWindow">
|
11
11
|
<link rel="next" href="clutter-gtk-1.0-Utility-Functions.html" title="Utility Functions">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Utility Functions: Clutter-Gtk 1.8.
|
5
|
+
<title>Utility Functions: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
9
|
<link rel="up" href="ch03.html" title="Miscellaneous">
|
10
10
|
<link rel="prev" href="ch03.html" title="Miscellaneous">
|
11
11
|
<link rel="next" href="ix01.html" title="Index">
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
2
|
-
<book xmlns="http://www.devhelp.net/book" title="Clutter-Gtk 1.8.
|
2
|
+
<book xmlns="http://www.devhelp.net/book" title="Clutter-Gtk 1.8.2 Reference Manual" link="index.html" author="" name="clutter-gtk-1.0" version="2" language="c">
|
3
3
|
<chapters>
|
4
4
|
<sub name="Clutter-Gtk Overview" link="ch01.html"/>
|
5
5
|
<sub name="Clutter-Gtk Widgets" link="ch02.html">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Part II. Glossaries: Clutter-Gtk 1.8.
|
5
|
+
<title>Part II. Glossaries: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="cluttergtk-object-index.html" title="Object Index">
|
11
11
|
<link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Object Hierarchy: Clutter-Gtk 1.8.
|
5
|
+
<title>Object Hierarchy: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
9
|
<link rel="up" href="cluttergtk-objects.html" title="Part I. Clutter-GTK Actors and Objects">
|
10
10
|
<link rel="prev" href="cluttergtk-objects.html" title="Part I. Clutter-GTK Actors and Objects">
|
11
11
|
<link rel="next" href="cluttergtk-object-index.html" title="Object Index">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Object Index: Clutter-Gtk 1.8.
|
5
|
+
<title>Object Index: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
9
|
<link rel="up" href="cluttergtk-objects.html" title="Part I. Clutter-GTK Actors and Objects">
|
10
10
|
<link rel="prev" href="cluttergtk-object-hierarchy.html" title="Object Hierarchy">
|
11
11
|
<link rel="next" href="cluttergtk-glossary.html" title="Part II. Glossaries">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Part I. Clutter-GTK Actors and Objects: Clutter-Gtk 1.8.
|
5
|
+
<title>Part I. Clutter-GTK Actors and Objects: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="ix01.html" title="Index">
|
11
11
|
<link rel="next" href="cluttergtk-object-hierarchy.html" title="Object Hierarchy">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,10 +2,10 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Clutter-Gtk 1.8.
|
5
|
+
<title>Clutter-Gtk 1.8.2 Reference Manual: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
9
|
<link rel="next" href="ch01.html" title="Clutter-Gtk Overview">
|
10
10
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
11
11
|
<link rel="stylesheet" href="style.css" type="text/css">
|
@@ -14,9 +14,9 @@
|
|
14
14
|
<div lang="en" class="book">
|
15
15
|
<div class="titlepage">
|
16
16
|
<div>
|
17
|
-
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter-Gtk 1.8.
|
17
|
+
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">Clutter-Gtk 1.8.2
|
18
18
|
Reference Manual</p></th></tr></table></div>
|
19
|
-
<div><p class="releaseinfo">Version 1.8.
|
19
|
+
<div><p class="releaseinfo">Version 1.8.2
|
20
20
|
</p></div>
|
21
21
|
<div><p class="copyright">Copyright © 2006, 2007, 2008, 2009 Intel Corporation</p></div>
|
22
22
|
<div><div class="legalnotice">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Index: Clutter-Gtk 1.8.
|
5
|
+
<title>Index: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="clutter-gtk-1.0-Utility-Functions.html" title="Utility Functions">
|
11
11
|
<link rel="next" href="cluttergtk-objects.html" title="Part I. Clutter-GTK Actors and Objects">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Index of all symbols: Clutter-Gtk 1.8.
|
5
|
+
<title>Index of all symbols: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="annotation-glossary.html" title="Annotation Glossary">
|
11
11
|
<link rel="next" href="ix03.html" title="Index of new symbols in 1.0">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Index of new symbols in 1.0: Clutter-Gtk 1.8.
|
5
|
+
<title>Index of new symbols in 1.0: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="ix02.html" title="Index of all symbols">
|
11
11
|
<link rel="next" href="ix04.html" title="Index of new symbols in 1.2">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Index of new symbols in 1.2: Clutter-Gtk 1.8.
|
5
|
+
<title>Index of new symbols in 1.2: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="ix03.html" title="Index of new symbols in 1.0">
|
11
11
|
<link rel="next" href="ix05.html" title="Index of new symbols in 1.4">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Index of new symbols in 1.4: Clutter-Gtk 1.8.
|
5
|
+
<title>Index of new symbols in 1.4: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="ix04.html" title="Index of new symbols in 1.2">
|
11
11
|
<link rel="next" href="ix06.html" title="Index of new symbols in 1.6">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Index of new symbols in 1.6: Clutter-Gtk 1.8.
|
5
|
+
<title>Index of new symbols in 1.6: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="ix05.html" title="Index of new symbols in 1.4">
|
11
11
|
<link rel="next" href="ix07.html" title="Index of deprecated symbols">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Index of deprecated symbols: Clutter-Gtk 1.8.
|
5
|
+
<title>Index of deprecated symbols: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="ix06.html" title="Index of new symbols in 1.6">
|
11
11
|
<link rel="next" href="license.html" title="Appendix A. License">
|
12
12
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
@@ -2,11 +2,11 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<title>Appendix A. License: Clutter-Gtk 1.8.
|
5
|
+
<title>Appendix A. License: Clutter-Gtk 1.8.2
|
6
6
|
Reference Manual</title>
|
7
7
|
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
8
|
-
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.
|
9
|
-
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.
|
8
|
+
<link rel="home" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
9
|
+
<link rel="up" href="index.html" title="Clutter-Gtk 1.8.2 Reference Manual">
|
10
10
|
<link rel="prev" href="ix07.html" title="Index of deprecated symbols">
|
11
11
|
<meta name="generator" content="GTK-Doc V1.25 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: clutter-gtk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0
|
4
|
+
version: 3.1.0
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME2 Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: clutter
|
@@ -16,28 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0
|
19
|
+
version: 3.1.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: 3.0
|
26
|
+
version: 3.1.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: clutter-gdk
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 3.1.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 3.1.0
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: gtk3
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
30
44
|
requirements:
|
31
45
|
- - '='
|
32
46
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.0
|
47
|
+
version: 3.1.0
|
34
48
|
type: :runtime
|
35
49
|
prerelease: false
|
36
50
|
version_requirements: !ruby/object:Gem::Requirement
|
37
51
|
requirements:
|
38
52
|
- - '='
|
39
53
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.0
|
54
|
+
version: 3.1.0
|
41
55
|
description: Ruby/ClutterGTK is a Ruby binding of Clutter-GTK.
|
42
56
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
43
57
|
executables: []
|
@@ -124,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
138
|
version: '0'
|
125
139
|
requirements: []
|
126
140
|
rubyforge_project:
|
127
|
-
rubygems_version: 2.
|
141
|
+
rubygems_version: 2.5.1
|
128
142
|
signing_key:
|
129
143
|
specification_version: 4
|
130
144
|
summary: Ruby/ClutterGTK is a Ruby binding of Clutter-GTK.
|