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,29 +1,40 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
- /************************************************
3
-
4
- rbgdkdisplay.c -
5
-
6
- $Author: ggc $
7
- $Date: 2007/07/13 14:27:08 $
8
-
9
- Copyright (C) 2002-2005 Ruby-GNOME2 Project Team
10
- ************************************************/
2
+ /*
3
+ * Copyright (C) 2011 Ruby-GNOME2 Project Team
4
+ * Copyright (C) 2002-2005 Ruby-GNOME2 Project Team
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,2,0)
15
- #define _SELF(i) GDK_DISPLAY_OBJECT(RVAL2GOBJ(i))
16
25
 
26
+ #define RG_TARGET_NAMESPACE cDisplay
27
+ #define _SELF(i) GDK_DISPLAY_OBJECT(RVAL2GOBJ(i))
17
28
 
18
29
  static VALUE
19
- gdkdisplay_close(VALUE self)
30
+ rg_close(VALUE self)
20
31
  {
21
32
  gdk_display_close(_SELF(self));
22
33
  return self;
23
34
  }
24
35
 
25
36
  static VALUE
26
- gdkdisplay_s_open(VALUE self, VALUE display_name)
37
+ rg_s_open(G_GNUC_UNUSED VALUE self, VALUE display_name)
27
38
  {
28
39
  GdkDisplay* gdisplay = gdk_display_open(RVAL2CSTR(display_name));
29
40
  if (! gdisplay) {
@@ -35,7 +46,7 @@ gdkdisplay_s_open(VALUE self, VALUE display_name)
35
46
  display = GOBJ2RVAL(gdisplay);
36
47
 
37
48
  if (rb_block_given_p()) {
38
- rb_ensure(rb_yield, display, gdkdisplay_close, display);
49
+ rb_ensure(rb_yield, display, rg_close, display);
39
50
  return Qnil;
40
51
  } else {
41
52
  return display;
@@ -44,69 +55,68 @@ gdkdisplay_s_open(VALUE self, VALUE display_name)
44
55
  }
45
56
 
46
57
  static VALUE
47
- gdkdisplay_s_get_default(VALUE self)
58
+ rg_s_default(G_GNUC_UNUSED VALUE self)
48
59
  {
49
60
  GdkDisplay* gdisplay = gdk_display_get_default();
50
61
  if (! gdisplay)
51
62
  rb_raise(rb_eRuntimeError, "No default display is found.");
52
-
63
+
53
64
  return GOBJ2RVAL(gdisplay);
54
65
  }
55
66
 
56
-
57
67
  static VALUE
58
- gdkdisplay_name(VALUE self)
68
+ rg_name(VALUE self)
59
69
  {
60
70
  return CSTR2RVAL(gdk_display_get_name(_SELF(self)));
61
71
  }
62
72
 
63
73
  static VALUE
64
- gdkdisplay_n_screens(VALUE self)
74
+ rg_n_screens(VALUE self)
65
75
  {
66
76
  return INT2NUM(gdk_display_get_n_screens(_SELF(self)));
67
77
  }
68
78
 
69
79
  static VALUE
70
- gdkdisplay_get_screen(VALUE self, VALUE num)
80
+ rg_get_screen(VALUE self, VALUE num)
71
81
  {
72
82
  return GOBJ2RVAL(gdk_display_get_screen(_SELF(self), NUM2INT(num)));
73
83
  }
74
84
 
75
85
  static VALUE
76
- gdkdisplay_default_screen(VALUE self)
86
+ rg_default_screen(VALUE self)
77
87
  {
78
88
  return GOBJ2RVAL(gdk_display_get_default_screen(_SELF(self)));
79
89
  }
80
90
 
81
91
  static VALUE
82
- gdkdisplay_pointer_ungrab(VALUE self, VALUE time)
92
+ rg_pointer_ungrab(VALUE self, VALUE time)
83
93
  {
84
94
  gdk_display_pointer_ungrab(_SELF(self), NUM2ULONG(time));
85
95
  return self;
86
96
  }
87
97
 
88
98
  static VALUE
89
- gdkdisplay_keyboard_ungrab(VALUE self, VALUE time)
99
+ rg_keyboard_ungrab(VALUE self, VALUE time)
90
100
  {
91
101
  gdk_display_keyboard_ungrab(_SELF(self), NUM2ULONG(time));
92
102
  return self;
93
103
  }
94
104
 
95
105
  static VALUE
96
- gdkdisplay_pointer_grabbed(VALUE self)
106
+ rg_pointer_grabbed_p(VALUE self)
97
107
  {
98
108
  return CBOOL2RVAL(gdk_display_pointer_is_grabbed(_SELF(self)));
99
109
  }
100
110
 
101
111
  static VALUE
102
- gdkdisplay_beep(VALUE self)
112
+ rg_beep(VALUE self)
103
113
  {
104
114
  gdk_display_beep(_SELF(self));
105
115
  return self;
106
116
  }
107
117
 
108
118
  static VALUE
109
- gdkdisplay_sync(VALUE self)
119
+ rg_sync(VALUE self)
110
120
  {
111
121
  gdk_display_sync(_SELF(self));
112
122
  return self;
@@ -114,7 +124,7 @@ gdkdisplay_sync(VALUE self)
114
124
 
115
125
  #if GTK_CHECK_VERSION(2,4,0)
116
126
  static VALUE
117
- gdkdisplay_flush(VALUE self)
127
+ rg_flush(VALUE self)
118
128
  {
119
129
  gdk_display_flush(_SELF(self));
120
130
  return self;
@@ -122,25 +132,25 @@ gdkdisplay_flush(VALUE self)
122
132
  #endif
123
133
 
124
134
  static VALUE
125
- gdkdisplay_list_devices(VALUE self)
135
+ rg_devices(VALUE self)
126
136
  {
127
137
  return rbgutil_glist2ary(gdk_display_list_devices(_SELF(self)));
128
138
  }
129
139
 
130
140
  static VALUE
131
- gdkdisplay_get_event(VALUE self)
141
+ rg_event(VALUE self)
132
142
  {
133
143
  return GEV2RVAL(gdk_display_get_event(_SELF(self)));
134
144
  }
135
145
 
136
146
  static VALUE
137
- gdkdisplay_peek_event(VALUE self)
147
+ rg_peek_event(VALUE self)
138
148
  {
139
149
  return GEV2RVAL(gdk_display_peek_event(_SELF(self)));
140
150
  }
141
151
 
142
152
  static VALUE
143
- gdkdisplay_put_event(VALUE self, VALUE event)
153
+ rg_put_event(VALUE self, VALUE event)
144
154
  {
145
155
  gdk_display_put_event(_SELF(self), RVAL2GEV(event));
146
156
  return self;
@@ -167,20 +177,20 @@ gdkdisplay_add_client_message_filter(VALUE self, VALUE message_type)
167
177
  */
