gtk2 1.0.3 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (255) hide show
  1. data/Rakefile +66 -1
  2. data/ext/gtk2/extconf.rb +0 -96
  3. data/ext/gtk2/global.h +274 -13
  4. data/ext/gtk2/gtk2.def +5 -3
  5. data/ext/gtk2/init.c +263 -19
  6. data/ext/gtk2/rbgdk.c +245 -89
  7. data/ext/gtk2/rbgdk.h +32 -6
  8. data/ext/gtk2/rbgdkatom.c +38 -28
  9. data/ext/gtk2/rbgdkcairo.c +32 -42
  10. data/ext/gtk2/rbgdkcolor.c +52 -42
  11. data/ext/gtk2/rbgdkcolormap.c +42 -37
  12. data/ext/gtk2/rbgdkconst.c +23 -13
  13. data/ext/gtk2/rbgdkconversions.h +19 -6
  14. data/ext/gtk2/rbgdkcursor.c +37 -25
  15. data/ext/gtk2/rbgdkdevice.c +77 -67
  16. data/ext/gtk2/rbgdkdisplay.c +158 -150
  17. data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
  18. data/ext/gtk2/rbgdkdragcontext.c +121 -70
  19. data/ext/gtk2/rbgdkdraw.c +252 -160
  20. data/ext/gtk2/rbgdkevent.c +30 -20
  21. data/ext/gtk2/rbgdkgc.c +123 -116
  22. data/ext/gtk2/rbgdkgeometry.c +77 -68
  23. data/ext/gtk2/rbgdkimage.c +58 -47
  24. data/ext/gtk2/rbgdkinput.c +33 -26
  25. data/ext/gtk2/rbgdkkeymap.c +38 -27
  26. data/ext/gtk2/rbgdkkeyval.c +44 -32
  27. data/ext/gtk2/rbgdkpango.c +66 -39
  28. data/ext/gtk2/rbgdkpangorenderer.c +63 -35
  29. data/ext/gtk2/rbgdkpixbuf.c +36 -25
  30. data/ext/gtk2/rbgdkpixmap.c +65 -49
  31. data/ext/gtk2/rbgdkproperty.c +66 -60
  32. data/ext/gtk2/rbgdkrectangle.c +54 -46
  33. data/ext/gtk2/rbgdkregion.c +144 -79
  34. data/ext/gtk2/rbgdkrgb.c +74 -58
  35. data/ext/gtk2/rbgdkscreen.c +103 -97
  36. data/ext/gtk2/rbgdkselection.c +49 -39
  37. data/ext/gtk2/rbgdkthreads.c +32 -19
  38. data/ext/gtk2/rbgdktimecoord.c +60 -38
  39. data/ext/gtk2/rbgdkvisual.c +79 -71
  40. data/ext/gtk2/rbgdkwindow.c +284 -305
  41. data/ext/gtk2/rbgdkwindowattr.c +69 -58
  42. data/ext/gtk2/rbgdkx11.c +41 -28
  43. data/ext/gtk2/rbgtk.c +498 -19
  44. data/ext/gtk2/rbgtk.h +35 -20
  45. data/ext/gtk2/rbgtkaboutdialog.c +33 -80
  46. data/ext/gtk2/rbgtkaccelerator.c +36 -23
  47. data/ext/gtk2/rbgtkaccelgroup.c +50 -40
  48. data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
  49. data/ext/gtk2/rbgtkaccelkey.c +40 -28
  50. data/ext/gtk2/rbgtkaccellabel.c +30 -18
  51. data/ext/gtk2/rbgtkaccelmap.c +55 -42
  52. data/ext/gtk2/rbgtkaccessible.c +25 -14
  53. data/ext/gtk2/rbgtkaction.c +68 -68
  54. data/ext/gtk2/rbgtkactiongroup.c +317 -195
  55. data/ext/gtk2/rbgtkadjustment.c +33 -46
  56. data/ext/gtk2/rbgtkalignment.c +36 -24
  57. data/ext/gtk2/rbgtkallocation.c +53 -42
  58. data/ext/gtk2/rbgtkarrow.c +34 -22
  59. data/ext/gtk2/rbgtkaspectframe.c +32 -20
  60. data/ext/gtk2/rbgtkassistant.c +81 -61
  61. data/ext/gtk2/rbgtkbbox.c +32 -20
  62. data/ext/gtk2/rbgtkbin.c +28 -16
  63. data/ext/gtk2/rbgtkbindingset.c +42 -35
  64. data/ext/gtk2/rbgtkborder.c +34 -23
  65. data/ext/gtk2/rbgtkbox.c +40 -29
  66. data/ext/gtk2/rbgtkbuildable.c +57 -45
  67. data/ext/gtk2/rbgtkbuilder.c +53 -38
  68. data/ext/gtk2/rbgtkbutton.c +41 -55
  69. data/ext/gtk2/rbgtkcalendar.c +51 -40
  70. data/ext/gtk2/rbgtkcelleditable.c +28 -17
  71. data/ext/gtk2/rbgtkcelllayout.c +41 -30
  72. data/ext/gtk2/rbgtkcellrenderer.c +43 -32
  73. data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
  74. data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
  75. data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
  76. data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
  77. data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
  78. data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
  79. data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
  80. data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
  81. data/ext/gtk2/rbgtkcellview.c +34 -33
  82. data/ext/gtk2/rbgtkcheckbutton.c +28 -16
  83. data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
  84. data/ext/gtk2/rbgtkclipboard.c +123 -77
  85. data/ext/gtk2/rbgtkcolorbutton.c +26 -31
  86. data/ext/gtk2/rbgtkcolorsel.c +109 -55
  87. data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
  88. data/ext/gtk2/rbgtkcombo.c +43 -32
  89. data/ext/gtk2/rbgtkcombobox.c +44 -83
  90. data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
  91. data/ext/gtk2/rbgtkconst.c +23 -13
  92. data/ext/gtk2/rbgtkcontainer.c +153 -100
  93. data/ext/gtk2/rbgtkconversions.h +19 -6
  94. data/ext/gtk2/rbgtkcurve.c +46 -36
  95. data/ext/gtk2/rbgtkdialog.c +104 -70
  96. data/ext/gtk2/rbgtkdrag.c +173 -121
  97. data/ext/gtk2/rbgtkdrawingarea.c +28 -16
  98. data/ext/gtk2/rbgtkeditable.c +63 -51
  99. data/ext/gtk2/rbgtkentry.c +48 -85
  100. data/ext/gtk2/rbgtkentrycompletion.c +42 -55
  101. data/ext/gtk2/rbgtkeventbox.c +28 -16
  102. data/ext/gtk2/rbgtkexpander.c +26 -35
  103. data/ext/gtk2/rbgtkfilechooser.c +87 -143
  104. data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
  105. data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
  106. data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
  107. data/ext/gtk2/rbgtkfilefilter.c +45 -35
  108. data/ext/gtk2/rbgtkfilesel.c +54 -43
  109. data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
  110. data/ext/gtk2/rbgtkfixed.c +36 -25
  111. data/ext/gtk2/rbgtkfontbutton.c +26 -37
  112. data/ext/gtk2/rbgtkfontselection.c +27 -15
  113. data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
  114. data/ext/gtk2/rbgtkframe.c +39 -28
  115. data/ext/gtk2/rbgtkgamma.c +32 -20
  116. data/ext/gtk2/rbgtkhandlebox.c +31 -19
  117. data/ext/gtk2/rbgtkhbbox.c +28 -16
  118. data/ext/gtk2/rbgtkhbox.c +29 -17
  119. data/ext/gtk2/rbgtkhpaned.c +28 -16
  120. data/ext/gtk2/rbgtkhruler.c +28 -16
  121. data/ext/gtk2/rbgtkhscale.c +28 -16
  122. data/ext/gtk2/rbgtkhscrollbar.c +28 -16
  123. data/ext/gtk2/rbgtkhseparator.c +28 -16
  124. data/ext/gtk2/rbgtkiconfactory.c +35 -23
  125. data/ext/gtk2/rbgtkiconinfo.c +42 -30
  126. data/ext/gtk2/rbgtkiconset.c +31 -19
  127. data/ext/gtk2/rbgtkiconsize.c +38 -25
  128. data/ext/gtk2/rbgtkiconsource.c +62 -50
  129. data/ext/gtk2/rbgtkicontheme.c +95 -95
  130. data/ext/gtk2/rbgtkiconview.c +87 -121
  131. data/ext/gtk2/rbgtkimage.c +31 -40
  132. data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
  133. data/ext/gtk2/rbgtkimcontext.c +46 -34
  134. data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
  135. data/ext/gtk2/rbgtkimmulticontext.c +26 -14
  136. data/ext/gtk2/rbgtkinputdialog.c +28 -16
  137. data/ext/gtk2/rbgtkinvisible.c +24 -18
  138. data/ext/gtk2/rbgtkitem.c +32 -20
  139. data/ext/gtk2/rbgtkitemfactory.c +65 -57
  140. data/ext/gtk2/rbgtklabel.c +46 -57
  141. data/ext/gtk2/rbgtklayout.c +40 -29
  142. data/ext/gtk2/rbgtklinkbutton.c +26 -15
  143. data/ext/gtk2/rbgtkliststore.c +145 -102
  144. data/ext/gtk2/rbgtkmacros.h +19 -6
  145. data/ext/gtk2/rbgtkmenu.c +47 -59
  146. data/ext/gtk2/rbgtkmenubar.c +30 -30
  147. data/ext/gtk2/rbgtkmenuitem.c +34 -41
  148. data/ext/gtk2/rbgtkmenushell.c +43 -42
  149. data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
  150. data/ext/gtk2/rbgtkmessagedialog.c +31 -25
  151. data/ext/gtk2/rbgtkmisc.c +33 -22
  152. data/ext/gtk2/rbgtknotebook.c +98 -134
  153. data/ext/gtk2/rbgtkobject.c +46 -81
  154. data/ext/gtk2/rbgtkoptionmenu.c +35 -23
  155. data/ext/gtk2/rbgtkpagesetup.c +64 -54
  156. data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
  157. data/ext/gtk2/rbgtkpaned.c +46 -36
  158. data/ext/gtk2/rbgtkpapersize.c +60 -54
  159. data/ext/gtk2/rbgtkplug.c +32 -20
  160. data/ext/gtk2/rbgtkprintcontext.c +43 -35
  161. data/ext/gtk2/rbgtkprinter.c +36 -37
  162. data/ext/gtk2/rbgtkprintjob.c +36 -37
  163. data/ext/gtk2/rbgtkprintoperation.c +44 -33
  164. data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
  165. data/ext/gtk2/rbgtkprintsettings.c +248 -192
  166. data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
  167. data/ext/gtk2/rbgtkprogress.c +23 -13
  168. data/ext/gtk2/rbgtkprogressbar.c +47 -46
  169. data/ext/gtk2/rbgtkradioaction.c +84 -39
  170. data/ext/gtk2/rbgtkradiobutton.c +33 -21
  171. data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
  172. data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
  173. data/ext/gtk2/rbgtkrange.c +36 -56
  174. data/ext/gtk2/rbgtkrc.c +61 -49
  175. data/ext/gtk2/rbgtkrcstyle.c +59 -48
  176. data/ext/gtk2/rbgtkrecentaction.c +28 -16
  177. data/ext/gtk2/rbgtkrecentchooser.c +58 -92
  178. data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
  179. data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
  180. data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
  181. data/ext/gtk2/rbgtkrecentdata.c +47 -36
  182. data/ext/gtk2/rbgtkrecentfilter.c +55 -46
  183. data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
  184. data/ext/gtk2/rbgtkrecentinfo.c +66 -56
  185. data/ext/gtk2/rbgtkrecentmanager.c +47 -43
  186. data/ext/gtk2/rbgtkruler.c +35 -30
  187. data/ext/gtk2/rbgtkscale.c +29 -18
  188. data/ext/gtk2/rbgtkscalebutton.c +27 -27
  189. data/ext/gtk2/rbgtkscrollbar.c +23 -13
  190. data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
  191. data/ext/gtk2/rbgtkselection.c +87 -67
  192. data/ext/gtk2/rbgtkselectiondata.c +74 -65
  193. data/ext/gtk2/rbgtkseparator.c +23 -13
  194. data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
  195. data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
  196. data/ext/gtk2/rbgtksettings.c +123 -103
  197. data/ext/gtk2/rbgtksizegroup.c +33 -30
  198. data/ext/gtk2/rbgtksocket.c +32 -20
  199. data/ext/gtk2/rbgtkspinbutton.c +48 -38
  200. data/ext/gtk2/rbgtkspinner.c +27 -14
  201. data/ext/gtk2/rbgtkstatusbar.c +36 -31
  202. data/ext/gtk2/rbgtkstatusicon.c +31 -44
  203. data/ext/gtk2/rbgtkstock.c +137 -125
  204. data/ext/gtk2/rbgtkstyle.c +177 -161
  205. data/ext/gtk2/rbgtktable.c +58 -47
  206. data/ext/gtk2/rbgtktargetlist.c +56 -36
  207. data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
  208. data/ext/gtk2/rbgtktextappearance.c +44 -34
  209. data/ext/gtk2/rbgtktextattributes.c +54 -42
  210. data/ext/gtk2/rbgtktextbuffer.c +188 -191
  211. data/ext/gtk2/rbgtktextchild.c +29 -18
  212. data/ext/gtk2/rbgtktextiter.c +153 -145
  213. data/ext/gtk2/rbgtktextmark.c +33 -30
  214. data/ext/gtk2/rbgtktexttag.c +34 -22
  215. data/ext/gtk2/rbgtktexttagtable.c +36 -25
  216. data/ext/gtk2/rbgtktextview.c +85 -73
  217. data/ext/gtk2/rbgtktoggleaction.c +27 -22
  218. data/ext/gtk2/rbgtktogglebutton.c +37 -26
  219. data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
  220. data/ext/gtk2/rbgtktoolbar.c +66 -69
  221. data/ext/gtk2/rbgtktoolbutton.c +27 -40
  222. data/ext/gtk2/rbgtktoolitem.c +60 -62
  223. data/ext/gtk2/rbgtktooltip.c +36 -25
  224. data/ext/gtk2/rbgtktooltips.c +42 -34
  225. data/ext/gtk2/rbgtktreedragdest.c +20 -11
  226. data/ext/gtk2/rbgtktreedragsource.c +20 -11
  227. data/ext/gtk2/rbgtktreeiter.c +58 -47
  228. data/ext/gtk2/rbgtktreemodel.c +83 -65
  229. data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
  230. data/ext/gtk2/rbgtktreemodelsort.c +38 -27
  231. data/ext/gtk2/rbgtktreepath.c +55 -44
  232. data/ext/gtk2/rbgtktreerowreference.c +60 -42
  233. data/ext/gtk2/rbgtktreeselection.c +61 -52
  234. data/ext/gtk2/rbgtktreesortable.c +52 -42
  235. data/ext/gtk2/rbgtktreestore.c +88 -67
  236. data/ext/gtk2/rbgtktreeview.c +157 -185
  237. data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
  238. data/ext/gtk2/rbgtkuimanager.c +61 -61
  239. data/ext/gtk2/rbgtkvbbox.c +28 -16
  240. data/ext/gtk2/rbgtkvbox.c +29 -17
  241. data/ext/gtk2/rbgtkviewport.c +28 -16
  242. data/ext/gtk2/rbgtkvolumebutton.c +28 -16
  243. data/ext/gtk2/rbgtkvpaned.c +28 -16
  244. data/ext/gtk2/rbgtkvruler.c +28 -16
  245. data/ext/gtk2/rbgtkvscale.c +28 -16
  246. data/ext/gtk2/rbgtkvscrollbar.c +28 -16
  247. data/ext/gtk2/rbgtkvseparator.c +28 -16
  248. data/ext/gtk2/rbgtkwidget.c +284 -296
  249. data/ext/gtk2/rbgtkwindow.c +156 -214
  250. data/ext/gtk2/rbgtkwindowgroup.c +35 -24
  251. data/sample/testgtk/labels.rb +1 -0
  252. data/sample/testgtk/testgtk.rb +2 -0
  253. metadata +16 -17
  254. data/ChangeLog +0 -6902
  255. data/ext/gtk2/rbgtkmain.c +0 -493
