gtk2 0.20.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +6664 -0
- data/README +33 -0
- data/Rakefile +71 -0
- data/extconf.rb +116 -0
- data/src/global.h +33 -0
- data/src/init.c +39 -0
- data/src/lib/gtk2.rb +13 -0
- data/src/lib/gtk2/base.rb +95 -0
- data/src/makeinits.rb +57 -0
- data/src/makekeysyms.rb +5 -0
- data/src/rbgdk.c +395 -0
- data/src/rbgdk.h +50 -0
- data/src/rbgdkatom.c +122 -0
- data/src/rbgdkcairo.c +100 -0
- data/src/rbgdkcolor.c +151 -0
- data/src/rbgdkcolormap.c +142 -0
- data/src/rbgdkconst.c +29 -0
- data/src/rbgdkconversions.h +18 -0
- data/src/rbgdkcursor.c +115 -0
- data/src/rbgdkdevice.c +235 -0
- data/src/rbgdkdisplay.c +634 -0
- data/src/rbgdkdisplaymanager.c +50 -0
- data/src/rbgdkdragcontext.c +280 -0
- data/src/rbgdkdraw.c +487 -0
- data/src/rbgdkevent.c +1020 -0
- data/src/rbgdkgc.c +456 -0
- data/src/rbgdkgeometry.c +272 -0
- data/src/rbgdkimage.c +155 -0
- data/src/rbgdkinput.c +70 -0
- data/src/rbgdkkeymap.c +153 -0
- data/src/rbgdkkeysyms.h +2174 -0
- data/src/rbgdkkeyval.c +105 -0
- data/src/rbgdkpango.c +171 -0
- data/src/rbgdkpangorenderer.c +132 -0
- data/src/rbgdkpixbuf.c +178 -0
- data/src/rbgdkpixmap.c +255 -0
- data/src/rbgdkproperty.c +342 -0
- data/src/rbgdkrectangle.c +146 -0
- data/src/rbgdkregion.c +242 -0
- data/src/rbgdkrgb.c +197 -0
- data/src/rbgdkscreen.c +535 -0
- data/src/rbgdkselection.c +161 -0
- data/src/rbgdkthreads.c +68 -0
- data/src/rbgdktimecoord.c +118 -0
- data/src/rbgdkvisual.c +273 -0
- data/src/rbgdkwindow.c +1302 -0
- data/src/rbgdkwindowattr.c +213 -0
- data/src/rbgdkx11.c +256 -0
- data/src/rbgtk.c +93 -0
- data/src/rbgtk.h +121 -0
- data/src/rbgtkaboutdialog.c +195 -0
- data/src/rbgtkaccelerator.c +78 -0
- data/src/rbgtkaccelgroup.c +216 -0
- data/src/rbgtkaccelgroupentry.c +85 -0
- data/src/rbgtkaccelkey.c +116 -0
- data/src/rbgtkaccellabel.c +46 -0
- data/src/rbgtkaccelmap.c +162 -0
- data/src/rbgtkaccessible.c +29 -0
- data/src/rbgtkaction.c +277 -0
- data/src/rbgtkactiongroup.c +377 -0
- data/src/rbgtkadjustment.c +153 -0
- data/src/rbgtkalignment.c +71 -0
- data/src/rbgtkallocation.c +171 -0
- data/src/rbgtkarrow.c +47 -0
- data/src/rbgtkaspectframe.c +46 -0
- data/src/rbgtkassistant.c +230 -0
- data/src/rbgtkbbox.c +47 -0
- data/src/rbgtkbin.c +31 -0
- data/src/rbgtkbindingset.c +192 -0
- data/src/rbgtkborder.c +80 -0
- data/src/rbgtkbox.c +142 -0
- data/src/rbgtkbuildable.c +115 -0
- data/src/rbgtkbuilder.c +154 -0
- data/src/rbgtkbutton.c +151 -0
- data/src/rbgtkcalendar.c +159 -0
- data/src/rbgtkcelleditable.c +49 -0
- data/src/rbgtkcelllayout.c +144 -0
- data/src/rbgtkcellrenderer.c +139 -0
- data/src/rbgtkcellrendereraccel.c +42 -0
- data/src/rbgtkcellrenderercombo.c +37 -0
- data/src/rbgtkcellrendererpixbuf.c +33 -0
- data/src/rbgtkcellrendererprogress.c +37 -0
- data/src/rbgtkcellrendererspin.c +38 -0
- data/src/rbgtkcellrenderertext.c +45 -0
- data/src/rbgtkcellrenderertoggle.c +32 -0
- data/src/rbgtkcellview.c +134 -0
- data/src/rbgtkcheckbutton.c +55 -0
- data/src/rbgtkcheckmenuitem.c +56 -0
- data/src/rbgtkclipboard.c +473 -0
- data/src/rbgtkcolorbutton.c +63 -0
- data/src/rbgtkcolorsel.c +175 -0
- data/src/rbgtkcolorselectiondialog.c +72 -0
- data/src/rbgtkcombo.c +117 -0
- data/src/rbgtkcombobox.c +240 -0
- data/src/rbgtkcomboboxentry.c +60 -0
- data/src/rbgtkconst.c +163 -0
- data/src/rbgtkcontainer.c +776 -0
- data/src/rbgtkconversions.h +26 -0
- data/src/rbgtkcurve.c +105 -0
- data/src/rbgtkdialog.c +244 -0
- data/src/rbgtkdrag.c +436 -0
- data/src/rbgtkdrawingarea.c +31 -0
- data/src/rbgtkeditable.c +152 -0
- data/src/rbgtkentry.c +161 -0
- data/src/rbgtkentrycompletion.c +167 -0
- data/src/rbgtkeventbox.c +31 -0
- data/src/rbgtkexpander.c +67 -0
- data/src/rbgtkfilechooser.c +403 -0
- data/src/rbgtkfilechooserbutton.c +72 -0
- data/src/rbgtkfilechooserdialog.c +58 -0
- data/src/rbgtkfilechooserwidget.c +50 -0
- data/src/rbgtkfilefilter.c +139 -0
- data/src/rbgtkfilesel.c +155 -0
- data/src/rbgtkfixed.c +72 -0
- data/src/rbgtkfontbutton.c +69 -0
- data/src/rbgtkfontselection.c +30 -0
- data/src/rbgtkfontselectiondialog.c +106 -0
- data/src/rbgtkframe.c +64 -0
- data/src/rbgtkgamma.c +47 -0
- data/src/rbgtkhandlebox.c +42 -0
- data/src/rbgtkhbbox.c +31 -0
- data/src/rbgtkhbox.c +38 -0
- data/src/rbgtkhpaned.c +31 -0
- data/src/rbgtkhruler.c +31 -0
- data/src/rbgtkhscale.c +45 -0
- data/src/rbgtkhscrollbar.c +38 -0
- data/src/rbgtkhseparator.c +30 -0
- data/src/rbgtkiconfactory.c +80 -0
- data/src/rbgtkiconinfo.c +118 -0
- data/src/rbgtkiconset.c +87 -0
- data/src/rbgtkiconsize.c +90 -0
- data/src/rbgtkiconsource.c +176 -0
- data/src/rbgtkicontheme.c +309 -0
- data/src/rbgtkiconview.c +351 -0
- data/src/rbgtkimage.c +152 -0
- data/src/rbgtkimagemenuitem.c +52 -0
- data/src/rbgtkimcontext.c +134 -0
- data/src/rbgtkimcontextsimple.c +48 -0
- data/src/rbgtkimmulticontext.c +38 -0
- data/src/rbgtkinits.c +473 -0
- data/src/rbgtkinputdialog.c +30 -0
- data/src/rbgtkinvisible.c +68 -0
- data/src/rbgtkitem.c +51 -0
- data/src/rbgtkitemfactory.c +312 -0
- data/src/rbgtklabel.c +168 -0
- data/src/rbgtklayout.c +91 -0
- data/src/rbgtklinkbutton.c +68 -0
- data/src/rbgtkliststore.c +412 -0
- data/src/rbgtkmacros.h +26 -0
- data/src/rbgtkmain.c +532 -0
- data/src/rbgtkmenu.c +272 -0
- data/src/rbgtkmenubar.c +48 -0
- data/src/rbgtkmenuitem.c +171 -0
- data/src/rbgtkmenushell.c +128 -0
- data/src/rbgtkmenutoolbutton.c +74 -0
- data/src/rbgtkmessagedialog.c +102 -0
- data/src/rbgtkmisc.c +63 -0
- data/src/rbgtknotebook.c +484 -0
- data/src/rbgtkobject.c +186 -0
- data/src/rbgtkoptionmenu.c +65 -0
- data/src/rbgtkpagesetup.c +196 -0
- data/src/rbgtkpagesetupunixdialog.c +80 -0
- data/src/rbgtkpaned.c +114 -0
- data/src/rbgtkpapersize.c +186 -0
- data/src/rbgtkplug.c +84 -0
- data/src/rbgtkprintcontext.c +124 -0
- data/src/rbgtkprinter.c +155 -0
- data/src/rbgtkprintjob.c +151 -0
- data/src/rbgtkprintoperation.c +152 -0
- data/src/rbgtkprintoperationpreview.c +54 -0
- data/src/rbgtkprintsettings.c +794 -0
- data/src/rbgtkprintunixdialog.c +98 -0
- data/src/rbgtkprogress.c +21 -0
- data/src/rbgtkprogressbar.c +72 -0
- data/src/rbgtkradioaction.c +102 -0
- data/src/rbgtkradiobutton.c +83 -0
- data/src/rbgtkradiomenuitem.c +115 -0
- data/src/rbgtkradiotoolbutton.c +99 -0
- data/src/rbgtkrange.c +98 -0
- data/src/rbgtkrc.c +228 -0
- data/src/rbgtkrcstyle.c +184 -0
- data/src/rbgtkrecentaction.c +52 -0
- data/src/rbgtkrecentchooser.c +276 -0
- data/src/rbgtkrecentchooserdialog.c +59 -0
- data/src/rbgtkrecentchoosermenu.c +55 -0
- data/src/rbgtkrecentchooserwidget.c +45 -0
- data/src/rbgtkrecentdata.c +152 -0
- data/src/rbgtkrecentfilter.c +180 -0
- data/src/rbgtkrecentfilterinfo.c +197 -0
- data/src/rbgtkrecentinfo.c +232 -0
- data/src/rbgtkrecentmanager.c +164 -0
- data/src/rbgtkruler.c +82 -0
- data/src/rbgtkscale.c +47 -0
- data/src/rbgtkscalebutton.c +115 -0
- data/src/rbgtkscrollbar.c +21 -0
- data/src/rbgtkscrolledwindow.c +160 -0
- data/src/rbgtkselection.c +171 -0
- data/src/rbgtkselectiondata.c +333 -0
- data/src/rbgtkseparator.c +21 -0
- data/src/rbgtkseparatormenuitem.c +28 -0
- data/src/rbgtkseparatortoolitem.c +40 -0
- data/src/rbgtksettings.c +225 -0
- data/src/rbgtksizegroup.c +74 -0
- data/src/rbgtksocket.c +72 -0
- data/src/rbgtkspinbutton.c +138 -0
- data/src/rbgtkstatusbar.c +90 -0
- data/src/rbgtkstatusicon.c +120 -0
- data/src/rbgtkstock.c +264 -0
- data/src/rbgtkstyle.c +722 -0
- data/src/rbgtktable.c +190 -0
- data/src/rbgtktargetlist.c +148 -0
- data/src/rbgtktearoffmenuitem.c +30 -0
- data/src/rbgtktextappearance.c +173 -0
- data/src/rbgtktextattributes.c +209 -0
- data/src/rbgtktextbuffer.c +993 -0
- data/src/rbgtktextchild.c +49 -0
- data/src/rbgtktextiter.c +553 -0
- data/src/rbgtktextmark.c +87 -0
- data/src/rbgtktexttag.c +66 -0
- data/src/rbgtktexttagtable.c +94 -0
- data/src/rbgtktextview.c +351 -0
- data/src/rbgtktoggleaction.c +76 -0
- data/src/rbgtktogglebutton.c +84 -0
- data/src/rbgtktoggletoolbutton.c +70 -0
- data/src/rbgtktoolbar.c +373 -0
- data/src/rbgtktoolbutton.c +75 -0
- data/src/rbgtktoolitem.c +184 -0
- data/src/rbgtktooltip.c +76 -0
- data/src/rbgtktooltips.c +107 -0
- data/src/rbgtktreedragdest.c +19 -0
- data/src/rbgtktreedragsource.c +19 -0
- data/src/rbgtktreeiter.c +259 -0
- data/src/rbgtktreemodel.c +256 -0
- data/src/rbgtktreemodelfilter.c +214 -0
- data/src/rbgtktreemodelsort.c +113 -0
- data/src/rbgtktreepath.c +195 -0
- data/src/rbgtktreerowreference.c +168 -0
- data/src/rbgtktreeselection.c +235 -0
- data/src/rbgtktreesortable.c +127 -0
- data/src/rbgtktreestore.c +379 -0
- data/src/rbgtktreeview.c +881 -0
- data/src/rbgtktreeviewcolumn.c +331 -0
- data/src/rbgtkuimanager.c +210 -0
- data/src/rbgtkvbbox.c +31 -0
- data/src/rbgtkvbox.c +38 -0
- data/src/rbgtkviewport.c +33 -0
- data/src/rbgtkvolumebutton.c +36 -0
- data/src/rbgtkvpaned.c +31 -0
- data/src/rbgtkvruler.c +30 -0
- data/src/rbgtkvscale.c +45 -0
- data/src/rbgtkvscrollbar.c +38 -0
- data/src/rbgtkvseparator.c +30 -0
- data/src/rbgtkwidget.c +1414 -0
- data/src/rbgtkwindow.c +822 -0
- data/src/rbgtkwindowgroup.c +48 -0
- data/test/gtk-test-utils.rb +15 -0
- data/test/run-test.rb +30 -0
- data/test/test_gc.rb +25 -0
- data/test/test_gdk.rb +18 -0
- data/test/test_gdk_color.rb +10 -0
- data/test/test_gdk_display.rb +37 -0
- data/test/test_gdk_event.rb +11 -0
- data/test/test_gdk_gc.rb +7 -0
- data/test/test_gdk_keymap.rb +8 -0
- data/test/test_gdk_pango.rb +9 -0
- data/test/test_gdk_selection_data.rb +17 -0
- data/test/test_gdk_window.rb +29 -0
- data/test/test_gdk_window_attribute.rb +9 -0
- data/test/test_gtk_about_dialog.rb +14 -0
- data/test/test_gtk_buildable.rb +66 -0
- data/test/test_gtk_builder.rb +188 -0
- data/test/test_gtk_entry.rb +18 -0
- data/test/test_gtk_icon_theme.rb +30 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_list_store.rb +65 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_rc_style.rb +14 -0
- data/test/test_gtk_tree_path.rb +20 -0
- data/test/test_gtk_unix_print.rb +14 -0
- data/test/test_gtk_widget.rb +32 -0
- metadata +393 -0
data/src/rbgtktable.c
ADDED
@@ -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
|
+
}
|