gtk2 1.0.3 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,10 +1,23 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
- /************************************************
3
-
4
- rbgtkconversions.h -
5
-
6
- Copyright (C) 2008 Ruby-GNOME2 Project Team
7
- ************************************************/
2
+ /*
3
+ * Copyright (C) 2011 Ruby-GNOME2 Project Team
4
+ * Copyright (C) 2008 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
+ */
8
21
 
9
22
  #ifndef __RB_GTK_MACROS_H__
10
23
  #define __RB_GTK_MACROS_H__
@@ -1,24 +1,35 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
- /************************************************
3
-
4
- rbgtkmenu.c -
5
-
6
- $Author: ggc $
7
- $Date: 2007/07/13 16:07:31 $
8
-
9
- Copyright (C) 2002-2006 Ruby-GNOME2 Project Team
10
- Copyright (C) 1998-2000 Yukihiro Matsumoto,
11
- Daisuke Kanda,
12
- Hiroshi Igarashi
13
- ************************************************/
2
+ /*
3
+ * Copyright (C) 2011 Ruby-GNOME2 Project Team
4
+ * Copyright (C) 2002-2006 Ruby-GNOME2 Project Team
5
+ * Copyright (C) 1998-2000 Yukihiro Matsumoto,
6
+ * Daisuke Kanda,
7
+ * Hiroshi Igarashi
8
+ *
9
+ * This library is free software; you can redistribute it and/or
10
+ * modify it under the terms of the GNU Lesser General Public
11
+ * License as published by the Free Software Foundation; either
12
+ * version 2.1 of the License, or (at your option) any later version.
13
+ *
14
+ * This library is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ * Lesser General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public
20
+ * License along with this library; if not, write to the Free Software
21
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22
+ * MA 02110-1301 USA
23
+ */
14
24
 
15
25
  #include "global.h"
16
26
 
27
+ #define RG_TARGET_NAMESPACE cMenu
17
28
  #define _SELF(self) (GTK_MENU(RVAL2GOBJ(self)))
18
29
  #define RVAL2WIDGET(w) (GTK_WIDGET(RVAL2GOBJ(w)))
19
30
 
20
31
  static VALUE