@@ -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
- icon_source_initialize(VALUE self)
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
- icon_source_get_direction(VALUE self)
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
- icon_source_get_direction_wildcarded(VALUE self)
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
- icon_source_get_filename(VALUE self)
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
- icon_source_get_pixbuf(VALUE self)
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
- icon_source_get_size(VALUE self)
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
- icon_source_get_size_wildcarded(VALUE self)
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
- icon_source_get_state(VALUE self)
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
- icon_source_get_state_wildcarded(VALUE self)
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
- icon_source_set_direction(VALUE self, VALUE direction)
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
- icon_source_set_direction_wildcarded(VALUE self, VALUE setting)
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
- icon_source_set_filename(VALUE self, VALUE filename)
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
- icon_source_set_pixbuf(VALUE self, VALUE pixbuf)
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
- icon_source_set_size(VALUE self, VALUE size)
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
- icon_source_set_size_wildcarded(VALUE self, VALUE setting)
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
- icon_source_set_state(VALUE self, VALUE state)
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
- icon_source_set_state_wildcarded(VALUE self, VALUE setting)
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
- Init_icon_source()
135
- {
136
- VALUE gIconSource = G_DEF_CLASS(GTK_TYPE_ICON_SOURCE, "IconSource", mGtk);
137
-
138
- rb_define_method(gIconSource, "initialize", icon_source_initialize, 0);
139
-
140
- rb_define_method(gIconSource, "direction", icon_source_get_direction , 0); ;
141
- rb_define_method(gIconSource, "direction_wildcarded?", icon_source_get_direction_wildcarded , 0); ;
142
- rb_define_method(gIconSource, "filename", icon_source_get_filename , 0); ;
143
- rb_define_method(gIconSource, "pixbuf", icon_source_get_pixbuf , 0); ;
144
- rb_define_method(gIconSource, "size", icon_source_get_size , 0); ;
145
- rb_define_method(gIconSource, "size_wildcarded?", icon_source_get_size_wildcarded , 0); ;
146
- rb_define_method(gIconSource, "state", icon_source_get_state , 0); ;
147
- rb_define_method(gIconSource, "state_wildcarded?" , icon_source_get_state_wildcarded , 0); ;
148
-
149
- rb_define_method(gIconSource, "set_direction", icon_source_set_direction , 1); ;
150
- rb_define_method(gIconSource, "set_direction_wildcarded", icon_source_set_direction_wildcarded , 1); ;
151
- rb_define_method(gIconSource, "set_filename", icon_source_set_filename , 1); ;
152
- rb_define_method(gIconSource, "set_pixbuf", icon_source_set_pixbuf , 1); ;
153
- rb_define_method(gIconSource, "set_size", icon_source_set_size , 1); ;
154
- rb_define_method(gIconSource, "set_size_wildcarded", icon_source_set_size_wildcarded , 1); ;
155
- rb_define_method(gIconSource, "set_state", icon_source_set_state , 1); ;
156
- rb_define_method(gIconSource, "set_state_wildcarded", icon_source_set_state_wildcarded , 1); ;
157
-
158
- G_DEF_SETTERS(gIconSource);
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
  }
