gdk3 1.2.4-x86-mingw32 → 1.2.5-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/gdk3/rbgdkcolor.c +7 -7
- data/ext/gdk3/rbgdkgeometry.c +3 -2
- data/ext/gdk3/rbgdkrectangle.c +7 -7
- data/ext/gdk3/rbgdkrgba.c +11 -11
- data/ext/gdk3/rbgdkwindow.c +2 -3
- data/ext/gdk3/rbgdkwindowattr.c +6 -6
- data/lib/1.9/gdk3.so +0 -0
- data/lib/2.0/gdk3.so +0 -0
- data/lib/gdk3/deprecated.rb +1 -0
- data/test/gdk-test-utils.rb +21 -0
- data/test/run-test.rb +48 -0
- data/test/test-gdk-color.rb +24 -0
- data/test/test-gdk-geometry.rb +24 -0
- data/test/test-gdk-rectangle.rb +24 -0
- data/test/test-gdk-rgba.rb +24 -0
- data/test/test-gdk-window-attr.rb +32 -0
- data/vendor/local/bin/gtk-launch.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-3.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/gtk3-demo-application.exe +0 -0
- data/vendor/local/bin/gtk3-demo.exe +0 -0
- data/vendor/local/bin/gtk3-widget-factory.exe +0 -0
- data/vendor/local/bin/libgailutil-3-0.dll +0 -0
- data/vendor/local/bin/libgdk-3-0.dll +0 -0
- data/vendor/local/bin/libgtk-3-0.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-am-et.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cedilla.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ime.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ipa.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-multipress.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-thai.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-er.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-ti-et.dll.a +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll +0 -0
- data/vendor/local/lib/gtk-3.0/3.0.0/immodules/im-viqr.dll.a +0 -0
- data/vendor/local/lib/libgailutil-3.dll.a +0 -0
- data/vendor/local/lib/libgdk-3.dll.a +0 -0
- data/vendor/local/lib/libgtk-3.dll.a +0 -0
- data/vendor/local/share/themes/Greybird/gtk-3.0/apps/lightdm-gtk-greeter.css +20 -70
- metadata +15 -8
data/ext/gdk3/rbgdkcolor.c
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
3
|
+
* Copyright (C) 2011-2013 Ruby-GNOME2 Project Team
|
4
4
|
* Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
|
5
5
|
* Copyright (C) 1998-2000 Yukihiro Matsumoto,
|
6
6
|
* Daisuke Kanda,
|
@@ -30,13 +30,13 @@
|
|
30
30
|
static VALUE
|
31
31
|
rg_initialize(VALUE self, VALUE red, VALUE green, VALUE blue)
|
32
32
|
{
|
33
|
-
GdkColor
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
33
|
+
GdkColor color;
|
34
|
+
color.pixel = 0;
|
35
|
+
color.red = NUM2INT(red);
|
36
|
+
color.green = NUM2INT(green);
|
37
|
+
color.blue = NUM2INT(blue);
|
38
38
|
|
39
|
-
G_INITIALIZE(self, &
|
39
|
+
G_INITIALIZE(self, g_boxed_copy(GDK_TYPE_COLOR, &color));
|
40
40
|
|
41
41
|
return Qnil;
|
42
42
|
}
|
data/ext/gdk3/rbgdkgeometry.c
CHANGED
@@ -53,8 +53,9 @@ gdk_geometry_get_type(void)
|
|
53
53
|
static VALUE
|
54
54
|
rg_initialize(VALUE self)
|
55
55
|
{
|
56
|
-
GdkGeometry
|
57
|
-
|
56
|
+
GdkGeometry geometry;
|
57
|
+
memset(&geometry, 0, sizeof(GdkGeometry));
|
58
|
+
G_INITIALIZE(self, g_boxed_copy(GDK_TYPE_GEOMETRY, &geometry));
|
58
59
|
return Qnil;
|
59
60
|
}
|
60
61
|
|
data/ext/gdk3/rbgdkrectangle.c
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
2
|
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
3
|
+
* Copyright (C) 2011-2013 Ruby-GNOME2 Project Team
|
4
4
|
* Copyright (C) 2002,2003 Masao Mutoh
|
5
5
|
* Copyright (C) 1998-2000 Yukihiro Matsumoto,
|
6
6
|
* Daisuke Kanda,
|
@@ -30,14 +30,14 @@
|
|
30
30
|
static VALUE
|
31
31
|
rg_initialize(VALUE self, VALUE x, VALUE y, VALUE width, VALUE height)
|
32
32
|
{
|
33
|
-
GdkRectangle
|
33
|
+
GdkRectangle rectangle;
|
34
34
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
35
|
+
rectangle.x = NUM2INT(x);
|
36
|
+
rectangle.y = NUM2INT(y);
|
37
|
+
rectangle.width = NUM2INT(width);
|
38
|
+
rectangle.height = NUM2INT(height);
|
39
39
|
|
40
|
-
G_INITIALIZE(self, &
|
40
|
+
G_INITIALIZE(self, g_boxed_copy(GDK_TYPE_RECTANGLE, &rectangle));
|
41
41
|
return Qnil;
|
42
42
|
}
|
43
43
|
|
data/ext/gdk3/rbgdkrgba.c
CHANGED
@@ -35,14 +35,14 @@ rg_s_parse(G_GNUC_UNUSED VALUE self, VALUE spec)
|
|
35
35
|
static VALUE
|
36
36
|
rg_initialize(VALUE self, VALUE red, VALUE green, VALUE blue, VALUE alpha)
|
37
37
|
{
|
38
|
-
GdkRGBA
|
38
|
+
GdkRGBA rgba;
|
39
39
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
40
|
+
rgba.red = NUM2DBL(red);
|
41
|
+
rgba.green = NUM2DBL(green);
|
42
|
+
rgba.blue = NUM2DBL(blue);
|
43
|
+
rgba.alpha = NUM2DBL(alpha);
|
44
44
|
|
45
|
-
G_INITIALIZE(self, &
|
45
|
+
G_INITIALIZE(self, g_boxed_copy(GDK_TYPE_RGBA, &rgba));
|
46
46
|
|
47
47
|
return Qnil;
|
48
48
|
}
|
@@ -102,11 +102,11 @@ rg_set_alpha(VALUE self, VALUE alpha)
|
|
102
102
|
static VALUE
|
103
103
|
rg_to_a(VALUE self)
|
104
104
|
{
|
105
|
-
GdkRGBA *
|
106
|
-
return rb_ary_new3(4, DBL2NUM(
|
107
|
-
DBL2NUM(
|
108
|
-
DBL2NUM(
|
109
|
-
DBL2NUM(
|
105
|
+
GdkRGBA *rgba = _SELF(self);
|
106
|
+
return rb_ary_new3(4, DBL2NUM(rgba->red),
|
107
|
+
DBL2NUM(rgba->green),
|
108
|
+
DBL2NUM(rgba->blue),
|
109
|
+
DBL2NUM(rgba->alpha));
|
110
110
|
}
|
111
111
|
|
112
112
|
static VALUE
|
data/ext/gdk3/rbgdkwindow.c
CHANGED
@@ -1019,9 +1019,8 @@ Init_gdk_window(VALUE mGdk)
|
|
1019
1019
|
RG_DEF_METHOD(drag_protocol, 0);
|
1020
1020
|
|
1021
1021
|
G_DEF_CLASS(GDK_TYPE_WINDOW_TYPE, "Type", RG_TARGET_NAMESPACE);
|
1022
|
-
|
1023
|
-
|
1024
|
-
*/
|
1022
|
+
G_DEF_CLASS(GDK_TYPE_WINDOW_WINDOW_CLASS, "WindowClass",
|
1023
|
+
RG_TARGET_NAMESPACE);
|
1025
1024
|
G_DEF_CLASS(GDK_TYPE_WINDOW_HINTS, "Hints", RG_TARGET_NAMESPACE);
|
1026
1025
|
G_DEF_CLASS(GDK_TYPE_GRAVITY, "Gravity", RG_TARGET_NAMESPACE);
|
1027
1026
|
G_DEF_CLASS(GDK_TYPE_WINDOW_EDGE, "Edge", RG_TARGET_NAMESPACE);
|
data/ext/gdk3/rbgdkwindowattr.c
CHANGED
@@ -51,12 +51,12 @@ static VALUE
|
|
51
51
|
rg_initialize(VALUE self, VALUE width, VALUE height, VALUE wclass,
|
52
52
|
VALUE window_type)
|
53
53
|
{
|
54
|
-
GdkWindowAttr
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
G_INITIALIZE(self, &
|
54
|
+
GdkWindowAttr attribute;
|
55
|
+
attribute.width = NUM2INT(width);
|
56
|
+
attribute.height = NUM2INT(height);
|
57
|
+
attribute.wclass = RVAL2GDKWINDOWWINDOWCLASS(wclass);
|
58
|
+
attribute.window_type = RVAL2GDKWINDOWTYPE(window_type);
|
59
|
+
G_INITIALIZE(self, g_boxed_copy(GDK_TYPE_WINDOW_ATTR, &attribute));
|
60
60
|
return Qnil;
|
61
61
|
}
|
62
62
|
|
data/lib/1.9/gdk3.so
CHANGED
Binary file
|
data/lib/2.0/gdk3.so
CHANGED
Binary file
|
data/lib/gdk3/deprecated.rb
CHANGED
@@ -132,6 +132,7 @@ module Gdk
|
|
132
132
|
define_deprecated_flags :ModifierType
|
133
133
|
define_deprecated_enums :Type
|
134
134
|
define_deprecated_enums :TypeHint, 'TYPE_HINT'
|
135
|
+
define_deprecated_enums :WindowClass
|
135
136
|
define_deprecated_flags :WMDecoration, 'DECOR'
|
136
137
|
define_deprecated_flags :WMFunction, 'FUNC'
|
137
138
|
define_deprecated_method :clear, :warn => "Don't use this method."
|
@@ -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
|
+
require "test-unit"
|
18
|
+
require "test/unit/notify"
|
19
|
+
|
20
|
+
module GdkTestUtils
|
21
|
+
end
|
data/test/run-test.rb
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# Copyright (C) 2013 Ruby-GNOME2 Project Team
|
4
|
+
#
|
5
|
+
# This library is free software; you can redistribute it and/or
|
6
|
+
# modify it under the terms of the GNU Lesser General Public
|
7
|
+
# License as published by the Free Software Foundation; either
|
8
|
+
# version 2.1 of the License, or (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This library is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
# Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public
|
16
|
+
# License along with this library; if not, write to the Free Software
|
17
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
|
+
|
19
|
+
ruby_gnome2_base = File.join(File.dirname(__FILE__), "..", "..")
|
20
|
+
ruby_gnome2_base = File.expand_path(ruby_gnome2_base)
|
21
|
+
|
22
|
+
glib_base = File.join(ruby_gnome2_base, "glib2")
|
23
|
+
atk_base = File.join(ruby_gnome2_base, "atk")
|
24
|
+
pango_base = File.join(ruby_gnome2_base, "pango")
|
25
|
+
gdk_pixbuf_base = File.join(ruby_gnome2_base, "gdk_pixbuf2")
|
26
|
+
gdk3_base = File.join(ruby_gnome2_base, "gdk3")
|
27
|
+
|
28
|
+
[[glib_base, "glib2"],
|
29
|
+
[atk_base, "atk"],
|
30
|
+
[pango_base, "pango"],
|
31
|
+
[gdk_pixbuf_base, "gdk_pixbuf2"],
|
32
|
+
[gdk3_base, "gdk3"]].each do |target, module_name|
|
33
|
+
if system("which make > /dev/null")
|
34
|
+
`make -C #{target.dump} > /dev/null` or exit(false)
|
35
|
+
end
|
36
|
+
$LOAD_PATH.unshift(File.join(target, "ext", module_name))
|
37
|
+
$LOAD_PATH.unshift(File.join(target, "lib"))
|
38
|
+
end
|
39
|
+
|
40
|
+
$LOAD_PATH.unshift(File.join(glib_base, "test"))
|
41
|
+
require "glib-test-init"
|
42
|
+
|
43
|
+
$LOAD_PATH.unshift(File.join(gdk3_base, "test"))
|
44
|
+
require "gdk-test-utils"
|
45
|
+
|
46
|
+
require "gdk3"
|
47
|
+
|
48
|
+
exit Test::Unit::AutoRunner.run(true)
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
# Copyright (C) 2013 Ruby-GNOME2 Project Team
|
4
|
+
#
|
5
|
+
# This library is free software; you can redistribute it and/or
|
6
|
+
# modify it under the terms of the GNU Lesser General Public
|
7
|
+
# License as published by the Free Software Foundation; either
|
8
|
+
# version 2.1 of the License, or (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This library is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
# Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public
|
16
|
+
# License along with this library; if not, write to the Free Software
|
17
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
|
+
|
19
|
+
class TestGdkColor < Test::Unit::TestCase
|
20
|
+
def test_to_s
|
21
|
+
color = Gdk::Color.new(0xffff, 0x1234, 0xabcd)
|
22
|
+
assert_equal("#ffff1234abcd", color.to_s)
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
# Copyright (C) 2013 Ruby-GNOME2 Project Team
|
4
|
+
#
|
5
|
+
# This library is free software; you can redistribute it and/or
|
6
|
+
# modify it under the terms of the GNU Lesser General Public
|
7
|
+
# License as published by the Free Software Foundation; either
|
8
|
+
# version 2.1 of the License, or (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This library is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
# Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public
|
16
|
+
# License along with this library; if not, write to the Free Software
|
17
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
|
+
|
19
|
+
class TestGdkGeometry < Test::Unit::TestCase
|
20
|
+
def test_min_width
|
21
|
+
geometry = Gdk::Geometry.new
|
22
|
+
assert_equal(0, geometry.min_width)
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
# Copyright (C) 2013 Ruby-GNOME2 Project Team
|
4
|
+
#
|
5
|
+
# This library is free software; you can redistribute it and/or
|
6
|
+
# modify it under the terms of the GNU Lesser General Public
|
7
|
+
# License as published by the Free Software Foundation; either
|
8
|
+
# version 2.1 of the License, or (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This library is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
# Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public
|
16
|
+
# License along with this library; if not, write to the Free Software
|
17
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
|
+
|
19
|
+
class TestGdkRectangle < Test::Unit::TestCase
|
20
|
+
def test_width
|
21
|
+
rectangle = Gdk::Rectangle.new(0, 10, 20, 30)
|
22
|
+
assert_equal(20, rectangle.width)
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
# Copyright (C) 2013 Ruby-GNOME2 Project Team
|
4
|
+
#
|
5
|
+
# This library is free software; you can redistribute it and/or
|
6
|
+
# modify it under the terms of the GNU Lesser General Public
|
7
|
+
# License as published by the Free Software Foundation; either
|
8
|
+
# version 2.1 of the License, or (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This library is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
# Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public
|
16
|
+
# License along with this library; if not, write to the Free Software
|
17
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
|
+
|
19
|
+
class TestGdkRGBA < Test::Unit::TestCase
|
20
|
+
def test_to_s
|
21
|
+
rgba = Gdk::RGBA.new(0.1, 0.2, 0.3, 0.5)
|
22
|
+
assert_equal("rgba(26,51,77,0.5)", rgba.to_s)
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
#
|
3
|
+
# Copyright (C) 2013 Ruby-GNOME2 Project Team
|
4
|
+
#
|
5
|
+
# This library is free software; you can redistribute it and/or
|
6
|
+
# modify it under the terms of the GNU Lesser General Public
|
7
|
+
# License as published by the Free Software Foundation; either
|
8
|
+
# version 2.1 of the License, or (at your option) any later version.
|
9
|
+
#
|
10
|
+
# This library is distributed in the hope that it will be useful,
|
11
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
# Lesser General Public License for more details.
|
14
|
+
#
|
15
|
+
# You should have received a copy of the GNU Lesser General Public
|
16
|
+
# License along with this library; if not, write to the Free Software
|
17
|
+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
18
|
+
|
19
|
+
class TestGdkWindowAttr < Test::Unit::TestCase
|
20
|
+
include GdkTestUtils
|
21
|
+
|
22
|
+
def test_initialize
|
23
|
+
attrs = Gdk::WindowAttr.new(100, 100, :input_only, :temp)
|
24
|
+
assert_equal([
|
25
|
+
100,
|
26
|
+
100,
|
27
|
+
Gdk::Window::WindowClass::INPUT_ONLY,
|
28
|
+
Gdk::Window::Type::TEMP,
|
29
|
+
],
|
30
|
+
[attrs.width, attrs.height, attrs.wclass, attrs.window_type])
|
31
|
+
end
|
32
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,4 +1,5 @@
|
|
1
|
-
#login_window
|
1
|
+
#login_window,
|
2
|
+
#login_notebook {
|
2
3
|
background-color: shade (@lightdm_bg_color, 0.9);
|
3
4
|
|
4
5
|
border-width: 0px;
|
@@ -11,6 +12,10 @@
|
|
11
12
|
border-radius: 10px;
|
12
13
|
}
|
13
14
|
|
15
|
+
#login_notebook {
|
16
|
+
border-radius: 0px;
|
17
|
+
}
|
18
|
+
|
14
19
|
#login_window * {
|
15
20
|
color: @lightdm_fg_color;
|
16
21
|
}
|
@@ -20,7 +25,7 @@
|
|
20
25
|
}
|
21
26
|
|
22
27
|
#panel_window,
|
23
|
-
#menubar {
|
28
|
+
#panel_window > #menubar {
|
24
29
|
background-color: @lightdm_bg_color;
|
25
30
|
background-image: none;
|
26
31
|
color: @lightdm_fg_color;
|
@@ -30,11 +35,11 @@
|
|
30
35
|
border-width: 0px 0px 0px 0px;
|
31
36
|
}
|
32
37
|
|
33
|
-
#menubar * {
|
38
|
+
#panel_window > #menubar * {
|
34
39
|
text-shadow: none;
|
35
40
|
}
|
36
41
|
|
37
|
-
#menubar *:hover {
|
42
|
+
#panel_window > #menubar *:hover {
|
38
43
|
text-shadow: 0px 1px alpha(@dark_shadow, 0.8);
|
39
44
|
}
|
40
45
|
|
@@ -75,16 +80,25 @@
|
|
75
80
|
border-color: @theme_selected_bg_color;
|
76
81
|
}
|
77
82
|
|
83
|
+
#language_combobox .button:insensitive,
|
84
|
+
#session_combobox .button:insensitive {
|
85
|
+
background-color: shade (@lightdm_bg_color, 1.5);
|
86
|
+
}
|
87
|
+
|
78
88
|
#login_window GtkComboBox .button {
|
79
89
|
padding: 2px 6px 2px 2px;
|
80
90
|
}
|
81
91
|
|
82
|
-
#user_combobox .menu
|
92
|
+
#user_combobox .menu *,
|
93
|
+
#session_combobox .menu *,
|
94
|
+
#language_combobox .menu * {
|
83
95
|
color: shade (@lightdm_fg_color, 0.2);
|
84
96
|
text-shadow: none;
|
85
97
|
}
|
86
98
|
|
87
|
-
#user_combobox .menu *:hover
|
99
|
+
#user_combobox .menu *:hover,
|
100
|
+
#session_combobox .menu *:hover,
|
101
|
+
#language_combobox .menu *:hover {
|
88
102
|
color: @lightdm_fg_color;
|
89
103
|
text-shadow: 0px 1px alpha(@dark_shadow, 0.4);
|
90
104
|
}
|
@@ -110,67 +124,3 @@
|
|
110
124
|
#login_button:hover {
|
111
125
|
background-color: shade(@selected_bg_color, 0.8);
|
112
126
|
}
|
113
|
-
|
114
|
-
/* Code for lightdm-gtk-greeter <= 1.6
|
115
|
-
#panel_window #menubar,
|
116
|
-
#login_notebook {
|
117
|
-
background-color: @lightdm_bg_color;
|
118
|
-
background-image: none;
|
119
|
-
color: @lightdm_fg_color;
|
120
|
-
}
|
121
|
-
|
122
|
-
#login_notebook .button,
|
123
|
-
#cancel_button,
|
124
|
-
#login_button {
|
125
|
-
background-image: -gtk-gradient(linear, left top, left bottom,
|
126
|
-
from (shade(@lightdm_bg_color, 1.15)),
|
127
|
-
to (shade(@lightdm_bg_color, 0.92)));
|
128
|
-
|
129
|
-
border-color: shade(@lightdm_bg_color, 0.6);
|
130
|
-
color: @lightdm_fg_color;
|
131
|
-
|
132
|
-
box-shadow: inset 1px 0 alpha(shade(@lightdm_fg_color, 0.9), 0.2),
|
133
|
-
inset 0 1px alpha(shade(@lightdm_fg_color, 0.9), 0.2),
|
134
|
-
inset -1px 0 alpha(shade(@lightdm_fg_color, 0.9), 0.2),
|
135
|
-
inset 0 -1px alpha(shade(@lightdm_fg_color, 0.7), 0.1);
|
136
|
-
}
|
137
|
-
|
138
|
-
#login_notebook .button:hover {
|
139
|
-
background-image: -gtk-gradient(linear, left top, left bottom,
|
140
|
-
from (shade(@lightdm_bg_color, 1.45)),
|
141
|
-
to (shade(@lightdm_bg_color, 1.25)));
|
142
|
-
}
|
143
|
-
|
144
|
-
#login_button.button {
|
145
|
-
background-image: -gtk-gradient(linear, left top, left bottom,
|
146
|
-
from (shade(@theme_selected_bg_color, 0.85)),
|
147
|
-
to (shade(@theme_selected_bg_color, 0.75)));
|
148
|
-
|
149
|
-
border-color: shade(@theme_selected_bg_color, 0.65);
|
150
|
-
color: @lightdm_fg_color;
|
151
|
-
|
152
|
-
box-shadow: inset 1px 0 alpha(shade(@lightdm_fg_color, 0.9), 0.3),
|
153
|
-
inset 0 1px alpha(shade(@lightdm_fg_color, 0.9), 0.3),
|
154
|
-
inset -1px 0 alpha(shade(@lightdm_fg_color, 0.9), 0.3),
|
155
|
-
inset 0 -1px alpha(shade(@lightdm_fg_color, 0.7), 0.15);
|
156
|
-
}
|
157
|
-
|
158
|
-
#login_button.button:hover {
|
159
|
-
background-image: -gtk-gradient(linear, left top, left bottom,
|
160
|
-
from (shade(@theme_selected_bg_color, 1.05)),
|
161
|
-
to (shade(@theme_selected_bg_color, 0.95)));
|
162
|
-
}
|
163
|
-
|
164
|
-
#panel_window .menubar.menuitem:focus,
|
165
|
-
#panel_window .menubar .menuitem:focus,
|
166
|
-
#login_notebook .button:focus,
|
167
|
-
#login_notebook .button:hover:focus,
|
168
|
-
#login_notebook .button:active:focus {
|
169
|
-
border-color: alpha(@theme_selected_bg_color, 0.4);
|
170
|
-
|
171
|
-
box-shadow: inset 1px 0 alpha(@theme_selected_bg_color, 0.4),
|
172
|
-
inset 0 1px alpha(@theme_selected_bg_color, 0.4),
|
173
|
-
inset -1px 0 alpha(@theme_selected_bg_color, 0.4),
|
174
|
-
inset 0 -1px alpha(@theme_selected_bg_color, 0.4);
|
175
|
-
}
|
176
|
-
*/
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gdk3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.5
|
5
5
|
prerelease:
|
6
6
|
platform: x86-mingw32
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: atk
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.2.
|
21
|
+
version: 1.2.5
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.2.
|
29
|
+
version: 1.2.5
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: pango
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -34,7 +34,7 @@ dependencies:
|
|
34
34
|
requirements:
|
35
35
|
- - ! '>='
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version: 1.2.
|
37
|
+
version: 1.2.5
|
38
38
|
type: :runtime
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -42,7 +42,7 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: 1.2.
|
45
|
+
version: 1.2.5
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
47
|
name: gdk_pixbuf2
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - ! '>='
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.2.
|
53
|
+
version: 1.2.5
|
54
54
|
type: :runtime
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -58,7 +58,7 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - ! '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.2.
|
61
|
+
version: 1.2.5
|
62
62
|
description: Ruby/GDK3 is a Ruby binding of GDK-3.x.
|
63
63
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
64
64
|
executables: []
|
@@ -108,6 +108,13 @@ files:
|
|
108
108
|
- ext/gdk3/rbgdkwindowattr.c
|
109
109
|
- ext/gdk3/rbgdkx11.c
|
110
110
|
- ext/gdk3/rbgdkx11x11window.c
|
111
|
+
- test/gdk-test-utils.rb
|
112
|
+
- test/run-test.rb
|
113
|
+
- test/test-gdk-color.rb
|
114
|
+
- test/test-gdk-geometry.rb
|
115
|
+
- test/test-gdk-rectangle.rb
|
116
|
+
- test/test-gdk-rgba.rb
|
117
|
+
- test/test-gdk-window-attr.rb
|
111
118
|
- lib/1.9/gdk3.so
|
112
119
|
- lib/2.0/gdk3.so
|
113
120
|
- vendor/local/bin/gtk-launch.exe
|