168
178
 
169
179
  static VALUE
170
- gdkdisplay_set_double_click_time(VALUE self, VALUE msec)
180
+ rg_set_double_click_time(VALUE self, VALUE msec)
171
181
  {
172
182
  gdk_display_set_double_click_time(_SELF(self), NUM2UINT(msec));
173
183
  return self;
174
184
  }
175
185
 
176
186
  static VALUE
177
- gdkdisplay_get_double_click_time(VALUE self)
187
+ rg_double_click_time(VALUE self)
178
188
  {
179
189
  return UINT2NUM(_SELF(self)->double_click_time);
180
190
  }
181
191
 
182
192
  static VALUE
183
- gdkdisplay_get_button_click_time(VALUE self)
193
+ rg_button_click_time(VALUE self)
184
194
  {
185
195
  return rb_ary_new3(2,
186
196
  UINT2NUM(_SELF(self)->button_click_time[0]),
@@ -188,7 +198,7 @@ gdkdisplay_get_button_click_time(VALUE self)
188
198
  }
189
199
 
190
200
  static VALUE
191
- gdkdisplay_get_button_window(VALUE self)
201
+ rg_button_window(VALUE self)
192
202
  {
193
203
  return rb_ary_new3(2,
194
204
  GOBJ2RVAL(_SELF(self)->button_window[0]),
@@ -196,7 +206,7 @@ gdkdisplay_get_button_window(VALUE self)
196
206
  }
197
207
 
198
208
  static VALUE
199
- gdkdisplay_get_button_number(VALUE self)
209
+ rg_button_number(VALUE self)
200
210
  {
201
211
  return rb_ary_new3(2,
202
212
  INT2NUM(_SELF(self)->button_number[0]),
@@ -204,14 +214,14 @@ gdkdisplay_get_button_number(VALUE self)
204
214
  }
205
215
 
206
216
  static VALUE
207
- gdkdisplay_get_closed(VALUE self)
217
+ rg_closed_p(VALUE self)
208
218
  {
209
219
  return CBOOL2RVAL(_SELF(self)->closed);
210
220
  }
211
221
 
212
222
  #if GTK_CHECK_VERSION(2,4,0)
213
223
  static VALUE
214
- gdkdisplay_get_button_x(VALUE self)
224
+ rg_button_x(VALUE self)
215
225
  {
216
226
  return rb_ary_new3(2,
217
227
  INT2NUM(_SELF(self)->button_x[0]),
@@ -219,7 +229,7 @@ gdkdisplay_get_button_x(VALUE self)
219
229
  }
220
230
 
221
231
  static VALUE
222
- gdkdisplay_get_button_y(VALUE self)
232
+ rg_button_y(VALUE self)
223
233
  {
224
234
  return rb_ary_new3(2,
225
235
  INT2NUM(_SELF(self)->button_y[0]),
@@ -227,38 +237,38 @@ gdkdisplay_get_button_y(VALUE self)
227
237
  }
228
238
 
229
239
  static VALUE
230
- gdkdisplay_set_double_click_distance(VALUE self, VALUE distance)
240
+ rg_set_double_click_distance(VALUE self, VALUE distance)
231
241
  {
232
242
  gdk_display_set_double_click_distance(_SELF(self), NUM2UINT(distance));
233
243
  return self;
234
244
  }
235
245
 
236
246
  static VALUE
237
- gdkdisplay_get_double_click_distance(VALUE self)
247
+ rg_double_click_distance(VALUE self)
238
248
  {
239
249
  return UINT2NUM(_SELF(self)->double_click_distance);
240
250
  }
241
251
  #endif
242
252
 
243
253
  static VALUE
244
- gdkdisplay_get_pointer(VALUE self)
254
+ rg_pointer(VALUE self)
245
255
  {
246
256
  GdkScreen *screen;
247
257
  int x,y;
248
258
  GdkModifierType mask;
249
-
259
+
250
260
  gdk_display_get_pointer(_SELF(self), &screen, &x, &y, &mask);
251
-
261
+
252
262
  return rb_ary_new3(4, GOBJ2RVAL(screen), INT2NUM(x), INT2NUM(y), INT2NUM(mask));
253
263
  }
254
264
  static VALUE
255
- gdkdisplay_get_window_at_pointer(VALUE self)
265
+ rg_window_at_pointer(VALUE self)
256
266
  {
257
267
  GdkWindow *window;
258
268
  int x,y;
259
-
269
+
260
270
  window = gdk_display_get_window_at_pointer(_SELF(self), &x, &y);
261
-
271
+
262
272
  return rb_ary_new3(3, GOBJ2RVAL(window), INT2NUM(x), INT2NUM(y));
263
273
  }
264
274
 
@@ -270,25 +280,25 @@ GdkDisplayPointerHooks* gdk_display_set_pointer_hooks
270
280
 
271
281
  #if GTK_CHECK_VERSION(2,4,0)
272
282
  static VALUE
273
- gdkdisplay_supports_cursor_color(VALUE self)
283
+ rg_supports_cursor_color_p(VALUE self)
274
284
  {
275
285
  return CBOOL2RVAL(gdk_display_supports_cursor_color(_SELF(self)));
276
286
  }
277
287
 
278
288
  static VALUE
279
- gdkdisplay_supports_cursor_alpha(VALUE self)
289
+ rg_supports_cursor_alpha_p(VALUE self)
280
290
  {
281
291
  return CBOOL2RVAL(gdk_display_supports_cursor_alpha(_SELF(self)));
282
292
  }
283
293
 
284
294
  static VALUE
285
- gdkdisplay_get_default_cursor_size(VALUE self)
295
+ rg_default_cursor_size(VALUE self)
286
296
  {
287
297
  return UINT2NUM(gdk_display_get_default_cursor_size(_SELF(self)));
288
298
  }
289
299
 
290
300
  static VALUE
291
- gdkdisplay_get_maximal_cursor_size(VALUE self)
301
+ rg_maximal_cursor_size(VALUE self)
292
302
  {
293
303
  guint width, height;
294
304
  gdk_display_get_maximal_cursor_size(_SELF(self), &width, &height);
@@ -296,7 +306,7 @@ gdkdisplay_get_maximal_cursor_size(VALUE self)
296
306
  }
297
307
 
298
308
  static VALUE
299
- gdkdisplay_get_default_group(VALUE self)
309
+ rg_default_group(VALUE self)
300
310
  {
301
311
  return GOBJ2RVAL(gdk_display_get_default_group(_SELF(self)));
302
312
  }
@@ -304,50 +314,50 @@ gdkdisplay_get_default_group(VALUE self)
304
314
 
305
315
  #if GTK_CHECK_VERSION(2,6,0)
306
316
  static VALUE
307
- gdkdisplay_supports_selection_notification(VALUE self)
317
+ rg_supports_selection_notification_p(VALUE self)
308
318
  {
309
319
  return CBOOL2RVAL(gdk_display_supports_selection_notification(_SELF(self)));
310
320
  }
311
321
 
312
322
  static VALUE
313
- gdkdisplay_request_selection_notification(VALUE self, VALUE selection)
323
+ rg_request_selection_notification_p(VALUE self, VALUE selection)
314
324
  {
315
325
  return CBOOL2RVAL(gdk_display_request_selection_notification(_SELF(self),
316
326
  RVAL2ATOM(selection)));
317
327
  }
318
328
 
319
329
  static VALUE
320
- gdkdisplay_supports_clipboard_persistence(VALUE self)
330
+ rg_supports_clipboard_persistence_p(VALUE self)
321
331
  {
322
332
  return CBOOL2RVAL(gdk_display_supports_clipboard_persistence(_SELF(self)));
323
333
  }
324
334
 
325
335
  static VALUE
326
- gdkdisplay_store_clipboard(VALUE self, VALUE clipboard_window, VALUE time_, VALUE targets)
336
+ rg_store_clipboard(VALUE self, VALUE rbclipboard_window, VALUE rbtime_, VALUE rbtargets)
327
337
  {
328
- gint i;
329
- gint n_targets = RARRAY_LEN(targets);
330
- GdkAtom* gtargets = g_new(GdkAtom, n_targets);
338
+ GdkDisplay *display = _SELF(self);
339
+ GdkWindow *clipboard_window = GDK_WINDOW(RVAL2GOBJ(rbclipboard_window));
340
+ guint32 time_ = NUM2UINT(rbtime_);
341
+ long n;
342
+ GdkAtom *targets = RVAL2GDKATOMS(rbtargets, &n);
331
343
 
332
- for (i = 0; i < n_targets; i++){
333
- gtargets[i] = RVAL2ATOM(RARRAY_PTR(targets)[i]);
334
- }
344
+ gdk_display_store_clipboard(display, clipboard_window, time_, targets, n);
345
+
346
+ g_free(targets);
335
347
 
336
- gdk_display_store_clipboard(_SELF(self), GDK_WINDOW(RVAL2GOBJ(clipboard_window)),
337
- NUM2UINT(time_), gtargets, n_targets);
338
348
  return self;
339
349
  }
340
350
  #endif
341
351
 
342
352
  static VALUE
343
- gdkdisplay_get_core_pointer(VALUE self)
353
+ rg_core_pointer(VALUE self)
344
354
  {
345
355
  return GOBJ2RVAL(gdk_display_get_core_pointer(_SELF(self)));
346
356
  }
347
357
 
348
358
  #if GTK_CHECK_VERSION(2,8,0)
349
359
  static VALUE
350
- gdkdisplay_warp_pointer(VALUE self, VALUE screen, VALUE x, VALUE y)
360
+ rg_warp_pointer(VALUE self, VALUE screen, VALUE x, VALUE y)
351
361
  {
352
362
  gdk_display_warp_pointer(_SELF(self), RVAL2GOBJ(screen), NUM2INT(x), NUM2INT(y));
353
363
  return self;
@@ -356,20 +366,20 @@ gdkdisplay_warp_pointer(VALUE self, VALUE screen, VALUE x, VALUE y)
356
366
 
357
367
  #ifdef GDK_WINDOWING_X11
358
368
  static VALUE
359
- gdkdisplay_grab(VALUE self)
369
+ rg_grab(VALUE self)
360
370
  {
361
371
  gdk_x11_display_grab(_SELF(self));
362
372
  return self;
363
373
  }
364
374
  static VALUE
365
- gdkdisplay_ungrab(VALUE self)
375
+ rg_ungrab(VALUE self)
366
376
  {
367
377
  gdk_x11_display_ungrab(_SELF(self));
368
378
  return self;
369
379
  }
370
380
  #if GTK_CHECK_VERSION(2,4,0)
371
381
  static VALUE
372
- gdkdisplay_register_standard_event_type(VALUE self, VALUE event_base, VALUE n_events)
382
+ rg_register_standard_event_type(VALUE self, VALUE event_base, VALUE n_events)
373
383
  {
374
384
  gdk_x11_register_standard_event_type(_SELF(self),
375
385
  NUM2INT(event_base), NUM2INT(n_events));
@@ -378,13 +388,13 @@ gdkdisplay_register_standard_event_type(VALUE self, VALUE event_base, VALUE n_ev
378
388
  #endif
379
389
  #if GTK_CHECK_VERSION(2,8,0)
380
390
  static VALUE
381
- gdkdisplay_get_user_time(VALUE self)
391
+ rg_user_time(VALUE self)
382
392
  {
383
393
  return UINT2NUM(gdk_x11_display_get_user_time(_SELF(self)));
384
394
  }
385
395
 
386
396
  static VALUE
387
- gdkdisplay_set_cursor_theme(VALUE self, VALUE theme, VALUE size)
397
+ rg_set_cursor_theme(VALUE self, VALUE theme, VALUE size)
388
398
  {
389
399
  gdk_x11_display_set_cursor_theme(_SELF(self), RVAL2CSTR(theme), NUM2INT(size));
390
400
  return self;
@@ -415,7 +425,7 @@ collect_parameter(VALUE key, VALUE value, VALUE data)
415
425
  }
416
426
 
417
427
  static VALUE
418
- gdkdisplay_broadcast_startup_message(int argc, VALUE *argv, VALUE self)
428
+ rg_broadcast_startup_message(int argc, VALUE *argv, VALUE self)
419
429
  {
420
430
  VALUE rb_message_type, rb_parameters;
421
431
  char *message_type;
@@ -426,31 +436,31 @@ gdkdisplay_broadcast_startup_message(int argc, VALUE *argv, VALUE self)
426
436
 
427
437
  message_type = RVAL2CSTR(rb_message_type);
428
438
  if (NIL_P(rb_parameters)) {
429
- n_parameters = 0;
430
- parameters = NULL;
439
+ n_parameters = 0;
440
+ parameters = NULL;
431
441
  }
432
442
  else {
433
- StartupMessageParameterData data;
434
-
435
- Check_Type(rb_parameters, T_HASH);
436
- n_parameters = NUM2UINT(rb_funcall(rb_parameters, rb_intern("size"), 0));
437
- parameters = ALLOCA_N(gchar *, n_parameters * 2);
438
- data.i = 0;
439
- data.parameters = parameters;
440
- rb_hash_foreach(rb_parameters, collect_parameter, (VALUE)&data);
443
+ StartupMessageParameterData data;
444
+
445
+ Check_Type(rb_parameters, T_HASH);
446
+ n_parameters = NUM2UINT(rb_funcall(rb_parameters, rb_intern("size"), 0));
447
+ parameters = ALLOCA_N(gchar *, n_parameters * 2);
448
+ data.i = 0;
449
+ data.parameters = parameters;
450
+ rb_hash_foreach(rb_parameters, collect_parameter, (VALUE)&data);
441
451
  }
442
452
 
443
453
  gdk_x11_display_broadcast_startup_messagev(_SELF(self),
444
- message_type,
445
- n_parameters,
446
- parameters);
454
+ message_type,
455
+ n_parameters,
456
+ parameters);
447
457
 
448
458
  return self;
449
459
  }
450
460
  */
451
461
 
452
462
  static VALUE
453
- gdkdisplay_get_startup_notification_id(VALUE self)
463
+ rg_startup_notification_id(VALUE self)
454
464
  {
455
465
  return CSTR2RVAL(gdk_x11_display_get_startup_notification_id(_SELF(self)));
456
466
  }
@@ -461,13 +471,13 @@ gdkdisplay_get_startup_notification_id(VALUE self)
461
471
 
462
472
  #if GTK_CHECK_VERSION(2,10,0)
463
473
  static VALUE
464
- gdkdisplay_supports_shapes(VALUE self)
474
+ rg_supports_shapes_p(VALUE self)
465
475
  {
466
476
  return CBOOL2RVAL(gdk_display_supports_shapes(_SELF(self)));
467
477
  }
468
478
 
469
479
  static VALUE
470
- gdkdisplay_supports_input_shapes(VALUE self)
480
+ rg_supports_input_shapes_p(VALUE self)
471
481
  {
472
482
  return CBOOL2RVAL(gdk_display_supports_input_shapes(_SELF(self)));
473
483
  }
@@ -475,13 +485,13 @@ gdkdisplay_supports_input_shapes(VALUE self)
475
485
 
476
486
  #if GTK_CHECK_VERSION(2, 12, 0)
477
487
  static VALUE
478
- gdkdisplay_supports_composite(VALUE self)
488
+ rg_supports_composite_p(VALUE self)
479
489
  {
480
490
  return CBOOL2RVAL(gdk_display_supports_composite(_SELF(self)));
481
491
  }
482
492
 
483
493
  static VALUE
484
- gdkdisplay_trigger_tooltip_query(VALUE self)
494
+ rg_trigger_tooltip_query(VALUE self)
485
495
  {
486
496
  gtk_tooltip_trigger_tooltip_query(_SELF(self));
487
497
  return self;
@@ -489,95 +499,93 @@ gdkdisplay_trigger_tooltip_query(VALUE self)
489
499
  #endif
490
500
 
491
501
  void
492
- Init_gtk_gdk_display()
502
+ Init_gtk_gdk_display(VALUE mGdk)
493
503
  {
494
504
  #if GTK_CHECK_VERSION(2,2,0)
495
- VALUE gdkDisplay = G_DEF_CLASS(GDK_TYPE_DISPLAY, "Display", mGdk);
496
-
497
- rb_define_singleton_method(gdkDisplay, "open", gdkdisplay_s_open, 1);
498
- rb_define_singleton_method(gdkDisplay, "default", gdkdisplay_s_get_default, 0);
499
- rb_define_method(gdkDisplay, "name", gdkdisplay_name, 0);
500
- rb_define_method(gdkDisplay, "n_screens", gdkdisplay_n_screens, 0);
501
- rb_define_method(gdkDisplay, "get_screen", gdkdisplay_get_screen, 1);
502
- rb_define_alias(gdkDisplay, "[]", "get_screen");
503
- rb_define_method(gdkDisplay, "default_screen", gdkdisplay_default_screen, 0);
504
-
505
- rb_define_method(gdkDisplay, "pointer_ungrab", gdkdisplay_pointer_ungrab, 1);
506
- rb_define_method(gdkDisplay, "keyboard_ungrab", gdkdisplay_keyboard_ungrab, 1);
507
- rb_define_method(gdkDisplay, "pointer_grabbed?", gdkdisplay_pointer_grabbed, 0);
508
-
509
- rb_define_method(gdkDisplay, "beep", gdkdisplay_beep, 0);
510
- rb_define_method(gdkDisplay, "sync", gdkdisplay_sync, 0);
505
+ VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GDK_TYPE_DISPLAY, "Display", mGdk);
506
+
507
+ RG_DEF_SMETHOD(open, 1);
508
+ RG_DEF_SMETHOD(default, 0);
509
+ RG_DEF_METHOD(name, 0);
510
+ RG_DEF_METHOD(n_screens, 0);
511
+ RG_DEF_METHOD(get_screen, 1);
512
+ RG_DEF_ALIAS("[]", "get_screen");
513
+ RG_DEF_METHOD(default_screen, 0);
514
+
515
+ RG_DEF_METHOD(pointer_ungrab, 1);
516
+ RG_DEF_METHOD(keyboard_ungrab, 1);
517
+ RG_DEF_METHOD_P(pointer_grabbed, 0);
518
+
519
+ RG_DEF_METHOD(beep, 0);
520
+ RG_DEF_METHOD(sync, 0);
511
521
  #if GTK_CHECK_VERSION(2,4,0)
512
- rb_define_method(gdkDisplay, "flush", gdkdisplay_flush, 0);
522
+ RG_DEF_METHOD(flush, 0);
513
523
  #endif
514
- rb_define_method(gdkDisplay, "close", gdkdisplay_close, 0);
515
-
516
- rb_define_method(gdkDisplay, "devices", gdkdisplay_list_devices, 0);
517
- rb_define_method(gdkDisplay, "event", gdkdisplay_get_event, 0);
518
- rb_define_method(gdkDisplay, "peek_event", gdkdisplay_peek_event, 0);
519
- rb_define_method(gdkDisplay, "put_event", gdkdisplay_put_event, 1);
520
- rb_define_method(gdkDisplay, "set_double_click_time", gdkdisplay_set_double_click_time, 1);
521
- rb_define_method(gdkDisplay, "double_click_time", gdkdisplay_get_double_click_time, 0);
522
- rb_define_method(gdkDisplay, "button_click_time", gdkdisplay_get_button_click_time, 0);
523
- rb_define_method(gdkDisplay, "button_window", gdkdisplay_get_button_window, 0);
524
- rb_define_method(gdkDisplay, "button_number", gdkdisplay_get_button_number, 0);
525
- rb_define_method(gdkDisplay, "closed?", gdkdisplay_get_closed, 0);
524
+ RG_DEF_METHOD(close, 0);
525
+
526
+ RG_DEF_METHOD(devices, 0);
527
+ RG_DEF_METHOD(event, 0);
528
+ RG_DEF_METHOD(peek_event, 0);
529
+ RG_DEF_METHOD(put_event, 1);
530
+ RG_DEF_METHOD(set_double_click_time, 1);
531
+ RG_DEF_METHOD(double_click_time, 0);
532
+ RG_DEF_METHOD(button_click_time, 0);
533
+ RG_DEF_METHOD(button_window, 0);
534
+ RG_DEF_METHOD(button_number, 0);
535
+ RG_DEF_METHOD_P(closed, 0);
526
536
  #if GTK_CHECK_VERSION(2,4,0)
527
- rb_define_method(gdkDisplay, "button_x", gdkdisplay_get_button_x, 0);
528
- rb_define_method(gdkDisplay, "button_y", gdkdisplay_get_button_y, 0);
529
- rb_define_method(gdkDisplay, "set_double_click_distance", gdkdisplay_set_double_click_distance, 1);
530
- rb_define_method(gdkDisplay, "double_click_distance", gdkdisplay_get_double_click_distance, 0);
537
+ RG_DEF_METHOD(button_x, 0);
538
+ RG_DEF_METHOD(button_y, 0);
539
+ RG_DEF_METHOD(set_double_click_distance, 1);
540
+ RG_DEF_METHOD(double_click_distance, 0);
531
541
  #endif
532
- rb_define_method(gdkDisplay, "pointer", gdkdisplay_get_pointer, 0);
533
- rb_define_method(gdkDisplay, "window_at_pointer", gdkdisplay_get_window_at_pointer, 0);
542
+ RG_DEF_METHOD(pointer, 0);
543
+ RG_DEF_METHOD(window_at_pointer, 0);
534
544
  #if GTK_CHECK_VERSION(2,4,0)
535
- rb_define_method(gdkDisplay, "supports_cursor_color?", gdkdisplay_supports_cursor_color, 0);
536
- rb_define_method(gdkDisplay, "supports_cursor_alpha?", gdkdisplay_supports_cursor_alpha, 0);
537
- rb_define_method(gdkDisplay, "default_cursor_size", gdkdisplay_get_default_cursor_size, 0);
538
- rb_define_method(gdkDisplay, "maximal_cursor_size", gdkdisplay_get_maximal_cursor_size, 0);
539
- rb_define_method(gdkDisplay, "default_group", gdkdisplay_get_default_group, 0);
545
+ RG_DEF_METHOD_P(supports_cursor_color, 0);
546
+ RG_DEF_METHOD_P(supports_cursor_alpha, 0);
547
+ RG_DEF_METHOD(default_cursor_size, 0);
548
+ RG_DEF_METHOD(maximal_cursor_size, 0);
549
+ RG_DEF_METHOD(default_group, 0);
540
550
  #endif
541
551
  #if GTK_CHECK_VERSION(2,6,0)
542
- rb_define_method(gdkDisplay, "supports_selection_notification?", gdkdisplay_supports_selection_notification, 0);
543
- rb_define_method(gdkDisplay, "request_selection_notification?", gdkdisplay_request_selection_notification, 1);
544
- rb_define_method(gdkDisplay, "supports_clipboard_persistence?", gdkdisplay_supports_clipboard_persistence, 0);
545
- rb_define_method(gdkDisplay, "store_clipboard", gdkdisplay_store_clipboard, 3);
552
+ RG_DEF_METHOD_P(supports_selection_notification, 0);
553
+ RG_DEF_METHOD_P(request_selection_notification, 1);
554
+ RG_DEF_METHOD_P(supports_clipboard_persistence, 0);
555
+ RG_DEF_METHOD(store_clipboard, 3);
546
556
  #endif
547
- rb_define_method(gdkDisplay, "core_pointer", gdkdisplay_get_core_pointer, 0);
557
+ RG_DEF_METHOD(core_pointer, 0);
548
558
  #if GTK_CHECK_VERSION(2,8,0)
549
- rb_define_method(gdkDisplay, "warp_pointer", gdkdisplay_warp_pointer, 3);
559
+ RG_DEF_METHOD(warp_pointer, 3);
550
560
  #endif
551
561
 
552
- G_DEF_SETTERS(gdkDisplay);
562
+ G_DEF_SETTERS(RG_TARGET_NAMESPACE);
553
563
  #ifdef GDK_WINDOWING_X11
554
- rb_define_method(gdkDisplay, "grab", gdkdisplay_grab, 0);
555
- rb_define_method(gdkDisplay, "ungrab", gdkdisplay_ungrab, 0);
564
+ RG_DEF_METHOD(grab, 0);
565
+ RG_DEF_METHOD(ungrab, 0);
556
566
  #if GTK_CHECK_VERSION(2,4,0)
557
- rb_define_method(gdkDisplay, "register_standard_event_type", gdkdisplay_register_standard_event_type, 2);
567
+ RG_DEF_METHOD(register_standard_event_type, 2);
558
568
  #endif
559
569
  #if GTK_CHECK_VERSION(2,8,0)
560
- rb_define_method(gdkDisplay, "user_time", gdkdisplay_get_user_time, 0);
561
- rb_define_method(gdkDisplay, "set_cursor_theme", gdkdisplay_set_cursor_theme, 2);
570
+ RG_DEF_METHOD(user_time, 0);
571
+ RG_DEF_METHOD(set_cursor_theme, 2);
562
572
  #endif
563
573
  # if GTK_CHECK_VERSION(2, 12, 0)
564
574
  /*
565
- rb_define_method(gdkDisplay, "broadcast_startup_message",
566
- gdkdisplay_broadcast_startup_message, -1);
575
+ RG_DEF_METHOD(broadcast_startup_message, -1);
567
576
  */
568
- rb_define_method(gdkDisplay, "startup_notification_id",
569
- gdkdisplay_get_startup_notification_id, 0);
577
+ RG_DEF_METHOD(startup_notification_id, 0);
570
578
  # endif
571
579
  G_DEF_CLASS3("GdkDisplayX11", "DisplayX11", mGdk);
572
580
  #endif
573
581
  #endif
574
582
 
575
583
  #if GTK_CHECK_VERSION(2,10,0)
576
- rb_define_method(gdkDisplay, "supports_shapes?", gdkdisplay_supports_shapes, 0);
577
- rb_define_method(gdkDisplay, "supports_input_shapes?", gdkdisplay_supports_input_shapes, 0);
584
+ RG_DEF_METHOD_P(supports_shapes, 0);
585
+ RG_DEF_METHOD_P(supports_input_shapes, 0);
578
586
  #endif
579
587
  #if GTK_CHECK_VERSION(2, 12, 0)
580
- rb_define_method(gdkDisplay, "supports_composite?", gdkdisplay_supports_composite, 0);
581
- rb_define_method(gdkDisplay, "trigger_tooltip_query", gdkdisplay_trigger_tooltip_query, 0);
588
+ RG_DEF_METHOD_P(supports_composite, 0);
589
+ RG_DEF_METHOD(trigger_tooltip_query, 0);
582
590
  #endif
583
591
  }