gtk2 0.20.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (281) hide show
  1. data/ChangeLog +6664 -0
  2. data/README +33 -0
  3. data/Rakefile +71 -0
  4. data/extconf.rb +116 -0
  5. data/src/global.h +33 -0
  6. data/src/init.c +39 -0
  7. data/src/lib/gtk2.rb +13 -0
  8. data/src/lib/gtk2/base.rb +95 -0
  9. data/src/makeinits.rb +57 -0
  10. data/src/makekeysyms.rb +5 -0
  11. data/src/rbgdk.c +395 -0
  12. data/src/rbgdk.h +50 -0
  13. data/src/rbgdkatom.c +122 -0
  14. data/src/rbgdkcairo.c +100 -0
  15. data/src/rbgdkcolor.c +151 -0
  16. data/src/rbgdkcolormap.c +142 -0
  17. data/src/rbgdkconst.c +29 -0
  18. data/src/rbgdkconversions.h +18 -0
  19. data/src/rbgdkcursor.c +115 -0
  20. data/src/rbgdkdevice.c +235 -0
  21. data/src/rbgdkdisplay.c +634 -0
  22. data/src/rbgdkdisplaymanager.c +50 -0
  23. data/src/rbgdkdragcontext.c +280 -0
  24. data/src/rbgdkdraw.c +487 -0
  25. data/src/rbgdkevent.c +1020 -0
  26. data/src/rbgdkgc.c +456 -0
  27. data/src/rbgdkgeometry.c +272 -0
  28. data/src/rbgdkimage.c +155 -0
  29. data/src/rbgdkinput.c +70 -0
  30. data/src/rbgdkkeymap.c +153 -0
  31. data/src/rbgdkkeysyms.h +2174 -0
  32. data/src/rbgdkkeyval.c +105 -0
  33. data/src/rbgdkpango.c +171 -0
  34. data/src/rbgdkpangorenderer.c +132 -0
  35. data/src/rbgdkpixbuf.c +178 -0
  36. data/src/rbgdkpixmap.c +255 -0
  37. data/src/rbgdkproperty.c +342 -0
  38. data/src/rbgdkrectangle.c +146 -0
  39. data/src/rbgdkregion.c +242 -0
  40. data/src/rbgdkrgb.c +197 -0
  41. data/src/rbgdkscreen.c +535 -0
  42. data/src/rbgdkselection.c +161 -0
  43. data/src/rbgdkthreads.c +68 -0
  44. data/src/rbgdktimecoord.c +118 -0
  45. data/src/rbgdkvisual.c +273 -0
  46. data/src/rbgdkwindow.c +1302 -0
  47. data/src/rbgdkwindowattr.c +213 -0
  48. data/src/rbgdkx11.c +256 -0
  49. data/src/rbgtk.c +93 -0
  50. data/src/rbgtk.h +121 -0
  51. data/src/rbgtkaboutdialog.c +195 -0
  52. data/src/rbgtkaccelerator.c +78 -0
  53. data/src/rbgtkaccelgroup.c +216 -0
  54. data/src/rbgtkaccelgroupentry.c +85 -0
  55. data/src/rbgtkaccelkey.c +116 -0
  56. data/src/rbgtkaccellabel.c +46 -0
  57. data/src/rbgtkaccelmap.c +162 -0
  58. data/src/rbgtkaccessible.c +29 -0
  59. data/src/rbgtkaction.c +277 -0
  60. data/src/rbgtkactiongroup.c +377 -0
  61. data/src/rbgtkadjustment.c +153 -0
  62. data/src/rbgtkalignment.c +71 -0
  63. data/src/rbgtkallocation.c +171 -0
  64. data/src/rbgtkarrow.c +47 -0
  65. data/src/rbgtkaspectframe.c +46 -0
  66. data/src/rbgtkassistant.c +230 -0
  67. data/src/rbgtkbbox.c +47 -0
  68. data/src/rbgtkbin.c +31 -0
  69. data/src/rbgtkbindingset.c +192 -0
  70. data/src/rbgtkborder.c +80 -0
  71. data/src/rbgtkbox.c +142 -0
  72. data/src/rbgtkbuildable.c +115 -0
  73. data/src/rbgtkbuilder.c +154 -0
  74. data/src/rbgtkbutton.c +151 -0
  75. data/src/rbgtkcalendar.c +159 -0
  76. data/src/rbgtkcelleditable.c +49 -0
  77. data/src/rbgtkcelllayout.c +144 -0
  78. data/src/rbgtkcellrenderer.c +139 -0
  79. data/src/rbgtkcellrendereraccel.c +42 -0
  80. data/src/rbgtkcellrenderercombo.c +37 -0
  81. data/src/rbgtkcellrendererpixbuf.c +33 -0
  82. data/src/rbgtkcellrendererprogress.c +37 -0
  83. data/src/rbgtkcellrendererspin.c +38 -0
  84. data/src/rbgtkcellrenderertext.c +45 -0
  85. data/src/rbgtkcellrenderertoggle.c +32 -0
  86. data/src/rbgtkcellview.c +134 -0
  87. data/src/rbgtkcheckbutton.c +55 -0
  88. data/src/rbgtkcheckmenuitem.c +56 -0
  89. data/src/rbgtkclipboard.c +473 -0
  90. data/src/rbgtkcolorbutton.c +63 -0
  91. data/src/rbgtkcolorsel.c +175 -0
  92. data/src/rbgtkcolorselectiondialog.c +72 -0
  93. data/src/rbgtkcombo.c +117 -0
  94. data/src/rbgtkcombobox.c +240 -0
  95. data/src/rbgtkcomboboxentry.c +60 -0
  96. data/src/rbgtkconst.c +163 -0
  97. data/src/rbgtkcontainer.c +776 -0
  98. data/src/rbgtkconversions.h +26 -0
  99. data/src/rbgtkcurve.c +105 -0
  100. data/src/rbgtkdialog.c +244 -0
  101. data/src/rbgtkdrag.c +436 -0
  102. data/src/rbgtkdrawingarea.c +31 -0
  103. data/src/rbgtkeditable.c +152 -0
  104. data/src/rbgtkentry.c +161 -0
  105. data/src/rbgtkentrycompletion.c +167 -0
  106. data/src/rbgtkeventbox.c +31 -0
  107. data/src/rbgtkexpander.c +67 -0
  108. data/src/rbgtkfilechooser.c +403 -0
  109. data/src/rbgtkfilechooserbutton.c +72 -0
  110. data/src/rbgtkfilechooserdialog.c +58 -0
  111. data/src/rbgtkfilechooserwidget.c +50 -0
  112. data/src/rbgtkfilefilter.c +139 -0
  113. data/src/rbgtkfilesel.c +155 -0
  114. data/src/rbgtkfixed.c +72 -0
  115. data/src/rbgtkfontbutton.c +69 -0
  116. data/src/rbgtkfontselection.c +30 -0
  117. data/src/rbgtkfontselectiondialog.c +106 -0
  118. data/src/rbgtkframe.c +64 -0
  119. data/src/rbgtkgamma.c +47 -0
  120. data/src/rbgtkhandlebox.c +42 -0
  121. data/src/rbgtkhbbox.c +31 -0
  122. data/src/rbgtkhbox.c +38 -0
  123. data/src/rbgtkhpaned.c +31 -0
  124. data/src/rbgtkhruler.c +31 -0
  125. data/src/rbgtkhscale.c +45 -0
  126. data/src/rbgtkhscrollbar.c +38 -0
  127. data/src/rbgtkhseparator.c +30 -0
  128. data/src/rbgtkiconfactory.c +80 -0
  129. data/src/rbgtkiconinfo.c +118 -0
  130. data/src/rbgtkiconset.c +87 -0
  131. data/src/rbgtkiconsize.c +90 -0
  132. data/src/rbgtkiconsource.c +176 -0
  133. data/src/rbgtkicontheme.c +309 -0
  134. data/src/rbgtkiconview.c +351 -0
  135. data/src/rbgtkimage.c +152 -0
  136. data/src/rbgtkimagemenuitem.c +52 -0
  137. data/src/rbgtkimcontext.c +134 -0
  138. data/src/rbgtkimcontextsimple.c +48 -0
  139. data/src/rbgtkimmulticontext.c +38 -0
  140. data/src/rbgtkinits.c +473 -0
  141. data/src/rbgtkinputdialog.c +30 -0
  142. data/src/rbgtkinvisible.c +68 -0
  143. data/src/rbgtkitem.c +51 -0
  144. data/src/rbgtkitemfactory.c +312 -0
  145. data/src/rbgtklabel.c +168 -0
  146. data/src/rbgtklayout.c +91 -0
  147. data/src/rbgtklinkbutton.c +68 -0
  148. data/src/rbgtkliststore.c +412 -0
  149. data/src/rbgtkmacros.h +26 -0
  150. data/src/rbgtkmain.c +532 -0
  151. data/src/rbgtkmenu.c +272 -0
  152. data/src/rbgtkmenubar.c +48 -0
  153. data/src/rbgtkmenuitem.c +171 -0
  154. data/src/rbgtkmenushell.c +128 -0
  155. data/src/rbgtkmenutoolbutton.c +74 -0
  156. data/src/rbgtkmessagedialog.c +102 -0
  157. data/src/rbgtkmisc.c +63 -0
  158. data/src/rbgtknotebook.c +484 -0
  159. data/src/rbgtkobject.c +186 -0
  160. data/src/rbgtkoptionmenu.c +65 -0
  161. data/src/rbgtkpagesetup.c +196 -0
  162. data/src/rbgtkpagesetupunixdialog.c +80 -0
  163. data/src/rbgtkpaned.c +114 -0
  164. data/src/rbgtkpapersize.c +186 -0
  165. data/src/rbgtkplug.c +84 -0
  166. data/src/rbgtkprintcontext.c +124 -0
  167. data/src/rbgtkprinter.c +155 -0
  168. data/src/rbgtkprintjob.c +151 -0
  169. data/src/rbgtkprintoperation.c +152 -0
  170. data/src/rbgtkprintoperationpreview.c +54 -0
  171. data/src/rbgtkprintsettings.c +794 -0
  172. data/src/rbgtkprintunixdialog.c +98 -0
  173. data/src/rbgtkprogress.c +21 -0
  174. data/src/rbgtkprogressbar.c +72 -0
  175. data/src/rbgtkradioaction.c +102 -0
  176. data/src/rbgtkradiobutton.c +83 -0
  177. data/src/rbgtkradiomenuitem.c +115 -0
  178. data/src/rbgtkradiotoolbutton.c +99 -0
  179. data/src/rbgtkrange.c +98 -0
  180. data/src/rbgtkrc.c +228 -0
  181. data/src/rbgtkrcstyle.c +184 -0
  182. data/src/rbgtkrecentaction.c +52 -0
  183. data/src/rbgtkrecentchooser.c +276 -0
  184. data/src/rbgtkrecentchooserdialog.c +59 -0
  185. data/src/rbgtkrecentchoosermenu.c +55 -0
  186. data/src/rbgtkrecentchooserwidget.c +45 -0
  187. data/src/rbgtkrecentdata.c +152 -0
  188. data/src/rbgtkrecentfilter.c +180 -0
  189. data/src/rbgtkrecentfilterinfo.c +197 -0
  190. data/src/rbgtkrecentinfo.c +232 -0
  191. data/src/rbgtkrecentmanager.c +164 -0
  192. data/src/rbgtkruler.c +82 -0
  193. data/src/rbgtkscale.c +47 -0
  194. data/src/rbgtkscalebutton.c +115 -0
  195. data/src/rbgtkscrollbar.c +21 -0
  196. data/src/rbgtkscrolledwindow.c +160 -0
  197. data/src/rbgtkselection.c +171 -0
  198. data/src/rbgtkselectiondata.c +333 -0
  199. data/src/rbgtkseparator.c +21 -0
  200. data/src/rbgtkseparatormenuitem.c +28 -0
  201. data/src/rbgtkseparatortoolitem.c +40 -0
  202. data/src/rbgtksettings.c +225 -0
  203. data/src/rbgtksizegroup.c +74 -0
  204. data/src/rbgtksocket.c +72 -0
  205. data/src/rbgtkspinbutton.c +138 -0
  206. data/src/rbgtkstatusbar.c +90 -0
  207. data/src/rbgtkstatusicon.c +120 -0
  208. data/src/rbgtkstock.c +264 -0
  209. data/src/rbgtkstyle.c +722 -0
  210. data/src/rbgtktable.c +190 -0
  211. data/src/rbgtktargetlist.c +148 -0
  212. data/src/rbgtktearoffmenuitem.c +30 -0
  213. data/src/rbgtktextappearance.c +173 -0
  214. data/src/rbgtktextattributes.c +209 -0
  215. data/src/rbgtktextbuffer.c +993 -0
  216. data/src/rbgtktextchild.c +49 -0
  217. data/src/rbgtktextiter.c +553 -0
  218. data/src/rbgtktextmark.c +87 -0
  219. data/src/rbgtktexttag.c +66 -0
  220. data/src/rbgtktexttagtable.c +94 -0
  221. data/src/rbgtktextview.c +351 -0
  222. data/src/rbgtktoggleaction.c +76 -0
  223. data/src/rbgtktogglebutton.c +84 -0
  224. data/src/rbgtktoggletoolbutton.c +70 -0
  225. data/src/rbgtktoolbar.c +373 -0
  226. data/src/rbgtktoolbutton.c +75 -0
  227. data/src/rbgtktoolitem.c +184 -0
  228. data/src/rbgtktooltip.c +76 -0
  229. data/src/rbgtktooltips.c +107 -0
  230. data/src/rbgtktreedragdest.c +19 -0
  231. data/src/rbgtktreedragsource.c +19 -0
  232. data/src/rbgtktreeiter.c +259 -0
  233. data/src/rbgtktreemodel.c +256 -0
  234. data/src/rbgtktreemodelfilter.c +214 -0
  235. data/src/rbgtktreemodelsort.c +113 -0
  236. data/src/rbgtktreepath.c +195 -0
  237. data/src/rbgtktreerowreference.c +168 -0
  238. data/src/rbgtktreeselection.c +235 -0
  239. data/src/rbgtktreesortable.c +127 -0
  240. data/src/rbgtktreestore.c +379 -0
  241. data/src/rbgtktreeview.c +881 -0
  242. data/src/rbgtktreeviewcolumn.c +331 -0
  243. data/src/rbgtkuimanager.c +210 -0
  244. data/src/rbgtkvbbox.c +31 -0
  245. data/src/rbgtkvbox.c +38 -0
  246. data/src/rbgtkviewport.c +33 -0
  247. data/src/rbgtkvolumebutton.c +36 -0
  248. data/src/rbgtkvpaned.c +31 -0
  249. data/src/rbgtkvruler.c +30 -0
  250. data/src/rbgtkvscale.c +45 -0
  251. data/src/rbgtkvscrollbar.c +38 -0
  252. data/src/rbgtkvseparator.c +30 -0
  253. data/src/rbgtkwidget.c +1414 -0
  254. data/src/rbgtkwindow.c +822 -0
  255. data/src/rbgtkwindowgroup.c +48 -0
  256. data/test/gtk-test-utils.rb +15 -0
  257. data/test/run-test.rb +30 -0
  258. data/test/test_gc.rb +25 -0
  259. data/test/test_gdk.rb +18 -0
  260. data/test/test_gdk_color.rb +10 -0
  261. data/test/test_gdk_display.rb +37 -0
  262. data/test/test_gdk_event.rb +11 -0
  263. data/test/test_gdk_gc.rb +7 -0
  264. data/test/test_gdk_keymap.rb +8 -0
  265. data/test/test_gdk_pango.rb +9 -0
  266. data/test/test_gdk_selection_data.rb +17 -0
  267. data/test/test_gdk_window.rb +29 -0
  268. data/test/test_gdk_window_attribute.rb +9 -0
  269. data/test/test_gtk_about_dialog.rb +14 -0
  270. data/test/test_gtk_buildable.rb +66 -0
  271. data/test/test_gtk_builder.rb +188 -0
  272. data/test/test_gtk_entry.rb +18 -0
  273. data/test/test_gtk_icon_theme.rb +30 -0
  274. data/test/test_gtk_image.rb +8 -0
  275. data/test/test_gtk_list_store.rb +65 -0
  276. data/test/test_gtk_menu_item.rb +13 -0
  277. data/test/test_gtk_rc_style.rb +14 -0
  278. data/test/test_gtk_tree_path.rb +20 -0
  279. data/test/test_gtk_unix_print.rb +14 -0
  280. data/test/test_gtk_widget.rb +32 -0
  281. metadata +393 -0
