gtk2 1.0.3 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +66 -1
- data/ext/gtk2/extconf.rb +0 -96
- data/ext/gtk2/global.h +274 -13
- data/ext/gtk2/gtk2.def +5 -3
- data/ext/gtk2/init.c +263 -19
- data/ext/gtk2/rbgdk.c +245 -89
- data/ext/gtk2/rbgdk.h +32 -6
- data/ext/gtk2/rbgdkatom.c +38 -28
- data/ext/gtk2/rbgdkcairo.c +32 -42
- data/ext/gtk2/rbgdkcolor.c +52 -42
- data/ext/gtk2/rbgdkcolormap.c +42 -37
- data/ext/gtk2/rbgdkconst.c +23 -13
- data/ext/gtk2/rbgdkconversions.h +19 -6
- data/ext/gtk2/rbgdkcursor.c +37 -25
- data/ext/gtk2/rbgdkdevice.c +77 -67
- data/ext/gtk2/rbgdkdisplay.c +158 -150
- data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
- data/ext/gtk2/rbgdkdragcontext.c +121 -70
- data/ext/gtk2/rbgdkdraw.c +252 -160
- data/ext/gtk2/rbgdkevent.c +30 -20
- data/ext/gtk2/rbgdkgc.c +123 -116
- data/ext/gtk2/rbgdkgeometry.c +77 -68
- data/ext/gtk2/rbgdkimage.c +58 -47
- data/ext/gtk2/rbgdkinput.c +33 -26
- data/ext/gtk2/rbgdkkeymap.c +38 -27
- data/ext/gtk2/rbgdkkeyval.c +44 -32
- data/ext/gtk2/rbgdkpango.c +66 -39
- data/ext/gtk2/rbgdkpangorenderer.c +63 -35
- data/ext/gtk2/rbgdkpixbuf.c +36 -25
- data/ext/gtk2/rbgdkpixmap.c +65 -49
- data/ext/gtk2/rbgdkproperty.c +66 -60
- data/ext/gtk2/rbgdkrectangle.c +54 -46
- data/ext/gtk2/rbgdkregion.c +144 -79
- data/ext/gtk2/rbgdkrgb.c +74 -58
- data/ext/gtk2/rbgdkscreen.c +103 -97
- data/ext/gtk2/rbgdkselection.c +49 -39
- data/ext/gtk2/rbgdkthreads.c +32 -19
- data/ext/gtk2/rbgdktimecoord.c +60 -38
- data/ext/gtk2/rbgdkvisual.c +79 -71
- data/ext/gtk2/rbgdkwindow.c +284 -305
- data/ext/gtk2/rbgdkwindowattr.c +69 -58
- data/ext/gtk2/rbgdkx11.c +41 -28
- data/ext/gtk2/rbgtk.c +498 -19
- data/ext/gtk2/rbgtk.h +35 -20
- data/ext/gtk2/rbgtkaboutdialog.c +33 -80
- data/ext/gtk2/rbgtkaccelerator.c +36 -23
- data/ext/gtk2/rbgtkaccelgroup.c +50 -40
- data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
- data/ext/gtk2/rbgtkaccelkey.c +40 -28
- data/ext/gtk2/rbgtkaccellabel.c +30 -18
- data/ext/gtk2/rbgtkaccelmap.c +55 -42
- data/ext/gtk2/rbgtkaccessible.c +25 -14
- data/ext/gtk2/rbgtkaction.c +68 -68
- data/ext/gtk2/rbgtkactiongroup.c +317 -195
- data/ext/gtk2/rbgtkadjustment.c +33 -46
- data/ext/gtk2/rbgtkalignment.c +36 -24
- data/ext/gtk2/rbgtkallocation.c +53 -42
- data/ext/gtk2/rbgtkarrow.c +34 -22
- data/ext/gtk2/rbgtkaspectframe.c +32 -20
- data/ext/gtk2/rbgtkassistant.c +81 -61
- data/ext/gtk2/rbgtkbbox.c +32 -20
- data/ext/gtk2/rbgtkbin.c +28 -16
- data/ext/gtk2/rbgtkbindingset.c +42 -35
- data/ext/gtk2/rbgtkborder.c +34 -23
- data/ext/gtk2/rbgtkbox.c +40 -29
- data/ext/gtk2/rbgtkbuildable.c +57 -45
- data/ext/gtk2/rbgtkbuilder.c +53 -38
- data/ext/gtk2/rbgtkbutton.c +41 -55
- data/ext/gtk2/rbgtkcalendar.c +51 -40
- data/ext/gtk2/rbgtkcelleditable.c +28 -17
- data/ext/gtk2/rbgtkcelllayout.c +41 -30
- data/ext/gtk2/rbgtkcellrenderer.c +43 -32
- data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
- data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
- data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
- data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
- data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
- data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
- data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
- data/ext/gtk2/rbgtkcellview.c +34 -33
- data/ext/gtk2/rbgtkcheckbutton.c +28 -16
- data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
- data/ext/gtk2/rbgtkclipboard.c +123 -77
- data/ext/gtk2/rbgtkcolorbutton.c +26 -31
- data/ext/gtk2/rbgtkcolorsel.c +109 -55
- data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
- data/ext/gtk2/rbgtkcombo.c +43 -32
- data/ext/gtk2/rbgtkcombobox.c +44 -83
- data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
- data/ext/gtk2/rbgtkconst.c +23 -13
- data/ext/gtk2/rbgtkcontainer.c +153 -100
- data/ext/gtk2/rbgtkconversions.h +19 -6
- data/ext/gtk2/rbgtkcurve.c +46 -36
- data/ext/gtk2/rbgtkdialog.c +104 -70
- data/ext/gtk2/rbgtkdrag.c +173 -121
- data/ext/gtk2/rbgtkdrawingarea.c +28 -16
- data/ext/gtk2/rbgtkeditable.c +63 -51
- data/ext/gtk2/rbgtkentry.c +48 -85
- data/ext/gtk2/rbgtkentrycompletion.c +42 -55
- data/ext/gtk2/rbgtkeventbox.c +28 -16
- data/ext/gtk2/rbgtkexpander.c +26 -35
- data/ext/gtk2/rbgtkfilechooser.c +87 -143
- data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
- data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
- data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
- data/ext/gtk2/rbgtkfilefilter.c +45 -35
- data/ext/gtk2/rbgtkfilesel.c +54 -43
- data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
- data/ext/gtk2/rbgtkfixed.c +36 -25
- data/ext/gtk2/rbgtkfontbutton.c +26 -37
- data/ext/gtk2/rbgtkfontselection.c +27 -15
- data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
- data/ext/gtk2/rbgtkframe.c +39 -28
- data/ext/gtk2/rbgtkgamma.c +32 -20
- data/ext/gtk2/rbgtkhandlebox.c +31 -19
- data/ext/gtk2/rbgtkhbbox.c +28 -16
- data/ext/gtk2/rbgtkhbox.c +29 -17
- data/ext/gtk2/rbgtkhpaned.c +28 -16
- data/ext/gtk2/rbgtkhruler.c +28 -16
- data/ext/gtk2/rbgtkhscale.c +28 -16
- data/ext/gtk2/rbgtkhscrollbar.c +28 -16
- data/ext/gtk2/rbgtkhseparator.c +28 -16
- data/ext/gtk2/rbgtkiconfactory.c +35 -23
- data/ext/gtk2/rbgtkiconinfo.c +42 -30
- data/ext/gtk2/rbgtkiconset.c +31 -19
- data/ext/gtk2/rbgtkiconsize.c +38 -25
- data/ext/gtk2/rbgtkiconsource.c +62 -50
- data/ext/gtk2/rbgtkicontheme.c +95 -95
- data/ext/gtk2/rbgtkiconview.c +87 -121
- data/ext/gtk2/rbgtkimage.c +31 -40
- data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
- data/ext/gtk2/rbgtkimcontext.c +46 -34
- data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
- data/ext/gtk2/rbgtkimmulticontext.c +26 -14
- data/ext/gtk2/rbgtkinputdialog.c +28 -16
- data/ext/gtk2/rbgtkinvisible.c +24 -18
- data/ext/gtk2/rbgtkitem.c +32 -20
- data/ext/gtk2/rbgtkitemfactory.c +65 -57
- data/ext/gtk2/rbgtklabel.c +46 -57
- data/ext/gtk2/rbgtklayout.c +40 -29
- data/ext/gtk2/rbgtklinkbutton.c +26 -15
- data/ext/gtk2/rbgtkliststore.c +145 -102
- data/ext/gtk2/rbgtkmacros.h +19 -6
- data/ext/gtk2/rbgtkmenu.c +47 -59
- data/ext/gtk2/rbgtkmenubar.c +30 -30
- data/ext/gtk2/rbgtkmenuitem.c +34 -41
- data/ext/gtk2/rbgtkmenushell.c +43 -42
- data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
- data/ext/gtk2/rbgtkmessagedialog.c +31 -25
- data/ext/gtk2/rbgtkmisc.c +33 -22
- data/ext/gtk2/rbgtknotebook.c +98 -134
- data/ext/gtk2/rbgtkobject.c +46 -81
- data/ext/gtk2/rbgtkoptionmenu.c +35 -23
- data/ext/gtk2/rbgtkpagesetup.c +64 -54
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
- data/ext/gtk2/rbgtkpaned.c +46 -36
- data/ext/gtk2/rbgtkpapersize.c +60 -54
- data/ext/gtk2/rbgtkplug.c +32 -20
- data/ext/gtk2/rbgtkprintcontext.c +43 -35
- data/ext/gtk2/rbgtkprinter.c +36 -37
- data/ext/gtk2/rbgtkprintjob.c +36 -37
- data/ext/gtk2/rbgtkprintoperation.c +44 -33
- data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
- data/ext/gtk2/rbgtkprintsettings.c +248 -192
- data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
- data/ext/gtk2/rbgtkprogress.c +23 -13
- data/ext/gtk2/rbgtkprogressbar.c +47 -46
- data/ext/gtk2/rbgtkradioaction.c +84 -39
- data/ext/gtk2/rbgtkradiobutton.c +33 -21
- data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
- data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
- data/ext/gtk2/rbgtkrange.c +36 -56
- data/ext/gtk2/rbgtkrc.c +61 -49
- data/ext/gtk2/rbgtkrcstyle.c +59 -48
- data/ext/gtk2/rbgtkrecentaction.c +28 -16
- data/ext/gtk2/rbgtkrecentchooser.c +58 -92
- data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
- data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
- data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
- data/ext/gtk2/rbgtkrecentdata.c +47 -36
- data/ext/gtk2/rbgtkrecentfilter.c +55 -46
- data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
- data/ext/gtk2/rbgtkrecentinfo.c +66 -56
- data/ext/gtk2/rbgtkrecentmanager.c +47 -43
- data/ext/gtk2/rbgtkruler.c +35 -30
- data/ext/gtk2/rbgtkscale.c +29 -18
- data/ext/gtk2/rbgtkscalebutton.c +27 -27
- data/ext/gtk2/rbgtkscrollbar.c +23 -13
- data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
- data/ext/gtk2/rbgtkselection.c +87 -67
- data/ext/gtk2/rbgtkselectiondata.c +74 -65
- data/ext/gtk2/rbgtkseparator.c +23 -13
- data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
- data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
- data/ext/gtk2/rbgtksettings.c +123 -103
- data/ext/gtk2/rbgtksizegroup.c +33 -30
- data/ext/gtk2/rbgtksocket.c +32 -20
- data/ext/gtk2/rbgtkspinbutton.c +48 -38
- data/ext/gtk2/rbgtkspinner.c +27 -14
- data/ext/gtk2/rbgtkstatusbar.c +36 -31
- data/ext/gtk2/rbgtkstatusicon.c +31 -44
- data/ext/gtk2/rbgtkstock.c +137 -125
- data/ext/gtk2/rbgtkstyle.c +177 -161
- data/ext/gtk2/rbgtktable.c +58 -47
- data/ext/gtk2/rbgtktargetlist.c +56 -36
- data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
- data/ext/gtk2/rbgtktextappearance.c +44 -34
- data/ext/gtk2/rbgtktextattributes.c +54 -42
- data/ext/gtk2/rbgtktextbuffer.c +188 -191
- data/ext/gtk2/rbgtktextchild.c +29 -18
- data/ext/gtk2/rbgtktextiter.c +153 -145
- data/ext/gtk2/rbgtktextmark.c +33 -30
- data/ext/gtk2/rbgtktexttag.c +34 -22
- data/ext/gtk2/rbgtktexttagtable.c +36 -25
- data/ext/gtk2/rbgtktextview.c +85 -73
- data/ext/gtk2/rbgtktoggleaction.c +27 -22
- data/ext/gtk2/rbgtktogglebutton.c +37 -26
- data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
- data/ext/gtk2/rbgtktoolbar.c +66 -69
- data/ext/gtk2/rbgtktoolbutton.c +27 -40
- data/ext/gtk2/rbgtktoolitem.c +60 -62
- data/ext/gtk2/rbgtktooltip.c +36 -25
- data/ext/gtk2/rbgtktooltips.c +42 -34
- data/ext/gtk2/rbgtktreedragdest.c +20 -11
- data/ext/gtk2/rbgtktreedragsource.c +20 -11
- data/ext/gtk2/rbgtktreeiter.c +58 -47
- data/ext/gtk2/rbgtktreemodel.c +83 -65
- data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
- data/ext/gtk2/rbgtktreemodelsort.c +38 -27
- data/ext/gtk2/rbgtktreepath.c +55 -44
- data/ext/gtk2/rbgtktreerowreference.c +60 -42
- data/ext/gtk2/rbgtktreeselection.c +61 -52
- data/ext/gtk2/rbgtktreesortable.c +52 -42
- data/ext/gtk2/rbgtktreestore.c +88 -67
- data/ext/gtk2/rbgtktreeview.c +157 -185
- data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
- data/ext/gtk2/rbgtkuimanager.c +61 -61
- data/ext/gtk2/rbgtkvbbox.c +28 -16
- data/ext/gtk2/rbgtkvbox.c +29 -17
- data/ext/gtk2/rbgtkviewport.c +28 -16
- data/ext/gtk2/rbgtkvolumebutton.c +28 -16
- data/ext/gtk2/rbgtkvpaned.c +28 -16
- data/ext/gtk2/rbgtkvruler.c +28 -16
- data/ext/gtk2/rbgtkvscale.c +28 -16
- data/ext/gtk2/rbgtkvscrollbar.c +28 -16
- data/ext/gtk2/rbgtkvseparator.c +28 -16
- data/ext/gtk2/rbgtkwidget.c +284 -296
- data/ext/gtk2/rbgtkwindow.c +156 -214
- data/ext/gtk2/rbgtkwindowgroup.c +35 -24
- data/sample/testgtk/labels.rb +1 -0
- data/sample/testgtk/testgtk.rb +2 -0
- metadata +16 -17
- data/ChangeLog +0 -6902
- data/ext/gtk2/rbgtkmain.c +0 -493
data/ext/gtk2/rbgtkiconsource.c
CHANGED
@@ -1,19 +1,31 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2002,2003 OGASAWARA, Takeshi
|
5
|
+
*
|
6
|
+
* This library is free software; you can redistribute it and/or
|
7
|
+
* modify it under the terms of the GNU Lesser General Public
|
8
|
+
* License as published by the Free Software Foundation; either
|
9
|
+
* version 2.1 of the License, or (at your option) any later version.
|
10
|
+
*
|
11
|
+
* This library is distributed in the hope that it will be useful,
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
+
* Lesser General Public License for more details.
|
15
|
+
*
|
16
|
+
* You should have received a copy of the GNU Lesser General Public
|
17
|
+
* License along with this library; if not, write to the Free Software
|
18
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
+
* MA 02110-1301 USA
|
20
|
+
*/
|
3
21
|
|
4
|
-
rbgtkiconsource.c -
|
5
|
-
|
6
|
-
$Author: ggc $
|
7
|
-
$Date: 2007/07/13 16:07:31 $
|
8
|
-
|
9
|
-
Copyright (C) 2002,2003 OGASAWARA, Takeshi
|
10
|
-
************************************************/
|
11
22
|
#include "global.h"
|
12
23
|
|
24
|
+
#define RG_TARGET_NAMESPACE cIconSource
|
13
25
|
#define _SELF(s) ((GtkIconSource*)RVAL2BOXED(s, GTK_TYPE_ICON_SOURCE))
|
14
26
|
|
15
27
|
static VALUE
|
16
|
-
|
28
|
+
rg_initialize(VALUE self)
|
17
29
|
{
|
18
30
|
GtkIconSource *icon_source;
|
19
31
|
|
@@ -23,26 +35,26 @@ icon_source_initialize(VALUE self)
|
|
23
35
|
}
|
24
36
|
|
25
37
|
static VALUE
|
26
|
-
|
38
|
+
rg_direction(VALUE self)
|
27
39
|
{
|
28
40
|
return GENUM2RVAL(gtk_icon_source_get_direction(_SELF(self)),
|
29
41
|
GTK_TYPE_TEXT_DIRECTION);
|
30
42
|
}
|
31
43
|
|
32
44
|
static VALUE
|
33
|
-
|
45
|
+
rg_direction_wildcarded_p(VALUE self)
|
34
46
|
{
|
35
47
|
return CBOOL2RVAL(gtk_icon_source_get_direction_wildcarded(_SELF(self)));
|
36
48
|
}
|
37
49
|
|
38
50
|
static VALUE
|
39
|
-
|
51
|
+
rg_filename(VALUE self)
|
40
52
|
{
|
41
53
|
return CSTR2RVAL(gtk_icon_source_get_filename(_SELF(self)));
|
42
54
|
}
|
43
55
|
|
44
56
|
static VALUE
|
45
|
-
|
57
|
+
rg_pixbuf(VALUE self)
|
46
58
|
{
|
47
59
|
GdkPixbuf *pixbuf;
|
48
60
|
pixbuf = gtk_icon_source_get_pixbuf(_SELF(self));
|
@@ -50,31 +62,31 @@ icon_source_get_pixbuf(VALUE self)
|
|
50
62
|
}
|
51
63
|
|
52
64
|
static VALUE
|
53
|
-
|
65
|
+
rg_size(VALUE self)
|
54
66
|
{
|
55
67
|
return GENUM2RVAL(gtk_icon_source_get_size(_SELF(self)), GTK_TYPE_ICON_SIZE);
|
56
68
|
}
|
57
69
|
|
58
70
|
static VALUE
|
59
|
-
|
71
|
+
rg_size_wildcarded_p(VALUE self)
|
60
72
|
{
|
61
73
|
return CBOOL2RVAL(gtk_icon_source_get_size_wildcarded(_SELF(self)));
|
62
74
|
}
|
63
75
|
|
64
76
|
static VALUE
|
65
|
-
|
77
|
+
rg_state(VALUE self)
|
66
78
|
{
|
67
79
|
return GENUM2RVAL(gtk_icon_source_get_state(_SELF(self)), GTK_TYPE_STATE_TYPE);
|
68
80
|
}
|
69
81
|
|
70
82
|
static VALUE
|
71
|
-
|
83
|
+
rg_state_wildcarded_p(VALUE self)
|
72
84
|
{
|
73
85
|
return CBOOL2RVAL(gtk_icon_source_get_state_wildcarded(_SELF(self)));
|
74
86
|
}
|
75
87
|
|
76
88
|
static VALUE
|
77
|
-
|
89
|
+
rg_set_direction(VALUE self, VALUE direction)
|
78
90
|
{
|
79
91
|
gtk_icon_source_set_direction(_SELF(self),
|
80
92
|
RVAL2GENUM(direction, GTK_TYPE_TEXT_DIRECTION));
|
@@ -82,78 +94,78 @@ icon_source_set_direction(VALUE self, VALUE direction)
|
|
82
94
|
}
|
83
95
|
|
84
96
|
static VALUE
|
85
|
-
|
97
|
+
rg_set_direction_wildcarded(VALUE self, VALUE setting)
|
86
98
|
{
|
87
99
|
gtk_icon_source_set_direction_wildcarded(_SELF(self), RVAL2CBOOL(setting));
|
88
100
|
return self;
|
89
101
|
}
|
90
102
|
|
91
103
|
static VALUE
|
92
|
-
|
104
|
+
rg_set_filename(VALUE self, VALUE filename)
|
93
105
|
{
|
94
106
|
gtk_icon_source_set_filename(_SELF(self), RVAL2CSTR(filename));
|
95
107
|
return self;
|
96
108
|
}
|
97
109
|
|
98
110
|
static VALUE
|
99
|
-
|
111
|
+
rg_set_pixbuf(VALUE self, VALUE pixbuf)
|
100
112
|
{
|
101
113
|
gtk_icon_source_set_pixbuf(_SELF(self), GDK_PIXBUF(RVAL2GOBJ(pixbuf)));
|
102
114
|
return self;
|
103
115
|
}
|
104
116
|
|
105
117
|
static VALUE
|
106
|
-
|
118
|
+
rg_set_size(VALUE self, VALUE size)
|
107
119
|
{
|
108
120
|
gtk_icon_source_set_size(_SELF(self), RVAL2GENUM(size, GTK_TYPE_ICON_SIZE));
|
109
121
|
return self;
|
110
122
|
}
|
111
123
|
|
112
124
|
static VALUE
|
113
|
-
|
125
|
+
rg_set_size_wildcarded(VALUE self, VALUE setting)
|
114
126
|
{
|
115
127
|
gtk_icon_source_set_size_wildcarded(_SELF(self), RVAL2CBOOL(setting));
|
116
128
|
return self;
|
117
129
|
}
|
118
130
|
|
119
131
|
static VALUE
|
120
|
-
|
132
|
+
rg_set_state(VALUE self, VALUE state)
|
121
133
|
{
|
122
134
|
gtk_icon_source_set_state(_SELF(self), RVAL2GENUM(state, GTK_TYPE_STATE_TYPE));
|
123
135
|
return self;
|
124
136
|
}
|
125
137
|
|
126
138
|
static VALUE
|
127
|
-
|
139
|
+
rg_set_state_wildcarded(VALUE self, VALUE setting)
|
128
140
|
{
|
129
141
|
gtk_icon_source_set_state_wildcarded(_SELF(self), RVAL2CBOOL(setting));
|
130
142
|
return self;
|
131
143
|
}
|
132
144
|
|
133
145
|
void
|
134
|
-
|
135
|
-
{
|
136
|
-
VALUE
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
G_DEF_SETTERS(
|
146
|
+
Init_gtk_icon_source(VALUE mGtk)
|
147
|
+
{
|
148
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_ICON_SOURCE, "IconSource", mGtk);
|
149
|
+
|
150
|
+
RG_DEF_METHOD(initialize, 0);
|
151
|
+
|
152
|
+
RG_DEF_METHOD(direction, 0);
|
153
|
+
RG_DEF_METHOD_P(direction_wildcarded, 0);
|
154
|
+
RG_DEF_METHOD(filename, 0);
|
155
|
+
RG_DEF_METHOD(pixbuf, 0);
|
156
|
+
RG_DEF_METHOD(size, 0);
|
157
|
+
RG_DEF_METHOD_P(size_wildcarded, 0);
|
158
|
+
RG_DEF_METHOD(state, 0);
|
159
|
+
RG_DEF_METHOD_P(state_wildcarded, 0);
|
160
|
+
|
161
|
+
RG_DEF_METHOD(set_direction, 1);
|
162
|
+
RG_DEF_METHOD(set_direction_wildcarded, 1);
|
163
|
+
RG_DEF_METHOD(set_filename, 1);
|
164
|
+
RG_DEF_METHOD(set_pixbuf, 1);
|
165
|
+
RG_DEF_METHOD(set_size, 1);
|
166
|
+
RG_DEF_METHOD(set_size_wildcarded, 1);
|
167
|
+
RG_DEF_METHOD(set_state, 1);
|
168
|
+
RG_DEF_METHOD(set_state_wildcarded, 1);
|
169
|
+
|
170
|
+
G_DEF_SETTERS(RG_TARGET_NAMESPACE);
|
159
171
|
}
|
data/ext/gtk2/rbgtkicontheme.c
CHANGED
@@ -1,100 +1,100 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2004,2005 Masao Mutoh
|
5
|
+
*
|
6
|
+
* This library is free software; you can redistribute it and/or
|
7
|
+
* modify it under the terms of the GNU Lesser General Public
|
8
|
+
* License as published by the Free Software Foundation; either
|
9
|
+
* version 2.1 of the License, or (at your option) any later version.
|
10
|
+
*
|
11
|
+
* This library is distributed in the hope that it will be useful,
|
12
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
+
* Lesser General Public License for more details.
|
15
|
+
*
|
16
|
+
* You should have received a copy of the GNU Lesser General Public
|
17
|
+
* License along with this library; if not, write to the Free Software
|
18
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
+
* MA 02110-1301 USA
|
20
|
+
*/
|
11
21
|
|
12
22
|
#include "global.h"
|
13
23
|
|
14
24
|
#if GTK_CHECK_VERSION(2,4,0)
|
25
|
+
|
26
|
+
#define RG_TARGET_NAMESPACE cIconTheme
|
15
27
|
#define _SELF(i) GTK_ICON_THEME(RVAL2GOBJ(i))
|
16
28
|
|
17
29
|
#define RVAL2ICON_LOOKUP_FLAGS(flags) (RVAL2GFLAGS(flags, GTK_TYPE_ICON_LOOKUP_FLAGS))
|
18
30
|
#define ICON_INFO2RVAL(info) (BOXED2RVAL(info, GTK_TYPE_ICON_INFO))
|
19
31
|
|
20
32
|
static VALUE
|
21
|
-
|
33
|
+
rg_initialize(VALUE self)
|
22
34
|
{
|
23
35
|
G_INITIALIZE(self, gtk_icon_theme_new());
|
24
36
|
return Qnil;
|
25
37
|
}
|
26
38
|
|
27
39
|
static VALUE
|
28
|
-
|
40
|
+
rg_s_default(G_GNUC_UNUSED VALUE self)
|
29
41
|
{
|
30
42
|
return GOBJ2RVAL(gtk_icon_theme_get_default());
|
31
43
|
}
|
32
44
|
|
33
45
|
static VALUE
|
34
|
-
|
46
|
+
rg_s_get_for_screen(G_GNUC_UNUSED VALUE self, VALUE screen)
|
35
47
|
{
|
36
48
|
return GOBJ2RVAL(gtk_icon_theme_get_for_screen(GDK_SCREEN(RVAL2GOBJ(screen))));
|
37
49
|
}
|
38
50
|
|
39
51
|
static VALUE
|
40
|
-
|
52
|
+
rg_set_screen(VALUE self, VALUE screen)
|
41
53
|
{
|
42
54
|
gtk_icon_theme_set_screen(_SELF(self), GDK_SCREEN(RVAL2GOBJ(screen)));
|
43
55
|
return self;
|
44
56
|
}
|
45
57
|
|
46
58
|
static VALUE
|
47
|
-
|
59
|
+
rg_set_search_path(VALUE self, VALUE rbpath)
|
48
60
|
{
|
49
|
-
|
50
|
-
|
61
|
+
GtkIconTheme *theme = _SELF(self);
|
62
|
+
long n;
|
63
|
+
const gchar **path = RVAL2STRS(rbpath, n);
|
51
64
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
gpaths = g_new(gchar*, size);
|
65
|
+
gtk_icon_theme_set_search_path(theme, path, n);
|
66
|
+
|
67
|
+
g_free(path);
|
56
68
|
|
57
|
-
for (i = 0; i < size; i++) {
|
58
|
-
gpaths[i] = (gchar*)(RARRAY_PTR(paths)[0]);
|
59
|
-
}
|
60
|
-
gtk_icon_theme_set_search_path(_SELF(self), (const gchar**)gpaths, size);
|
61
|
-
g_free(gpaths);
|
62
69
|
return self;
|
63
70
|
}
|
64
71
|
|
65
72
|
static VALUE
|
66
|
-
|
73
|
+
rg_search_path(VALUE self)
|
67
74
|
{
|
68
|
-
gchar**
|
69
|
-
gint size, i;
|
75
|
+
gchar **path;
|
70
76
|
|
71
|
-
|
72
|
-
VALUE ret = rb_ary_new();
|
73
|
-
gtk_icon_theme_get_search_path(_SELF(self), &path, &size);
|
77
|
+
gtk_icon_theme_get_search_path(_SELF(self), &path, NULL);
|
74
78
|
|
75
|
-
|
76
|
-
rb_ary_push(ret, CSTR2RVAL(path[i]));
|
77
|
-
}
|
78
|
-
g_strfreev(path);
|
79
|
-
return ret;
|
79
|
+
return STRV2RVAL_FREE(path);
|
80
80
|
}
|
81
81
|
|
82
82
|
static VALUE
|
83
|
-
|
83
|
+
rg_append_search_path(VALUE self, VALUE path)
|
84
84
|
{
|
85
85
|
gtk_icon_theme_append_search_path(_SELF(self), RVAL2CSTR(path));
|
86
86
|
return self;
|
87
87
|
}
|
88
88
|
|
89
89
|
static VALUE
|
90
|
-
|
90
|
+
rg_prepend_search_path(VALUE self, VALUE path)
|
91
91
|
{
|
92
92
|
gtk_icon_theme_prepend_search_path(_SELF(self), RVAL2CSTR(path));
|
93
93
|
return self;
|
94
94
|
}
|
95
95
|
|
96
96
|
static VALUE
|
97
|
-
|
97
|
+
rg_set_custom_theme(VALUE self, VALUE theme_name)
|
98
98
|
{
|
99
99
|
gtk_icon_theme_set_custom_theme(_SELF(self),
|
100
100
|
NIL_P(theme_name) ? NULL : RVAL2CSTR(theme_name));
|
@@ -102,42 +102,42 @@ it_set_custom_theme(VALUE self, VALUE theme_name)
|
|
102
102
|
}
|
103
103
|
|
104
104
|
static VALUE
|
105
|
-
|
105
|
+
rg_has_icon_p(VALUE self, VALUE icon_name)
|
106
106
|
{
|
107
107
|
return CBOOL2RVAL(gtk_icon_theme_has_icon(_SELF(self),
|
108
108
|
RVAL2CSTR(icon_name)));
|
109
109
|
}
|
110
110
|
|
111
111
|
static VALUE
|
112
|
-
|
112
|
+
rg_lookup_icon(VALUE self, VALUE icon_name, VALUE size, VALUE flags)
|
113
113
|
{
|
114
114
|
GtkIconInfo* info;
|
115
115
|
|
116
116
|
info = gtk_icon_theme_lookup_icon(_SELF(self),
|
117
|
-
|
118
|
-
|
119
|
-
|
117
|
+
RVAL2CSTR(icon_name),
|
118
|
+
NUM2INT(size),
|
119
|
+
RVAL2ICON_LOOKUP_FLAGS(flags));
|
120
120
|
return ICON_INFO2RVAL(info);
|
121
121
|
}
|
122
122
|
|
123
123
|
static VALUE
|
124
|
-
|
124
|
+
rg_load_icon(VALUE self, VALUE icon_name, VALUE size, VALUE flags)
|
125
125
|
{
|
126
126
|
GError *error = NULL;
|
127
127
|
GdkPixbuf *pixbuf;
|
128
128
|
|
129
129
|
pixbuf = gtk_icon_theme_load_icon(_SELF(self),
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
130
|
+
RVAL2CSTR(icon_name),
|
131
|
+
NUM2INT(size),
|
132
|
+
RVAL2ICON_LOOKUP_FLAGS(flags),
|
133
|
+
&error);
|
134
134
|
if (!pixbuf)
|
135
|
-
|
135
|
+
RAISE_GERROR(error);
|
136
136
|
return GOBJ2RVAL(pixbuf);
|
137
137
|
}
|
138
138
|
|
139
139
|
static VALUE
|
140
|
-
|
140
|
+
rg_icons(int argc, VALUE *argv, VALUE self)
|
141
141
|
{
|
142
142
|
VALUE context;
|
143
143
|
GList *icons;
|
@@ -145,13 +145,13 @@ it_list_icons(int argc, VALUE *argv, VALUE self)
|
|
145
145
|
rb_scan_args(argc, argv, "01", &context);
|
146
146
|
|
147
147
|
icons = gtk_icon_theme_list_icons(_SELF(self),
|
148
|
-
|
148
|
+
RVAL2CSTR_ACCEPT_NIL(context));
|
149
149
|
return GLIST2ARY_STR_FREE(icons);
|
150
150
|
}
|
151
151
|
|
152
152
|
#if GTK_CHECK_VERSION(2,6,0)
|
153
153
|
static VALUE
|
154
|
-
|
154
|
+
rg_get_icon_sizes(VALUE self, VALUE icon_name)
|
155
155
|
{
|
156
156
|
VALUE ary = rb_ary_new();
|
157
157
|
|
@@ -167,19 +167,19 @@ it_get_icon_sizes(VALUE self, VALUE icon_name)
|
|
167
167
|
#endif
|
168
168
|
|
169
169
|
static VALUE
|
170
|
-
|
170
|
+
rg_example_icon_name(VALUE self)
|
171
171
|
{
|
172
172
|
return CSTR2RVAL_FREE(gtk_icon_theme_get_example_icon_name(_SELF(self)));
|
173
173
|
}
|
174
174
|
|
175
175
|
static VALUE
|
176
|
-
|
176
|
+
rg_rescan_if_needed(VALUE self)
|
177
177
|
{
|
178
178
|
return CBOOL2RVAL(gtk_icon_theme_rescan_if_needed(_SELF(self)));
|
179
179
|
}
|
180
180
|
|
181
181
|
static VALUE
|
182
|
-
|
182
|
+
rg_s_add_builtin_icon(VALUE self, VALUE icon_name, VALUE size, VALUE pixbuf)
|
183
183
|
{
|
184
184
|
gtk_icon_theme_add_builtin_icon(RVAL2CSTR(icon_name), NUM2INT(size),
|
185
185
|
GDK_PIXBUF(RVAL2GOBJ(pixbuf)));
|
@@ -188,7 +188,7 @@ it_s_add_builtin_icon(VALUE self, VALUE icon_name, VALUE size, VALUE pixbuf)
|
|
188
188
|
|
189
189
|
#if GTK_CHECK_VERSION(2, 12, 0)
|
190
190
|
static VALUE
|
191
|
-
|
191
|
+
rg_choose_icon(int argc, VALUE *argv, VALUE self)
|
192
192
|
{
|
193
193
|
VALUE rb_icon_names, rb_size, rb_flags;
|
194
194
|
gint size;
|
@@ -199,38 +199,38 @@ it_choose_icon(int argc, VALUE *argv, VALUE self)
|
|
199
199
|
rb_scan_args(argc, argv, "21", &rb_icon_names, &rb_size, &rb_flags);
|
200
200
|
|
201
201
|
if (RVAL2CBOOL(rb_obj_is_kind_of(rb_icon_names, rb_cString))) {
|
202
|
-
|
203
|
-
|
204
|
-
|
202
|
+
icon_names = ALLOCA_N(const gchar *, 2);
|
203
|
+
icon_names[0] = RVAL2CSTR(rb_icon_names);
|
204
|
+
icon_names[1] = NULL;
|
205
205
|
}
|
206
206
|
else if (RVAL2CBOOL(rb_obj_is_kind_of(rb_icon_names, rb_cArray))) {
|
207
207
|
icon_names = RVAL2STRV(rb_icon_names);
|
208
208
|
}
|
209
209
|
else {
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
210
|
+
rb_raise(rb_eArgError,
|
211
|
+
"expected (name, size), (name, size, flags), "
|
212
|
+
"([name1, name2, ...], size) or "
|
213
|
+
"([name1, name2, ...], size, flags): %s",
|
214
|
+
RBG_INSPECT(rb_ary_new4(argc, argv)));
|
215
215
|
}
|
216
216
|
|
217
217
|
size = NUM2INT(rb_size);
|
218
218
|
|
219
219
|
if (NIL_P(rb_flags)) {
|
220
|
-
|
220
|
+
flags = GTK_ICON_LOOKUP_GENERIC_FALLBACK;
|
221
221
|
}
|
222
222
|
else {
|
223
|
-
|
223
|
+
flags = RVAL2ICON_LOOKUP_FLAGS(rb_flags);
|
224
224
|
}
|
225
225
|
|
226
226
|
info = gtk_icon_theme_choose_icon(_SELF(self),
|
227
|
-
|
228
|
-
|
227
|
+
icon_names,
|
228
|
+
size, flags);
|
229
229
|
return ICON_INFO2RVAL(info);
|
230
230
|
}
|
231
231
|
|
232
232
|
static VALUE
|
233
|
-
|
233
|
+
rg_contexts(VALUE self)
|
234
234
|
{
|
235
235
|
return GLIST2ARY_STR_FREE(gtk_icon_theme_list_contexts(_SELF(self)));
|
236
236
|
}
|
@@ -239,46 +239,46 @@ it_list_contexts(VALUE self)
|
|
239
239
|
#endif
|
240
240
|
|
241
241
|
void
|
242
|
-
Init_gtk_icon_theme()
|
242
|
+
Init_gtk_icon_theme(VALUE mGtk)
|
243
243
|
{
|
244
244
|
#if GTK_CHECK_VERSION(2,4,0)
|
245
|
-
VALUE
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
245
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_ICON_THEME, "IconTheme", mGtk);
|
246
|
+
|
247
|
+
RG_DEF_METHOD(initialize, 0);
|
248
|
+
RG_DEF_SMETHOD(default, 0);
|
249
|
+
RG_DEF_SMETHOD(get_for_screen, 1);
|
250
|
+
RG_DEF_METHOD(set_screen, 1);
|
251
|
+
RG_DEF_METHOD(set_search_path, 1);
|
252
|
+
RG_DEF_METHOD(search_path, 0);
|
253
|
+
RG_DEF_METHOD(append_search_path, 1);
|
254
|
+
RG_DEF_METHOD(prepend_search_path, 1);
|
255
|
+
RG_DEF_METHOD(set_custom_theme, 1);
|
256
|
+
RG_DEF_METHOD_P(has_icon, 1);
|
257
|
+
RG_DEF_METHOD(lookup_icon, 3);
|
258
|
+
RG_DEF_METHOD(load_icon, 3);
|
259
|
+
RG_DEF_METHOD(icons, -1);
|
260
260
|
#if GTK_CHECK_VERSION(2,6,0)
|
261
|
-
|
261
|
+
RG_DEF_METHOD(get_icon_sizes, 1);
|
262
262
|
#endif
|
263
|
-
|
264
|
-
|
263
|
+
RG_DEF_METHOD(example_icon_name, 0);
|
264
|
+
RG_DEF_METHOD(rescan_if_needed, 0);
|
265
265
|
|
266
|
-
|
266
|
+
RG_DEF_SMETHOD(add_builtin_icon, 3);
|
267
267
|
|
268
268
|
#if GTK_CHECK_VERSION(2, 12, 0)
|
269
|
-
|
270
|
-
|
269
|
+
RG_DEF_METHOD(choose_icon, -1);
|
270
|
+
RG_DEF_METHOD(contexts, 0);
|
271
271
|
#endif
|
272
272
|
|
273
|
-
G_DEF_SETTERS(
|
273
|
+
G_DEF_SETTERS(RG_TARGET_NAMESPACE);
|
274
274
|
|
275
275
|
/* GtkIconThemeError */
|
276
276
|
G_DEF_ERROR(GTK_ICON_THEME_ERROR, "IconThemeError", mGtk, rb_eRuntimeError,
|
277
277
|
GTK_TYPE_ICON_THEME_ERROR);
|
278
278
|
|
279
279
|
/* GtkIconLookupFlags */
|
280
|
-
G_DEF_CLASS(GTK_TYPE_ICON_LOOKUP_FLAGS, "LookupFlags",
|
281
|
-
G_DEF_CONSTANTS(
|
280
|
+
G_DEF_CLASS(GTK_TYPE_ICON_LOOKUP_FLAGS, "LookupFlags", RG_TARGET_NAMESPACE);
|
281
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_ICON_LOOKUP_FLAGS, "GTK_ICON_");
|
282
282
|
|
283
283
|
#endif
|
284
284
|
}
|