@@ -1,100 +1,100 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
- /************************************************
3
-
4
- rbgtkicontheme.c -
5
-
6
- $Author: ggc $
7
- $Date: 2006/06/22 19:52:54 $
8
-
9
- Copyright (C) 2004,2005 Masao Mutoh
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
- it_initialize(VALUE self)
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
- it_get_default(VALUE self)
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
- it_get_for_screen(VALUE self, VALUE screen)
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
- it_set_screen(VALUE self, VALUE screen)
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
- it_set_search_path(VALUE self, VALUE paths)
59
+ rg_set_search_path(VALUE self, VALUE rbpath)
48
60
  {
49
- gchar** gpaths;
50
- gint size, i;
61
+ GtkIconTheme *theme = _SELF(self);
62
+ long n;
63
+ const gchar **path = RVAL2STRS(rbpath, n);
51
64
 
52
- Check_Type(paths, T_ARRAY);
53
-
54
- size = RARRAY_LEN(paths);
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
- it_get_search_path(VALUE self)
73
+ rg_search_path(VALUE self)
67
74
  {
68
- gchar** path;
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
- for (i = 0; i < size; i++){
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
- it_append_search_path(VALUE self, VALUE path)
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
- it_prepend_search_path(VALUE self, VALUE path)
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
- it_set_custom_theme(VALUE self, VALUE theme_name)
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
- it_has_icon(VALUE self, VALUE icon_name)
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
- it_lookup_icon(VALUE self, VALUE icon_name, VALUE size, VALUE flags)
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
- RVAL2CSTR(icon_name),
118
- NUM2INT(size),
119
- RVAL2ICON_LOOKUP_FLAGS(flags));
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
- it_load_icon(VALUE self, VALUE icon_name, VALUE size, VALUE flags)
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
- RVAL2CSTR(icon_name),
131
- NUM2INT(size),
132
- RVAL2ICON_LOOKUP_FLAGS(flags),
133
- &error);
130
+ RVAL2CSTR(icon_name),
131
+ NUM2INT(size),
132
+ RVAL2ICON_LOOKUP_FLAGS(flags),
133
+ &error);
134
134
  if (!pixbuf)
135
- RAISE_GERROR(error);
135
+ RAISE_GERROR(error);
136
136
  return GOBJ2RVAL(pixbuf);
137
137
  }
138
138
 
139
139
  static VALUE
140
- it_list_icons(int argc, VALUE *argv, VALUE self)
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
- RVAL2CSTR_ACCEPT_NIL(context));
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
- it_get_icon_sizes(VALUE self, VALUE icon_name)
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
- it_get_example_icon_name(VALUE self)
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
- it_rescan_if_needed(VALUE self)
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
- it_s_add_builtin_icon(VALUE self, VALUE icon_name, VALUE size, VALUE pixbuf)
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
- it_choose_icon(int argc, VALUE *argv, VALUE self)
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
- icon_names = ALLOCA_N(const gchar *, 2);
203
- icon_names[0] = RVAL2CSTR(rb_icon_names);
204
- icon_names[1] = NULL;
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
- 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)));
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
- flags = GTK_ICON_LOOKUP_GENERIC_FALLBACK;
220
+ flags = GTK_ICON_LOOKUP_GENERIC_FALLBACK;
221
221
  }
222
222
  else {
223
- flags = RVAL2ICON_LOOKUP_FLAGS(rb_flags);
223
+ flags = RVAL2ICON_LOOKUP_FLAGS(rb_flags);
224
224
  }
225
225
 
226
226
  info = gtk_icon_theme_choose_icon(_SELF(self),
227
- icon_names,
228
- size, flags);
227
+ icon_names,
228
+ size, flags);
229
229
  return ICON_INFO2RVAL(info);
230
230
  }
231
231
 
232
232
  static VALUE
233
- it_list_contexts(VALUE self)
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 it = G_DEF_CLASS(GTK_TYPE_ICON_THEME, "IconTheme", mGtk);
246
-
247
- rb_define_method(it, "initialize", it_initialize, 0);
248
- rb_define_singleton_method(it, "default", it_get_default, 0);
249
- rb_define_singleton_method(it, "get_for_screen", it_get_for_screen, 1);
250
- rb_define_method(it, "set_screen", it_set_screen, 1);
251
- rb_define_method(it, "set_search_path", it_set_search_path, 1);
252
- rb_define_method(it, "search_path", it_get_search_path, 0);
253
- rb_define_method(it, "append_search_path", it_append_search_path, 1);
254
- rb_define_method(it, "prepend_search_path", it_prepend_search_path, 1);
255
- rb_define_method(it, "set_custom_theme", it_set_custom_theme, 1);
256
- rb_define_method(it, "has_icon?", it_has_icon, 1);
257
- rb_define_method(it, "lookup_icon", it_lookup_icon, 3);
258
- rb_define_method(it, "load_icon", it_load_icon, 3);
259
- rb_define_method(it, "icons", it_list_icons, -1);
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
- rb_define_method(it, "get_icon_sizes", it_get_icon_sizes, 1);
261
+ RG_DEF_METHOD(get_icon_sizes, 1);
262
262
  #endif
263
- rb_define_method(it, "example_icon_name", it_get_example_icon_name, 0);
264
- rb_define_method(it, "rescan_if_needed", it_rescan_if_needed, 0);
263
+ RG_DEF_METHOD(example_icon_name, 0);
264
+ RG_DEF_METHOD(rescan_if_needed, 0);
265
265
 
266
- rb_define_singleton_method(it, "add_builtin_icon", it_s_add_builtin_icon, 3);
266
+ RG_DEF_SMETHOD(add_builtin_icon, 3);
267
267
 
268
268
  #if GTK_CHECK_VERSION(2, 12, 0)
269
- rb_define_method(it, "choose_icon", it_choose_icon, -1);
270
- rb_define_method(it, "contexts", it_list_contexts, 0);
269
+ RG_DEF_METHOD(choose_icon, -1);
270
+ RG_DEF_METHOD(contexts, 0);
271
271
  #endif
272
272
 
273
- G_DEF_SETTERS(it);
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", it);
281
- G_DEF_CONSTANTS(it, GTK_TYPE_ICON_LOOKUP_FLAGS, "GTK_ICON_");
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
  }