@@ -0,0 +1,190 @@
1
+ /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
+ /************************************************
3
+
4
+ rbgtktable.c -
5
+
6
+ $Author: ggc $
7
+ $Date: 2007/07/13 16:07:32 $
8
+
9
+ Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
10
+ Copyright (C) 1998-2000 Yukihiro Matsumoto,
11
+ Daisuke Kanda,
12
+ Hiroshi Igarashi
13
+ ************************************************/
14
+
15
+ #include "global.h"
16
+
17
+ #define _SELF(self) (GTK_TABLE(RVAL2GOBJ(self)))
18
+
19
+ static VALUE
20
+ tbl_initialize(argc, argv, self)
21
+ int argc;
22
+ VALUE *argv;
23
+ VALUE self;
24
+ {
25
+ VALUE row, col, homogeneous;
26
+
27
+ rb_scan_args(argc, argv, "21", &row, &col, &homogeneous);
28
+ RBGTK_INITIALIZE(self, gtk_table_new(NUM2INT(row),
29
+ NUM2INT(col),
30
+ RVAL2CBOOL(homogeneous)));
31
+ return Qnil;
32
+ }
33
+
34
+ static VALUE
35
+ tbl_resize(self, rows, columns)
36
+ VALUE self, rows, columns;
37
+ {
38
+ gtk_table_resize(_SELF(self), NUM2UINT(rows), NUM2UINT(columns));
39
+ return self;
40
+ }
41
+
42
+ static VALUE
43
+ tbl_attach(argc, argv, self)
44
+ int argc;
45
+ VALUE *argv;
46
+ VALUE self;
47
+ {
48
+ VALUE child, left, right, top, bottom;
49
+ VALUE arg0, arg1, arg2, arg3;
50
+ gint xspc, yspc;
51
+ GtkAttachOptions xopt, yopt;
52
+
53
+ xopt = yopt = GTK_EXPAND | GTK_FILL;
54
+ xspc = yspc = 0;
55
+ rb_scan_args(argc, argv, "54",
56
+ &child, &left, &right, &top, &bottom,
57
+ &arg0, &arg1, &arg2, &arg3);
58
+ if (!NIL_P(arg0)) xopt = RVAL2GFLAGS(arg0, GTK_TYPE_ATTACH_OPTIONS);
59
+ if (!NIL_P(arg1)) yopt = RVAL2GFLAGS(arg1, GTK_TYPE_ATTACH_OPTIONS);
60
+ if (!NIL_P(arg2)) xspc = NUM2INT(arg2);
61
+ if (!NIL_P(arg3)) yspc = NUM2INT(arg3);
62
+
63
+ gtk_table_attach(_SELF(self),
64
+ GTK_WIDGET(RVAL2GOBJ(child)),
65
+ NUM2INT(left),NUM2INT(right),
66
+ NUM2INT(top),NUM2INT(bottom),
67
+ xopt, yopt, xspc, yspc);
68
+
69
+ G_CHILD_ADD(self, child);
70
+
71
+ return self;
72
+ }
73
+
74
+ static VALUE
75
+ tbl_attach_defaults(self, widget, left_attach, right_attach, top_attach,
76
+ bottom_attach)
77
+ VALUE self, widget, left_attach, right_attach, top_attach, bottom_attach;
78
+ {
79
+ gtk_table_attach_defaults(_SELF(self), GTK_WIDGET(RVAL2GOBJ(widget)),
80
+ NUM2UINT(left_attach), NUM2UINT(right_attach),
81
+ NUM2UINT(top_attach), NUM2UINT(bottom_attach));
82
+ G_CHILD_ADD(self, widget);
83
+ return self;
84
+ }
85
+
86
+ static VALUE
87
+ tbl_set_row_spacing(self, row, spc)
88
+ VALUE self, row, spc;
89
+ {
90
+ gtk_table_set_row_spacing(_SELF(self), NUM2UINT(row), NUM2UINT(spc));
91
+ return self;
92
+ }
93
+
94
+ static VALUE
95
+ tbl_get_row_spacing(self, row)
96
+ VALUE self, row;
97
+ {
98
+ return UINT2NUM(gtk_table_get_row_spacing(_SELF(self), NUM2UINT(row)));
99
+ }
100
+
101
+ static VALUE
102
+ tbl_set_col_spacing(self, col, spc)
103
+ VALUE self, col, spc;
104
+ {
105
+ gtk_table_set_col_spacing(_SELF(self), NUM2UINT(col), NUM2UINT(spc));
106
+ return self;
107
+ }
108
+
109
+ static VALUE
110
+ tbl_get_col_spacing(self, col)
111
+ VALUE self, col;
112
+ {
113
+ return UINT2NUM(gtk_table_get_col_spacing(_SELF(self), NUM2UINT(col)));
114
+ }
115
+
116
+ static VALUE
117
+ tbl_set_row_spacings(self, spc)
118
+ VALUE self, spc;
119
+ {
120
+ gtk_table_set_row_spacings(_SELF(self), NUM2UINT(spc));
121
+ return self;
122
+ }
123
+
124
+ static VALUE
125
+ tbl_set_col_spacings(self, spc)
126
+ VALUE self, spc;
127
+ {
128
+ gtk_table_set_col_spacings(_SELF(self), NUM2UINT(spc));
129
+ return self;
130
+ }
131
+
132
+ static VALUE
133
+ tbl_get_row_spacings(self)
134
+ VALUE self;
135
+ {
136
+ return UINT2NUM(_SELF(self)->row_spacing);
137
+ }
138
+
139
+ static VALUE
140
+ tbl_get_col_spacings(self)
141
+ VALUE self;
142
+ {
143
+ return UINT2NUM(_SELF(self)->column_spacing);
144
+ }
145
+
146
+ static VALUE
147
+ tbl_get_default_row_spacing(self)
148
+ VALUE self;
149
+ {
150
+ return UINT2NUM(gtk_table_get_default_row_spacing(_SELF(self)));
151
+ }
152
+
153
+ static VALUE
154
+ tbl_get_default_col_spacing(self)
155
+ VALUE self;
156
+ {
157
+ return UINT2NUM(gtk_table_get_default_col_spacing(_SELF(self)));
158
+ }
159
+
160
+ void
161
+ Init_gtk_table()
162
+ {
163
+ VALUE gTable = G_DEF_CLASS(GTK_TYPE_TABLE, "Table", mGtk);
164
+
165
+ /* Undef properties, column/row-spacing confuse us ... */
166
+ rb_undef_method(gTable, "set_row_spacing");
167
+ rb_undef_method(gTable, "set_column_spacing");
168
+ rb_undef_method(gTable, "row_spacing=");
169
+ rb_undef_method(gTable, "column_spacing=");
170
+ rb_undef_method(gTable, "row_spacing");
171
+ rb_undef_method(gTable, "column_spacing");
172
+
173
+ rb_define_method(gTable, "initialize", tbl_initialize, -1);
174
+ rb_define_method(gTable, "resize", tbl_resize, 2);
175
+ rb_define_method(gTable, "attach", tbl_attach, -1);
176
+ rb_define_method(gTable, "attach_defaults", tbl_attach_defaults, 5);
177
+ rb_define_method(gTable, "set_row_spacing", tbl_set_row_spacing, 2);
178
+ rb_define_method(gTable, "set_column_spacing", tbl_set_col_spacing, 2);
179
+ rb_define_method(gTable, "get_row_spacing", tbl_get_row_spacing, 1);
180
+ rb_define_method(gTable, "get_column_spacing", tbl_get_col_spacing, 1);
181
+ rb_define_method(gTable, "set_row_spacings", tbl_set_row_spacings, 1);
182
+ rb_define_method(gTable, "set_column_spacings", tbl_set_col_spacings, 1);
183
+ rb_define_method(gTable, "row_spacings", tbl_get_row_spacings, 0);
184
+ rb_define_method(gTable, "column_spacings", tbl_get_col_spacings, 0);
185
+ rb_define_method(gTable, "default_row_spacing", tbl_get_default_row_spacing, 0);
186
+ rb_define_method(gTable, "default_column_spacing", tbl_get_default_col_spacing, 0);
187
+
188
+ G_DEF_SETTERS(gTable);
189
+
190
+ }
@@ -0,0 +1,148 @@
1
+ /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
+ /************************************************
3
+
4
+ rbgtktargetlist.c -
5
+
6
+ $Author: ggc $
7
+ $Date: 2007/07/13 16:07:32 $
8
+
9
+ Copyright (C) 2003-2005 Masao Mutoh
10
+ ************************************************/
11
+
12
+ #include "global.h"
13
+
14
+ #define _SELF(r) ((GtkTargetList*)RVAL2BOXED(r, GTK_TYPE_TARGET_LIST))
15
+
16
+ /**********************************/
17
+ #if ! GTK_CHECK_VERSION(2,10,0)
18
+ static GtkTargetList*
19
+ rbgtk_target_list_copy(const GtkTargetList* list)
20
+ {
21
+ GtkTargetList* new_list;
22
+ g_return_val_if_fail (list != NULL, NULL);
23
+ new_list = g_new(GtkTargetList, 1);
24
+ *new_list = *list;
25
+ return new_list;
26
+ }
27
+
28
+ GType
29
+ gtk_target_list_get_type(void)
30
+ {
31
+ static GType our_type = 0;
32
+
33
+ if (our_type == 0)
34
+ our_type = g_boxed_type_register_static ("GtkTargetList",
35
+ (GBoxedCopyFunc)rbgtk_target_list_copy,
36
+ (GBoxedFreeFunc)gtk_target_list_unref);
37
+ return our_type;
38
+ }
39
+ #endif
40
+ /**********************************/
41
+
42
+ static VALUE
43
+ target_list_initialize(self, targets)
44
+ VALUE self, targets;
45
+ {
46
+ Check_Type(targets, T_ARRAY);
47
+ G_INITIALIZE(self, gtk_target_list_new(
48
+ rbgtk_get_target_entry(targets),
49
+ RARRAY_LEN(targets)));
50
+ return Qnil;
51
+ }
52
+
53
+ static VALUE
54
+ target_list_add(self, target, flags, info)
55
+ VALUE self, target, flags, info;
56
+ {
57
+ gtk_target_list_add(_SELF(self), RVAL2ATOM(target),
58
+ FIX2UINT(flags), FIX2UINT(info));
59
+ return self;
60
+ }
61
+
62
+ static VALUE
63
+ target_list_add_table(self, targets)
64
+ VALUE self, targets;
65
+ {
66
+ gtk_target_list_add_table(_SELF(self),
67
+ rbgtk_get_target_entry(targets),
68
+ RARRAY_LEN(targets));
69
+ return self;
70
+ }
71
+
72
+ #if GTK_CHECK_VERSION(2,6,0)
73
+ static VALUE
74
+ target_list_add_text_targets(self, info)
75
+ VALUE self, info;
76
+ {
77
+ gtk_target_list_add_text_targets(_SELF(self), NUM2UINT(info));
78
+ return self;
79
+ }
80
+
81
+ static VALUE
82
+ target_list_add_image_targets(self, info, writable)
83
+ VALUE self, info, writable;
84
+ {
85
+ gtk_target_list_add_image_targets(_SELF(self), NUM2UINT(info), RVAL2CBOOL(writable));
86
+ return self;
87
+ }
88
+
89
+ static VALUE
90
+ target_list_add_uri_targets(self, info)
91
+ VALUE self, info;
92
+ {
93
+ gtk_target_list_add_uri_targets(_SELF(self), NUM2UINT(info));
94
+ return self;
95
+ }
96
+ #endif
97
+
98
+ #if GTK_CHECK_VERSION(2,10,0)
99
+ static VALUE
100
+ target_list_add_rich_text_targets(self, info, deserializable, buffer)
101
+ VALUE self, info, deserializable, buffer;
102
+ {
103
+ gtk_target_list_add_rich_text_targets(_SELF(self), NUM2UINT(info),
104
+ RVAL2CBOOL(deserializable),
105
+ GTK_TEXT_BUFFER(RVAL2GOBJ(buffer)));
106
+ return self;
107
+ }
108
+ #endif
109
+
110
+ static VALUE
111
+ target_list_remove(self, target)
112
+ VALUE self, target;
113
+ {
114
+ gtk_target_list_remove(_SELF(self), RVAL2ATOM(target));
115
+ return self;
116
+ }
117
+
118
+ static VALUE
119
+ target_list_find(self, target)
120
+ VALUE self, target;
121
+ {
122
+ guint info;
123
+ gboolean ret = gtk_target_list_find(_SELF(self), RVAL2ATOM(target),
124
+ &info);
125
+ return ret ? INT2NUM(info) : Qnil;
126
+ }
127
+
128
+ void
129
+ Init_gtk_target_list()
130
+ {
131
+ VALUE gTargetList = G_DEF_CLASS(GTK_TYPE_TARGET_LIST, "TargetList", mGtk);
132
+
133
+ rbgobj_boxed_not_copy_obj(GTK_TYPE_TARGET_LIST);
134
+
135
+ rb_define_method(gTargetList, "initialize", target_list_initialize, 1);
136
+ rb_define_method(gTargetList, "add", target_list_add, 3);
137
+ rb_define_method(gTargetList, "add_table", target_list_add_table, 1);
138
+ #if GTK_CHECK_VERSION(2,6,0)
139
+ rb_define_method(gTargetList, "add_text_targets", target_list_add_text_targets, 1);
140
+ rb_define_method(gTargetList, "add_image_targets", target_list_add_image_targets, 2);
141
+ rb_define_method(gTargetList, "add_uri_targets", target_list_add_uri_targets, 1);
142
+ #endif
143
+ #if GTK_CHECK_VERSION(2,10,0)
144
+ rb_define_method(gTargetList, "add_rich_text_targets", target_list_add_rich_text_targets, 3);
145
+ #endif
146
+ rb_define_method(gTargetList, "remove", target_list_remove, 1);
147
+ rb_define_method(gTargetList, "find", target_list_find, 1);
148
+ }
@@ -0,0 +1,30 @@
1
+ /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
+ /************************************************
3
+
4
+ rbgtktearoffmenuitem.c -
5
+
6
+ $Author: mutoh $
7
+ $Date: 2003/02/01 16:46:24 $
8
+
9
+ Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
10
+ Copyright (C) 1998-2000 Yukihiro Matsumoto,
11
+ Daisuke Kanda,
12
+ Hiroshi Igarashi
13
+ ************************************************/
14
+
15
+ #include "global.h"
16
+
17
+ static VALUE
18
+ tmitem_initialize(self)
19
+ VALUE self;
20
+ {
21
+ RBGTK_INITIALIZE(self, gtk_tearoff_menu_item_new());
22
+ return Qnil;
23
+ }
24
+
25
+ void
26
+ Init_gtk_tearoff_menu_item()
27
+ {
28
+ VALUE gTMenuItem = G_DEF_CLASS(GTK_TYPE_TEAROFF_MENU_ITEM, "TearoffMenuItem", mGtk);
29
+ rb_define_method(gTMenuItem, "initialize", tmitem_initialize, 0);
30
+ }
@@ -0,0 +1,173 @@
1
+ /* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
2
+ /************************************************
3
+
4
+ rbgtktextappearance.c -
5
+
6
+ $Author: ggc $
7
+ $Date: 2007/07/13 16:07:32 $
8
+
9
+ Copyright (C) 2004 Masao Mutoh
10
+ ************************************************/
11
+
12
+ #include "global.h"
13
+
14
+ /*****************************************/
15
+ static GtkTextAppearance*
16
+ app_copy(const GtkTextAppearance* app)
17
+ {
18
+ GtkTextAppearance* new_app;
19
+ g_return_val_if_fail (app != NULL, NULL);
20
+ new_app = g_new(GtkTextAppearance, 1);
21
+ *new_app = *app;
22
+ return new_app;
23
+ }
24
+
25
+ GType
26
+ gtk_text_appearance_get_type(void)
27
+ {
28
+ static GType our_type = 0;
29
+ if (our_type == 0)
30
+ our_type = g_boxed_type_register_static ("GtkTextAppearance",
31
+ (GBoxedCopyFunc)app_copy,
32
+ (GBoxedFreeFunc)g_free);
33
+ return our_type;
34
+ }
35
+ /*****************************************/
36
+
37
+ #define _SELF(t) ((GtkTextAppearance*)RVAL2BOXED(t, GTK_TYPE_TEXT_APPEARANCE))
38
+
39
+ /***********************************************/
40
+ #define ATTR_INT(name)\
41
+ static VALUE \
42
+ txt_app_int_ ## name (self)\
43
+ VALUE self;\
44
+ {\
45
+ return INT2NUM(_SELF(self)->name);\
46
+ }\
47
+ static VALUE \
48
+ txt_app_int_set_ ## name (self, val)\
49
+ VALUE self, val;\
50
+ {\
51
+ _SELF(self)->name = NUM2INT(val); \
52
+ return self;\
53
+ }
54
+
55
+ #define ATTR_BOOL(name)\
56
+ static VALUE \
57
+ txt_app_bool_ ## name (self)\
58
+ VALUE self;\
59
+ {\
60
+ return CBOOL2RVAL(_SELF(self)->name);\
61
+ }\
62
+ static VALUE \
63
+ txt_app_bool_set_ ## name (self, val)\
64
+ VALUE self, val;\
65
+ {\
66
+ _SELF(self)->name = RVAL2CBOOL(val);\
67
+ return self;\
68
+ }
69
+
70
+ #define ATTR_ENUM(name, gtype)\
71
+ static VALUE \
72
+ txt_app_enums_ ## name (self)\
73
+ VALUE self;\
74
+ {\
75
+ return GENUM2RVAL(_SELF(self)->name, gtype);\
76
+ }\
77
+ static VALUE \
78
+ txt_app_enums_set_ ## name (self, val)\
79
+ VALUE self, val;\
80
+ {\
81
+ _SELF(self)->name = RVAL2GENUM(val, gtype);\
82
+ return self;\
83
+ }
84
+
85
+ #define ATTR_GOBJ(name)\
86
+ static VALUE \
87
+ txt_app_gobj_ ## name (self)\
88
+ VALUE self;\
89
+ {\
90
+ VALUE val; \
91
+ if (_SELF(self)->name == NULL) return Qnil;\
92
+ val = GOBJ2RVAL(_SELF(self)->name); \
93
+ G_CHILD_SET(self, rb_intern(G_STRINGIFY(name)), val);\
94
+ return val; \
95
+ }\
96
+ static VALUE \
97
+ txt_app_gobj_set_ ## name (self, val)\
98
+ VALUE self, val;\
99
+ {\
100
+ _SELF(self)->name = RVAL2GOBJ(val);\
101
+ G_CHILD_SET(self, rb_intern(G_STRINGIFY(name)), val);\
102
+ return self;\
103
+ }
104
+
105
+ #define ATTR_COLOR(name)\
106
+ static VALUE \
107
+ txt_app_color_ ## name (self)\
108
+ VALUE self;\
109
+ {\
110
+ VALUE val = BOXED2RVAL(&_SELF(self)->name, GDK_TYPE_COLOR);\
111
+ G_CHILD_SET(self, rb_intern(G_STRINGIFY(name)), val);\
112
+ return val;\
113
+ }\
114
+ static VALUE \
115
+ txt_app_color_set_ ## name (self, val)\
116
+ VALUE self, val;\
117
+ {\
118
+ G_CHILD_SET(self, rb_intern(G_STRINGIFY(name)), val);\
119
+ _SELF(self)->name = *RVAL2GDKCOLOR(val); \
120
+ return self;\
121
+ }
122
+
123
+ #define DEFINE_ACCESSOR(gt, type, name) \
124
+ rb_define_method(gt, G_STRINGIFY(name), txt_app_ ## type ## _## name, 0);\
125
+ rb_define_method(gt, G_STRINGIFY(set_ ## name), txt_app_ ## type ## _set_## name, 1);
126
+ /***********************************************/
127
+ ATTR_COLOR(bg_color);
128
+ ATTR_COLOR(fg_color);
129
+ ATTR_GOBJ(bg_stipple);
130
+ ATTR_GOBJ(fg_stipple);
131
+
132
+ ATTR_INT(rise);
133
+ ATTR_ENUM(underline, PANGO_TYPE_UNDERLINE);
134
+ ATTR_BOOL(strikethrough);
135
+ ATTR_BOOL(draw_bg);
136
+ ATTR_BOOL(inside_selection);
137
+ ATTR_BOOL(is_text);
138
+
139
+ static VALUE
140
+ txt_app_initialize(self)
141
+ VALUE self;
142
+ {
143
+ GtkTextAppearance* app = ALLOC(GtkTextAppearance);
144
+ memset(app, 0, sizeof(GtkTextAppearance));
145
+ G_INITIALIZE(self, app);
146
+ return Qnil;
147
+ }
148
+
149
+
150
+ void
151
+ Init_txt_appearance()
152
+ {
153
+ VALUE gTextApp = G_DEF_CLASS(GTK_TYPE_TEXT_APPEARANCE, "TextAppearance", mGtk);
154
+
155
+ DEFINE_ACCESSOR(gTextApp, color, bg_color);
156
+ DEFINE_ACCESSOR(gTextApp, color, fg_color);
157
+ DEFINE_ACCESSOR(gTextApp, gobj, bg_stipple);
158
+ DEFINE_ACCESSOR(gTextApp, gobj, fg_stipple);
159
+ DEFINE_ACCESSOR(gTextApp, int, rise);
160
+ DEFINE_ACCESSOR(gTextApp, enums, underline);
161
+
162
+ rb_define_method(gTextApp, "initialize", txt_app_initialize, 0);
163
+ rb_define_method(gTextApp, "strikethrough?", txt_app_bool_strikethrough, 0);
164
+ rb_define_method(gTextApp, "set_strikethrough", txt_app_bool_set_strikethrough, 1);
165
+ rb_define_method(gTextApp, "draw_bg?", txt_app_bool_draw_bg, 0);
166
+ rb_define_method(gTextApp, "set_draw_bg", txt_app_bool_set_draw_bg, 1);
167
+ rb_define_method(gTextApp, "inside_selection?", txt_app_bool_inside_selection, 0);
168
+ rb_define_method(gTextApp, "set_inside_selection", txt_app_bool_set_inside_selection, 1);
169
+ rb_define_method(gTextApp, "text?", txt_app_bool_is_text, 0);
170
+ rb_define_method(gTextApp, "set_text", txt_app_bool_set_is_text, 1);
171
+
172
+ G_DEF_SETTERS(gTextApp);
173
+ }