21
- menu_initialize(VALUE self)
32
+ rg_initialize(VALUE self)
22
33
  {
23
34
  RBGTK_INITIALIZE(self, gtk_menu_new());
24
35
  return Qnil;
@@ -26,7 +37,7 @@ menu_initialize(VALUE self)
26
37
 
27
38
  #if GTK_CHECK_VERSION(2,2,0)
28
39
  static VALUE
29
- menu_set_screen(VALUE self, VALUE screen)
40
+ rg_set_screen(VALUE self, VALUE screen)
30
41
  {
31
42
  gtk_menu_set_screen(_SELF(self), GDK_SCREEN(RVAL2GOBJ(screen)));
32
43
  return self;
@@ -34,7 +45,7 @@ menu_set_screen(VALUE self, VALUE screen)
34
45
  #endif
35
46
 
36
47
  static VALUE
37
- menu_reorder_child(VALUE self, VALUE child, VALUE position)
48
+ rg_reorder_child(VALUE self, VALUE child, VALUE position)
38
49
  {
39
50
  gtk_menu_reorder_child(_SELF(self), GTK_WIDGET(RVAL2GOBJ(child)),
40
51
  NUM2INT(position));
@@ -43,7 +54,7 @@ menu_reorder_child(VALUE self, VALUE child, VALUE position)
43
54
 
44
55
  #if GTK_CHECK_VERSION(2,4,0)
45
56
  static VALUE
46
- menu_attach(VALUE self, VALUE child, VALUE left_attach, VALUE right_attach, VALUE top_attach, VALUE bottom_attach)
57
+ rg_attach(VALUE self, VALUE child, VALUE left_attach, VALUE right_attach, VALUE top_attach, VALUE bottom_attach)
47
58
  {
48
59
  gtk_menu_attach(_SELF(self), GTK_WIDGET(RVAL2GOBJ(child)),
49
60
  NUM2UINT(left_attach), NUM2UINT(right_attach),
@@ -71,7 +82,7 @@ menu_pos_func(GtkMenu *menu, gint *px, gint *py, gboolean *push_in, gpointer dat
71
82
 
72
83
  /* the proc should return [x, y, push_in] */
73
84
  static VALUE
74
- menu_popup(VALUE self, VALUE pshell, VALUE pitem, VALUE button, VALUE activate_time)
85
+ rg_popup(VALUE self, VALUE pshell, VALUE pitem, VALUE button, VALUE activate_time)
75
86
  {
76
87
  GtkWidget *gpshell = NULL;
77
88
  GtkWidget *gpitem = NULL;
@@ -91,46 +102,27 @@ menu_popup(VALUE self, VALUE pshell, VALUE pitem, VALUE button, VALUE activate_t
91
102
  if (!NIL_P(pitem)) {
92
103
  gpitem = RVAL2WIDGET(pitem);
93
104
  }
94
-
105
+
95
106
  gtk_menu_popup(_SELF(self), gpshell, gpitem,
96
107
  pfunc, data, NUM2UINT(button),
97
108
  NUM2UINT(activate_time));
98
109
  return self;
99
110
  }
100
111
 
101
- /* Defined as Properties
102
- gboolean gtk_menu_get_tearoff_state (GtkMenu *menu);
103
- void gtk_menu_set_accel_group (GtkMenu *menu,
104
- GtkAccelGroup *accel_group);
105
- GtkAccelGroup * gtk_menu_get_accel_group (GtkMenu *menu);
106
- void gtk_menu_set_accel_path (GtkMenu *menu,
107
- const gchar *accel_path);
108
- */
109
-
110
112
  static VALUE
111
- menu_popdown(VALUE self)
113
+ rg_popdown(VALUE self)
112
114
  {
113
115
  gtk_menu_popdown(_SELF(self));
114
116
  return self;
115
117
  }
116
118
 
117
119
  static VALUE
118
- menu_reposition(VALUE self)
120
+ rg_reposition(VALUE self)
119
121
  {
120
122
  gtk_menu_reposition(_SELF(self));
121
123
  return self;
122
124
  }
123
125
 
124
- /* Defined as Properties
125
- GtkWidget * gtk_menu_get_active (GtkMenu *menu);
126
- void gtk_menu_set_active (GtkMenu *menu,
127
- guint index_);
128
- void gtk_menu_set_tearoff_state (GtkMenu *menu,
129
- gboolean torn_off);
130
- void gtk_menu_set_monitor (GtkMenu *menu,
131
- gint monitor_num);
132
- gint gtk_menu_get_monitor (GtkMenu *menu);
133
- */
134
126
  static VALUE menu_detacher;
135
127
  static void
136
128
  detach_func(GtkWidget *attach_widget, GtkMenu *menu)
@@ -140,7 +132,7 @@ detach_func(GtkWidget *attach_widget, GtkMenu *menu)
140
132
  }
141
133
 
142
134
  static VALUE
143
- menu_attach_to_widget(VALUE self, VALUE attach_widget)
135
+ rg_attach_to_widget(VALUE self, VALUE attach_widget)
144
136
  {
145
137
  menu_detacher = rb_block_proc();
146
138
  G_RELATIVE(self, menu_detacher);
@@ -151,19 +143,15 @@ menu_attach_to_widget(VALUE self, VALUE attach_widget)
151
143
  }
152
144
 
153
145
  static VALUE
154
- menu_detach(VALUE self)
146
+ rg_detach(VALUE self)
155
147
  {
156
148
  gtk_menu_detach(_SELF(self));
157
149
  return self;
158
150
  }
159
151
 
160
- /* Defined as Properties
161
- GtkWidget * gtk_menu_get_attach_widget (GtkMenu *menu);
162
- */
163
-
164
152
  #if GTK_CHECK_VERSION(2,6,0)
165
153
  static VALUE
166
- menu_s_get_for_attach_widget(VALUE self, VALUE widget)
154
+ rg_s_get_for_attach_widget(G_GNUC_UNUSED VALUE self, VALUE widget)
167
155
  {
168
156
  /* Owned by GTK+ */
169
157
  return GLIST2ARY(gtk_menu_get_for_attach_widget(GTK_WIDGET(RVAL2GOBJ(widget))));
@@ -171,25 +159,25 @@ menu_s_get_for_attach_widget(VALUE self, VALUE widget)
171
159
  #endif
172
160
 
173
161
  void
174
- Init_gtk_menu()
162
+ Init_gtk_menu(VALUE mGtk)
175
163
  {
176
- VALUE gMenu = G_DEF_CLASS(GTK_TYPE_MENU, "Menu", mGtk);
164
+ VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_MENU, "Menu", mGtk);
177
165
 
178
- rb_define_method(gMenu, "initialize", menu_initialize, 0);
166
+ RG_DEF_METHOD(initialize, 0);
179
167
  #if GTK_CHECK_VERSION(2,2,0)
180
- rb_define_method(gMenu, "set_screen", menu_set_screen, 1);
181
- G_DEF_SETTER(gMenu, "screen");
168
+ RG_DEF_METHOD(set_screen, 1);
169
+ G_DEF_SETTER(RG_TARGET_NAMESPACE, "screen");
182
170
  #endif
183
- rb_define_method(gMenu, "reorder_child", menu_reorder_child, 2);
171
+ RG_DEF_METHOD(reorder_child, 2);
184
172
  #if GTK_CHECK_VERSION(2,4,0)
185
- rb_define_method(gMenu, "attach", menu_attach, 5);
173
+ RG_DEF_METHOD(attach, 5);
186
174
  #endif
187
- rb_define_method(gMenu, "popup", menu_popup, 4);
188
- rb_define_method(gMenu, "popdown", menu_popdown, 0);
189
- rb_define_method(gMenu, "reposition", menu_reposition, 0);
190
- rb_define_method(gMenu, "detach", menu_detach, 0);
175
+ RG_DEF_METHOD(popup, 4);
176
+ RG_DEF_METHOD(popdown, 0);
177
+ RG_DEF_METHOD(reposition, 0);
178
+ RG_DEF_METHOD(detach, 0);
191
179
  #if GTK_CHECK_VERSION(2,6,0)
192
- rb_define_singleton_method(gMenu, "get_for_attach_widget", menu_s_get_for_attach_widget, 1);
180
+ RG_DEF_SMETHOD(get_for_attach_widget, 1);
193
181
  #endif
194
- rb_define_method(gMenu, "attach_to_widget", menu_attach_to_widget, 1);
182
+ RG_DEF_METHOD(attach_to_widget, 1);
195
183
  }
@@ -1,47 +1,47 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
- /************************************************
3
-
4
- rbgtkmenubar.c -
5
-
6
- $Author: mutoh $
7
- $Date: 2005/09/18 02:42:01 $
8
-
9
- Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
10
- Copyright (C) 1998-2000 Yukihiro Matsumoto,
11
- Daisuke Kanda,
12
- Hiroshi Igarashi
13
- ************************************************/
2
+ /*
3
+ * Copyright (C) 2011 Ruby-GNOME2 Project Team
4
+ * Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
5
+ * Copyright (C) 1998-2000 Yukihiro Matsumoto,
6
+ * Daisuke Kanda,
7
+ * Hiroshi Igarashi
8
+ *
9
+ * This library is free software; you can redistribute it and/or
10
+ * modify it under the terms of the GNU Lesser General Public
11
+ * License as published by the Free Software Foundation; either
12
+ * version 2.1 of the License, or (at your option) any later version.
13
+ *
14
+ * This library is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ * Lesser General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public
20
+ * License along with this library; if not, write to the Free Software
21
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22
+ * MA 02110-1301 USA
23
+ */
14
24
 
15
25
  #include "global.h"
16
26
 
27
+ #define RG_TARGET_NAMESPACE cMenuBar
28
+
17
29
  static VALUE
18
- mbar_initialize(VALUE self)
30
+ rg_initialize(VALUE self)
19
31
  {
20
32
  RBGTK_INITIALIZE(self, gtk_menu_bar_new());
21
33
  return Qnil;
22
34
  }
23
35
 
24
- /* Defined as property
25
- void gtk_menu_bar_set_pack_direction (GtkMenuBar *menubar,
26
- GtkPackDirection pack_dir);
27
- GtkPackDirection gtk_menu_bar_get_pack_direction
28
- (GtkMenuBar *menubar);
29
- void gtk_menu_bar_set_child_pack_direction
30
- (GtkMenuBar *menubar,
31
- GtkPackDirection child_pack_dir);
32
- GtkPackDirection gtk_menu_bar_get_child_pack_direction
33
- (GtkMenuBar *menubar);
34
- */
35
-
36
36
  void
37
- Init_gtk_menu_bar()
37
+ Init_gtk_menu_bar(VALUE mGtk)
38
38
  {
39
- VALUE gMenuBar = G_DEF_CLASS(GTK_TYPE_MENU_BAR, "MenuBar", mGtk);
40
- rb_define_method(gMenuBar, "initialize", mbar_initialize, 0);
39
+ VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_MENU_BAR, "MenuBar", mGtk);
40
+ RG_DEF_METHOD(initialize, 0);
41
41
 
42
42
  #if GTK_CHECK_VERSION(2,8,0)
43
43
  /* GtkPackDirection */
44
- G_DEF_CLASS(GTK_TYPE_PACK_DIRECTION, "PackDirection", gMenuBar);
45
- G_DEF_CONSTANTS(gMenuBar, GTK_TYPE_PACK_DIRECTION, "GTK_");
44
+ G_DEF_CLASS(GTK_TYPE_PACK_DIRECTION, "PackDirection", RG_TARGET_NAMESPACE);
45
+ G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_PACK_DIRECTION, "GTK_");
46
46
  #endif
47
47
  }
@@ -1,23 +1,34 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
- /************************************************
3
-
4
- rbgtkmenuitem.c -
5
-
6
- $Author: ggc $
7
- $Date: 2007/07/13 16:07:31 $
8
-
9
- Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
10
- Copyright (C) 1998-2000 Yukihiro Matsumoto,
11
- Daisuke Kanda,
12
- Hiroshi Igarashi
13
- ************************************************/
2
+ /*
3
+ * Copyright (C) 2011 Ruby-GNOME2 Project Team
4
+ * Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
5
+ * Copyright (C) 1998-2000 Yukihiro Matsumoto,
6
+ * Daisuke Kanda,
7
+ * Hiroshi Igarashi
8
+ *
9
+ * This library is free software; you can redistribute it and/or
10
+ * modify it under the terms of the GNU Lesser General Public
11
+ * License as published by the Free Software Foundation; either
12
+ * version 2.1 of the License, or (at your option) any later version.
13
+ *
14
+ * This library is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ * Lesser General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public
20
+ * License along with this library; if not, write to the Free Software
21
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22
+ * MA 02110-1301 USA
23
+ */
14
24
 
15
25
  #include "global.h"
16
26
 
27
+ #define RG_TARGET_NAMESPACE cMenuItem
17
28
  #define _SELF(s) (GTK_MENU_ITEM(RVAL2GOBJ(s)))
18
29
 
19
30
  static VALUE
20
- mitem_initialize(int argc, VALUE *argv, VALUE self)
31
+ rg_initialize(int argc, VALUE *argv, VALUE self)
21
32
  {
22
33
  const gchar *label = NULL;
23
34
  VALUE rb_label, use_underline;
@@ -41,13 +52,6 @@ mitem_initialize(int argc, VALUE *argv, VALUE self)
41
52
  return Qnil;
42
53
  }
43
54
 
44
- /* Defined as Properties
45
- void gtk_menu_item_set_right_justified (GtkMenuItem *menu_item,
46
- gboolean right_justified);
47
- gboolean gtk_menu_item_get_right_justified (GtkMenuItem *menu_item);
48
- GtkWidget * gtk_menu_item_get_submenu (GtkMenuItem *menu_item);
49
- */
50
-
51
55
  static VALUE
52
56
  mitem_set_submenu(VALUE self, VALUE child)
53
57
  {
@@ -64,13 +68,8 @@ mitem_set_submenu(VALUE self, VALUE child)
64
68
  return self;
65
69
  }
66
70
 
67
- /* Defined as Properties
68
- void gtk_menu_item_set_accel_path (GtkMenuItem *menu_item,
69
- const gchar *accel_path);
70
- */
71
-
72
71
  static VALUE
73
- mitem_remove_submenu(VALUE self)
72
+ rg_remove_submenu(VALUE self)
74
73
  {
75
74
  GtkMenuItem *item;
76
75
  GtkWidget *submenu;
@@ -84,14 +83,8 @@ mitem_remove_submenu(VALUE self)
84
83
  return self;
85
84
  }
86
85
 
87
- /* Defined as Signals
88
- void gtk_menu_item_select (GtkMenuItem *menu_item);
89
- void gtk_menu_item_deselect (GtkMenuItem *menu_item);
90
- void gtk_menu_item_activate (GtkMenuItem *menu_item);
91
- */
92
-
93
86
  static VALUE
94
- mitem_toggle_size_request(VALUE self)
87
+ rg_toggle_size_request(VALUE self)
95
88
  {
96
89
  gint requisition;
97
90
  gtk_menu_item_toggle_size_request(_SELF(self), &requisition);
@@ -99,20 +92,20 @@ mitem_toggle_size_request(VALUE self)
99
92
  }
100
93
 
101
94
  static VALUE
102
- mitem_toggle_size_allocate(VALUE self, VALUE allocation)
95
+ rg_toggle_size_allocate(VALUE self, VALUE allocation)
103
96
  {
104
97
  gtk_menu_item_toggle_size_allocate(_SELF(self), NUM2INT(allocation));
105
98
  return self;
106
99
  }
107
100
 
108
101
  void
109
- Init_gtk_menu_item()
102
+ Init_gtk_menu_item(VALUE mGtk)
110
103
  {
111
- VALUE gMenuItem = G_DEF_CLASS(GTK_TYPE_MENU_ITEM, "MenuItem", mGtk);
104
+ VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_MENU_ITEM, "MenuItem", mGtk);
112
105
 
113
- rb_define_method(gMenuItem, "initialize", mitem_initialize, -1);
114
- G_REPLACE_SET_PROPERTY(gMenuItem, "submenu", mitem_set_submenu, 1);
115
- rb_define_method(gMenuItem, "remove_submenu", mitem_remove_submenu, 0);
116
- rb_define_method(gMenuItem, "toggle_size_request", mitem_toggle_size_request, 0);
117
- rb_define_method(gMenuItem, "toggle_size_allocate", mitem_toggle_size_allocate, 1);
106
+ RG_DEF_METHOD(initialize, -1);
107
+ G_REPLACE_SET_PROPERTY(RG_TARGET_NAMESPACE, "submenu", mitem_set_submenu, 1);
108
+ RG_DEF_METHOD(remove_submenu, 0);
109
+ RG_DEF_METHOD(toggle_size_request, 0);
110
+ RG_DEF_METHOD(toggle_size_allocate, 1);
118
111
  }
@@ -1,24 +1,35 @@
1
1
  /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
- /************************************************
3
-
4
- rbgtkmenushell.c -
5
-
6
- $Author: ggc $
7
- $Date: 2007/07/13 16:07:31 $
8
-
9
- Copyright (C) 2002-2004 Ruby-GNOME2 Project Team
10
- Copyright (C) 1998-2000 Yukihiro Matsumoto,
11
- Daisuke Kanda,
12
- Hiroshi Igarashi
13
- ************************************************/
2
+ /*
3
+ * Copyright (C) 2011 Ruby-GNOME2 Project Team
4
+ * Copyright (C) 2002-2004 Ruby-GNOME2 Project Team
5
+ * Copyright (C) 1998-2000 Yukihiro Matsumoto,
6
+ * Daisuke Kanda,
7
+ * Hiroshi Igarashi
8
+ *
9
+ * This library is free software; you can redistribute it and/or
10
+ * modify it under the terms of the GNU Lesser General Public
11
+ * License as published by the Free Software Foundation; either
12
+ * version 2.1 of the License, or (at your option) any later version.
13
+ *
14
+ * This library is distributed in the hope that it will be useful,
15
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17
+ * Lesser General Public License for more details.
18
+ *
19
+ * You should have received a copy of the GNU Lesser General Public
20
+ * License along with this library; if not, write to the Free Software
21
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
22
+ * MA 02110-1301 USA
23
+ */
14
24
 
15
25
  #include "global.h"
16
26
 
27
+ #define RG_TARGET_NAMESPACE cMenuShell
17
28
  #define _SELF(self) (GTK_MENU_SHELL(RVAL2GOBJ(self)))
18
29
  #define RVAL2WIDGET(w) (GTK_WIDGET(RVAL2GOBJ(w)))
19
30
 
20
31
  static VALUE
21
- mshell_append(VALUE self, VALUE child)
32
+ rg_append(VALUE self, VALUE child)
22
33
  {
23
34
  gtk_menu_shell_append(_SELF(self),RVAL2WIDGET(child));
24
35
  G_CHILD_ADD(self, child);
@@ -26,7 +37,7 @@ mshell_append(VALUE self, VALUE child)
26
37
  }
27
38
 
28
39
  static VALUE
29
- mshell_prepend(VALUE self, VALUE child)
40
+ rg_prepend(VALUE self, VALUE child)
30
41
  {
31
42
  gtk_menu_shell_prepend(_SELF(self), RVAL2WIDGET(child));
32
43
  G_CHILD_ADD(self, child);
@@ -34,7 +45,7 @@ mshell_prepend(VALUE self, VALUE child)
34
45
  }
35
46
 
36
47
  static VALUE
37
- mshell_insert(VALUE self, VALUE child, VALUE pos)
48
+ rg_insert(VALUE self, VALUE child, VALUE pos)
38
49
  {
39
50
  gtk_menu_shell_insert(_SELF(self), RVAL2WIDGET(child),
40
51
  NUM2INT(pos));
@@ -43,14 +54,14 @@ mshell_insert(VALUE self, VALUE child, VALUE pos)
43
54
  }
44
55
 
45
56
  static VALUE
46
- mshell_deactivate(VALUE self)
57
+ rg_deactivate(VALUE self)
47
58
  {
48
59
  gtk_menu_shell_deactivate(_SELF(self));
49
60
  return self;
50
61
  }
51
62
 
52
63
  static VALUE
53
- mshell_select_item(VALUE self, VALUE menu_item)
64
+ rg_select_item(VALUE self, VALUE menu_item)
54
65
  {
55
66
  gtk_menu_shell_select_item(_SELF(self), RVAL2WIDGET(menu_item));
56
67
  return self;
@@ -58,7 +69,7 @@ mshell_select_item(VALUE self, VALUE menu_item)
58
69
 
59
70
  #if GTK_CHECK_VERSION(2,2,0)
60
71
  static VALUE
61
- mshell_select_first(VALUE self, VALUE search_sensitive)
72
+ rg_select_first(VALUE self, VALUE search_sensitive)
62
73
  {
63
74
  gtk_menu_shell_select_first(_SELF(self), RVAL2CBOOL(search_sensitive));
64
75
  return self;
@@ -66,46 +77,36 @@ mshell_select_first(VALUE self, VALUE search_sensitive)
66
77
  #endif
67
78
 
68
79
  static VALUE
69
- mshell_deselect(VALUE self)
80
+ rg_deselect(VALUE self)
70
81
  {
71
82
  gtk_menu_shell_deselect(_SELF(self));
72
83
  return self;
73
84
  }
74
85
 
75
86
  static VALUE
76
- mshell_activate_item(VALUE self, VALUE menu_item, VALUE force_deactivate)
87
+ rg_activate_item(VALUE self, VALUE menu_item, VALUE force_deactivate)
77
88
  {
78
89
  gtk_menu_shell_activate_item(_SELF(self), RVAL2WIDGET(menu_item),
79
90
  RVAL2CBOOL(force_deactivate));
80
91
  return self;
81
92
  }
82
93
 
83
- /* Defined as Signals
84
- void gtk_menu_shell_cancel (GtkMenuShell *menu_shell);
85
- */
86
-
87
- /* Defined as properties
88
- void gtk_menu_shell_set_take_focus (GtkMenuShell *menu_shell,
89
- gboolean take_focus);
90
- gboolean gtk_menu_shell_get_take_focus (GtkMenuShell *menu_shell);
91
- */
92
-
93
94
  void
94
- Init_gtk_menu_shell()
95
+ Init_gtk_menu_shell(VALUE mGtk)
95
96
  {
96
- VALUE gMenuShell = G_DEF_CLASS(GTK_TYPE_MENU_SHELL, "MenuShell", mGtk);
97
+ VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_MENU_SHELL, "MenuShell", mGtk);
97
98
 
98
- rb_define_method(gMenuShell, "append", mshell_append, 1);
99
- rb_define_method(gMenuShell, "prepend", mshell_prepend, 1);
100
- rb_define_method(gMenuShell, "insert", mshell_insert, 2);
101
- rb_define_method(gMenuShell, "deactivate", mshell_deactivate, 0);
102
- rb_define_method(gMenuShell, "select_item", mshell_select_item, 1);
99
+ RG_DEF_METHOD(append, 1);
100
+ RG_DEF_METHOD(prepend, 1);
101
+ RG_DEF_METHOD(insert, 2);
102
+ RG_DEF_METHOD(deactivate, 0);
103
+ RG_DEF_METHOD(select_item, 1);
103
104
  #if GTK_CHECK_VERSION(2,2,0)
104
- rb_define_method(gMenuShell, "select_first", mshell_select_first, 1);
105
+ RG_DEF_METHOD(select_first, 1);
105
106
  #endif
106
- rb_define_method(gMenuShell, "deselect", mshell_deselect, 0);
107
- rb_define_method(gMenuShell, "activate_item", mshell_activate_item, 2);
107
+ RG_DEF_METHOD(deselect, 0);
108
+ RG_DEF_METHOD(activate_item, 2);
108
109
  /* GtkMenuDirectionType */
109
- G_DEF_CLASS(GTK_TYPE_MENU_DIRECTION_TYPE, "DirectionType", gMenuShell);
110
- G_DEF_CONSTANTS(gMenuShell, GTK_TYPE_MENU_DIRECTION_TYPE, "GTK_MENU_");
110
+ G_DEF_CLASS(GTK_TYPE_MENU_DIRECTION_TYPE, "DirectionType", RG_TARGET_NAMESPACE);
111
+ G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_MENU_DIRECTION_TYPE, "GTK_MENU_");
111
112
  }