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.
- data/Rakefile +66 -1
- data/ext/gtk2/extconf.rb +0 -96
- data/ext/gtk2/global.h +274 -13
- data/ext/gtk2/gtk2.def +5 -3
- data/ext/gtk2/init.c +263 -19
- data/ext/gtk2/rbgdk.c +245 -89
- data/ext/gtk2/rbgdk.h +32 -6
- data/ext/gtk2/rbgdkatom.c +38 -28
- data/ext/gtk2/rbgdkcairo.c +32 -42
- data/ext/gtk2/rbgdkcolor.c +52 -42
- data/ext/gtk2/rbgdkcolormap.c +42 -37
- data/ext/gtk2/rbgdkconst.c +23 -13
- data/ext/gtk2/rbgdkconversions.h +19 -6
- data/ext/gtk2/rbgdkcursor.c +37 -25
- data/ext/gtk2/rbgdkdevice.c +77 -67
- data/ext/gtk2/rbgdkdisplay.c +158 -150
- data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
- data/ext/gtk2/rbgdkdragcontext.c +121 -70
- data/ext/gtk2/rbgdkdraw.c +252 -160
- data/ext/gtk2/rbgdkevent.c +30 -20
- data/ext/gtk2/rbgdkgc.c +123 -116
- data/ext/gtk2/rbgdkgeometry.c +77 -68
- data/ext/gtk2/rbgdkimage.c +58 -47
- data/ext/gtk2/rbgdkinput.c +33 -26
- data/ext/gtk2/rbgdkkeymap.c +38 -27
- data/ext/gtk2/rbgdkkeyval.c +44 -32
- data/ext/gtk2/rbgdkpango.c +66 -39
- data/ext/gtk2/rbgdkpangorenderer.c +63 -35
- data/ext/gtk2/rbgdkpixbuf.c +36 -25
- data/ext/gtk2/rbgdkpixmap.c +65 -49
- data/ext/gtk2/rbgdkproperty.c +66 -60
- data/ext/gtk2/rbgdkrectangle.c +54 -46
- data/ext/gtk2/rbgdkregion.c +144 -79
- data/ext/gtk2/rbgdkrgb.c +74 -58
- data/ext/gtk2/rbgdkscreen.c +103 -97
- data/ext/gtk2/rbgdkselection.c +49 -39
- data/ext/gtk2/rbgdkthreads.c +32 -19
- data/ext/gtk2/rbgdktimecoord.c +60 -38
- data/ext/gtk2/rbgdkvisual.c +79 -71
- data/ext/gtk2/rbgdkwindow.c +284 -305
- data/ext/gtk2/rbgdkwindowattr.c +69 -58
- data/ext/gtk2/rbgdkx11.c +41 -28
- data/ext/gtk2/rbgtk.c +498 -19
- data/ext/gtk2/rbgtk.h +35 -20
- data/ext/gtk2/rbgtkaboutdialog.c +33 -80
- data/ext/gtk2/rbgtkaccelerator.c +36 -23
- data/ext/gtk2/rbgtkaccelgroup.c +50 -40
- data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
- data/ext/gtk2/rbgtkaccelkey.c +40 -28
- data/ext/gtk2/rbgtkaccellabel.c +30 -18
- data/ext/gtk2/rbgtkaccelmap.c +55 -42
- data/ext/gtk2/rbgtkaccessible.c +25 -14
- data/ext/gtk2/rbgtkaction.c +68 -68
- data/ext/gtk2/rbgtkactiongroup.c +317 -195
- data/ext/gtk2/rbgtkadjustment.c +33 -46
- data/ext/gtk2/rbgtkalignment.c +36 -24
- data/ext/gtk2/rbgtkallocation.c +53 -42
- data/ext/gtk2/rbgtkarrow.c +34 -22
- data/ext/gtk2/rbgtkaspectframe.c +32 -20
- data/ext/gtk2/rbgtkassistant.c +81 -61
- data/ext/gtk2/rbgtkbbox.c +32 -20
- data/ext/gtk2/rbgtkbin.c +28 -16
- data/ext/gtk2/rbgtkbindingset.c +42 -35
- data/ext/gtk2/rbgtkborder.c +34 -23
- data/ext/gtk2/rbgtkbox.c +40 -29
- data/ext/gtk2/rbgtkbuildable.c +57 -45
- data/ext/gtk2/rbgtkbuilder.c +53 -38
- data/ext/gtk2/rbgtkbutton.c +41 -55
- data/ext/gtk2/rbgtkcalendar.c +51 -40
- data/ext/gtk2/rbgtkcelleditable.c +28 -17
- data/ext/gtk2/rbgtkcelllayout.c +41 -30
- data/ext/gtk2/rbgtkcellrenderer.c +43 -32
- data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
- data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
- data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
- data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
- data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
- data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
- data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
- data/ext/gtk2/rbgtkcellview.c +34 -33
- data/ext/gtk2/rbgtkcheckbutton.c +28 -16
- data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
- data/ext/gtk2/rbgtkclipboard.c +123 -77
- data/ext/gtk2/rbgtkcolorbutton.c +26 -31
- data/ext/gtk2/rbgtkcolorsel.c +109 -55
- data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
- data/ext/gtk2/rbgtkcombo.c +43 -32
- data/ext/gtk2/rbgtkcombobox.c +44 -83
- data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
- data/ext/gtk2/rbgtkconst.c +23 -13
- data/ext/gtk2/rbgtkcontainer.c +153 -100
- data/ext/gtk2/rbgtkconversions.h +19 -6
- data/ext/gtk2/rbgtkcurve.c +46 -36
- data/ext/gtk2/rbgtkdialog.c +104 -70
- data/ext/gtk2/rbgtkdrag.c +173 -121
- data/ext/gtk2/rbgtkdrawingarea.c +28 -16
- data/ext/gtk2/rbgtkeditable.c +63 -51
- data/ext/gtk2/rbgtkentry.c +48 -85
- data/ext/gtk2/rbgtkentrycompletion.c +42 -55
- data/ext/gtk2/rbgtkeventbox.c +28 -16
- data/ext/gtk2/rbgtkexpander.c +26 -35
- data/ext/gtk2/rbgtkfilechooser.c +87 -143
- data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
- data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
- data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
- data/ext/gtk2/rbgtkfilefilter.c +45 -35
- data/ext/gtk2/rbgtkfilesel.c +54 -43
- data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
- data/ext/gtk2/rbgtkfixed.c +36 -25
- data/ext/gtk2/rbgtkfontbutton.c +26 -37
- data/ext/gtk2/rbgtkfontselection.c +27 -15
- data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
- data/ext/gtk2/rbgtkframe.c +39 -28
- data/ext/gtk2/rbgtkgamma.c +32 -20
- data/ext/gtk2/rbgtkhandlebox.c +31 -19
- data/ext/gtk2/rbgtkhbbox.c +28 -16
- data/ext/gtk2/rbgtkhbox.c +29 -17
- data/ext/gtk2/rbgtkhpaned.c +28 -16
- data/ext/gtk2/rbgtkhruler.c +28 -16
- data/ext/gtk2/rbgtkhscale.c +28 -16
- data/ext/gtk2/rbgtkhscrollbar.c +28 -16
- data/ext/gtk2/rbgtkhseparator.c +28 -16
- data/ext/gtk2/rbgtkiconfactory.c +35 -23
- data/ext/gtk2/rbgtkiconinfo.c +42 -30
- data/ext/gtk2/rbgtkiconset.c +31 -19
- data/ext/gtk2/rbgtkiconsize.c +38 -25
- data/ext/gtk2/rbgtkiconsource.c +62 -50
- data/ext/gtk2/rbgtkicontheme.c +95 -95
- data/ext/gtk2/rbgtkiconview.c +87 -121
- data/ext/gtk2/rbgtkimage.c +31 -40
- data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
- data/ext/gtk2/rbgtkimcontext.c +46 -34
- data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
- data/ext/gtk2/rbgtkimmulticontext.c +26 -14
- data/ext/gtk2/rbgtkinputdialog.c +28 -16
- data/ext/gtk2/rbgtkinvisible.c +24 -18
- data/ext/gtk2/rbgtkitem.c +32 -20
- data/ext/gtk2/rbgtkitemfactory.c +65 -57
- data/ext/gtk2/rbgtklabel.c +46 -57
- data/ext/gtk2/rbgtklayout.c +40 -29
- data/ext/gtk2/rbgtklinkbutton.c +26 -15
- data/ext/gtk2/rbgtkliststore.c +145 -102
- data/ext/gtk2/rbgtkmacros.h +19 -6
- data/ext/gtk2/rbgtkmenu.c +47 -59
- data/ext/gtk2/rbgtkmenubar.c +30 -30
- data/ext/gtk2/rbgtkmenuitem.c +34 -41
- data/ext/gtk2/rbgtkmenushell.c +43 -42
- data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
- data/ext/gtk2/rbgtkmessagedialog.c +31 -25
- data/ext/gtk2/rbgtkmisc.c +33 -22
- data/ext/gtk2/rbgtknotebook.c +98 -134
- data/ext/gtk2/rbgtkobject.c +46 -81
- data/ext/gtk2/rbgtkoptionmenu.c +35 -23
- data/ext/gtk2/rbgtkpagesetup.c +64 -54
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
- data/ext/gtk2/rbgtkpaned.c +46 -36
- data/ext/gtk2/rbgtkpapersize.c +60 -54
- data/ext/gtk2/rbgtkplug.c +32 -20
- data/ext/gtk2/rbgtkprintcontext.c +43 -35
- data/ext/gtk2/rbgtkprinter.c +36 -37
- data/ext/gtk2/rbgtkprintjob.c +36 -37
- data/ext/gtk2/rbgtkprintoperation.c +44 -33
- data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
- data/ext/gtk2/rbgtkprintsettings.c +248 -192
- data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
- data/ext/gtk2/rbgtkprogress.c +23 -13
- data/ext/gtk2/rbgtkprogressbar.c +47 -46
- data/ext/gtk2/rbgtkradioaction.c +84 -39
- data/ext/gtk2/rbgtkradiobutton.c +33 -21
- data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
- data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
- data/ext/gtk2/rbgtkrange.c +36 -56
- data/ext/gtk2/rbgtkrc.c +61 -49
- data/ext/gtk2/rbgtkrcstyle.c +59 -48
- data/ext/gtk2/rbgtkrecentaction.c +28 -16
- data/ext/gtk2/rbgtkrecentchooser.c +58 -92
- data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
- data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
- data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
- data/ext/gtk2/rbgtkrecentdata.c +47 -36
- data/ext/gtk2/rbgtkrecentfilter.c +55 -46
- data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
- data/ext/gtk2/rbgtkrecentinfo.c +66 -56
- data/ext/gtk2/rbgtkrecentmanager.c +47 -43
- data/ext/gtk2/rbgtkruler.c +35 -30
- data/ext/gtk2/rbgtkscale.c +29 -18
- data/ext/gtk2/rbgtkscalebutton.c +27 -27
- data/ext/gtk2/rbgtkscrollbar.c +23 -13
- data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
- data/ext/gtk2/rbgtkselection.c +87 -67
- data/ext/gtk2/rbgtkselectiondata.c +74 -65
- data/ext/gtk2/rbgtkseparator.c +23 -13
- data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
- data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
- data/ext/gtk2/rbgtksettings.c +123 -103
- data/ext/gtk2/rbgtksizegroup.c +33 -30
- data/ext/gtk2/rbgtksocket.c +32 -20
- data/ext/gtk2/rbgtkspinbutton.c +48 -38
- data/ext/gtk2/rbgtkspinner.c +27 -14
- data/ext/gtk2/rbgtkstatusbar.c +36 -31
- data/ext/gtk2/rbgtkstatusicon.c +31 -44
- data/ext/gtk2/rbgtkstock.c +137 -125
- data/ext/gtk2/rbgtkstyle.c +177 -161
- data/ext/gtk2/rbgtktable.c +58 -47
- data/ext/gtk2/rbgtktargetlist.c +56 -36
- data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
- data/ext/gtk2/rbgtktextappearance.c +44 -34
- data/ext/gtk2/rbgtktextattributes.c +54 -42
- data/ext/gtk2/rbgtktextbuffer.c +188 -191
- data/ext/gtk2/rbgtktextchild.c +29 -18
- data/ext/gtk2/rbgtktextiter.c +153 -145
- data/ext/gtk2/rbgtktextmark.c +33 -30
- data/ext/gtk2/rbgtktexttag.c +34 -22
- data/ext/gtk2/rbgtktexttagtable.c +36 -25
- data/ext/gtk2/rbgtktextview.c +85 -73
- data/ext/gtk2/rbgtktoggleaction.c +27 -22
- data/ext/gtk2/rbgtktogglebutton.c +37 -26
- data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
- data/ext/gtk2/rbgtktoolbar.c +66 -69
- data/ext/gtk2/rbgtktoolbutton.c +27 -40
- data/ext/gtk2/rbgtktoolitem.c +60 -62
- data/ext/gtk2/rbgtktooltip.c +36 -25
- data/ext/gtk2/rbgtktooltips.c +42 -34
- data/ext/gtk2/rbgtktreedragdest.c +20 -11
- data/ext/gtk2/rbgtktreedragsource.c +20 -11
- data/ext/gtk2/rbgtktreeiter.c +58 -47
- data/ext/gtk2/rbgtktreemodel.c +83 -65
- data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
- data/ext/gtk2/rbgtktreemodelsort.c +38 -27
- data/ext/gtk2/rbgtktreepath.c +55 -44
- data/ext/gtk2/rbgtktreerowreference.c +60 -42
- data/ext/gtk2/rbgtktreeselection.c +61 -52
- data/ext/gtk2/rbgtktreesortable.c +52 -42
- data/ext/gtk2/rbgtktreestore.c +88 -67
- data/ext/gtk2/rbgtktreeview.c +157 -185
- data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
- data/ext/gtk2/rbgtkuimanager.c +61 -61
- data/ext/gtk2/rbgtkvbbox.c +28 -16
- data/ext/gtk2/rbgtkvbox.c +29 -17
- data/ext/gtk2/rbgtkviewport.c +28 -16
- data/ext/gtk2/rbgtkvolumebutton.c +28 -16
- data/ext/gtk2/rbgtkvpaned.c +28 -16
- data/ext/gtk2/rbgtkvruler.c +28 -16
- data/ext/gtk2/rbgtkvscale.c +28 -16
- data/ext/gtk2/rbgtkvscrollbar.c +28 -16
- data/ext/gtk2/rbgtkvseparator.c +28 -16
- data/ext/gtk2/rbgtkwidget.c +284 -296
- data/ext/gtk2/rbgtkwindow.c +156 -214
- data/ext/gtk2/rbgtkwindowgroup.c +35 -24
- data/sample/testgtk/labels.rb +1 -0
- data/sample/testgtk/testgtk.rb +2 -0
- metadata +16 -17
- data/ChangeLog +0 -6902
- data/ext/gtk2/rbgtkmain.c +0 -493
data/ext/gtk2/rbgtktextchild.c
CHANGED
@@ -1,44 +1,55 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2002,2003 Masahiro Sakai
|
5
|
+
* Copyright (C) 2002-2006 Ruby-GNOME2 Project Team
|
6
|
+
*
|
7
|
+
* This library is free software; you can redistribute it and/or
|
8
|
+
* modify it under the terms of the GNU Lesser General Public
|
9
|
+
* License as published by the Free Software Foundation; either
|
10
|
+
* version 2.1 of the License, or (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This library is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
* Lesser General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Lesser General Public
|
18
|
+
* License along with this library; if not, write to the Free Software
|
19
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
20
|
+
* MA 02110-1301 USA
|
21
|
+
*/
|
12
22
|
|
13
23
|
#include "global.h"
|
14
24
|
|
25
|
+
#define RG_TARGET_NAMESPACE cTextChildAnchor
|
15
26
|
#define _SELF(self) GTK_TEXT_CHILD_ANCHOR(RVAL2GOBJ(self))
|
16
27
|
|
17
28
|
static VALUE
|
18
|
-
|
29
|
+
rg_initialize(VALUE self)
|
19
30
|
{
|
20
31
|
RBGTK_INITIALIZE(self, gtk_text_child_anchor_new());
|
21
32
|
return Qnil;
|
22
33
|
}
|
23
34
|
|
24
35
|
static VALUE
|
25
|
-
|
36
|
+
rg_widgets(VALUE self)
|
26
37
|
{
|
27
38
|
return GLIST2ARYF(gtk_text_child_anchor_get_widgets(_SELF(self)));
|
28
39
|
}
|
29
40
|
|
30
41
|
static VALUE
|
31
|
-
|
42
|
+
rg_deleted_p(VALUE self)
|
32
43
|
{
|
33
44
|
return CBOOL2RVAL(gtk_text_child_anchor_get_deleted(_SELF(self)));
|
34
45
|
}
|
35
46
|
|
36
47
|
void
|
37
|
-
Init_gtk_textchild()
|
48
|
+
Init_gtk_textchild(VALUE mGtk)
|
38
49
|
{
|
39
|
-
VALUE
|
50
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_TEXT_CHILD_ANCHOR, "TextChildAnchor", mGtk);
|
40
51
|
|
41
|
-
|
42
|
-
|
43
|
-
|
52
|
+
RG_DEF_METHOD(initialize, 0);
|
53
|
+
RG_DEF_METHOD(widgets, 0);
|
54
|
+
RG_DEF_METHOD_P(deleted, 0);
|
44
55
|
}
|
data/ext/gtk2/rbgtktextiter.c
CHANGED
@@ -1,17 +1,28 @@
|
|
1
1
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2002-2005 Ruby-GNOME2 Project Team
|
5
|
+
* Copyright (C) 2002,2003 Masahiro Sakai
|
6
|
+
*
|
7
|
+
* This library is free software; you can redistribute it and/or
|
8
|
+
* modify it under the terms of the GNU Lesser General Public
|
9
|
+
* License as published by the Free Software Foundation; either
|
10
|
+
* version 2.1 of the License, or (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This library is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
* Lesser General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Lesser General Public
|
18
|
+
* License along with this library; if not, write to the Free Software
|
19
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
20
|
+
* MA 02110-1301 USA
|
21
|
+
*/
|
12
22
|
|
13
23
|
#include "global.h"
|
14
24
|
|
25
|
+
#define RG_TARGET_NAMESPACE cTextIter
|
15
26
|
#define _SELF(s) ((GtkTextIter*)RVAL2BOXED(s, GTK_TYPE_TEXT_ITER))
|
16
27
|
#define RVAL2TAG(t) (GTK_TEXT_TAG(RVAL2GOBJ(t)))
|
17
28
|
#define ITR2RVAL(i) (BOXED2RVAL(i, GTK_TYPE_TEXT_ITER))
|
@@ -20,7 +31,7 @@ static gboolean is_compat_240;
|
|
20
31
|
static ID id_pixbuf;
|
21
32
|
|
22
33
|
static VALUE
|
23
|
-
|
34
|
+
rg_buffer(VALUE self)
|
24
35
|
{
|
25
36
|
return GOBJ2RVAL(gtk_text_iter_get_buffer(_SELF(self)));
|
26
37
|
}
|
@@ -40,7 +51,7 @@ def_gint_getter(visible_line_offset)
|
|
40
51
|
def_gint_getter(visible_line_index)
|
41
52
|
|
42
53
|
static VALUE
|
43
|
-
|
54
|
+
rg_char(VALUE self)
|
44
55
|
{
|
45
56
|
gchar buf[10];
|
46
57
|
gint len = g_unichar_to_utf8(gtk_text_iter_get_char(_SELF(self)), buf);
|
@@ -49,31 +60,31 @@ get_char(VALUE self)
|
|
49
60
|
}
|
50
61
|
|
51
62
|
static VALUE
|
52
|
-
|
63
|
+
rg_get_slice(VALUE self, VALUE rhs)
|
53
64
|
{
|
54
65
|
return CSTR2RVAL(gtk_text_iter_get_slice(_SELF(self), _SELF(rhs)));
|
55
66
|
}
|
56
67
|
|
57
68
|
static VALUE
|
58
|
-
|
69
|
+
rg_get_text(VALUE self, VALUE rhs)
|
59
70
|
{
|
60
71
|
return CSTR2RVAL(gtk_text_iter_get_text(_SELF(self), _SELF(rhs)));
|
61
72
|
}
|
62
73
|
|
63
74
|
static VALUE
|
64
|
-
|
75
|
+
rg_get_visible_slice(VALUE self, VALUE rhs)
|
65
76
|
{
|
66
77
|
return CSTR2RVAL(gtk_text_iter_get_visible_slice(_SELF(self), _SELF(rhs)));
|
67
78
|
}
|
68
79
|
|
69
80
|
static VALUE
|
70
|
-
|
81
|
+
rg_get_visible_text(VALUE self, VALUE rhs)
|
71
82
|
{
|
72
83
|
return CSTR2RVAL(gtk_text_iter_get_visible_text(_SELF(self), _SELF(rhs)));
|
73
84
|
}
|
74
85
|
|
75
86
|
static VALUE
|
76
|
-
|
87
|
+
rg_pixbuf(VALUE self)
|
77
88
|
{
|
78
89
|
GdkPixbuf* pixbuf = gtk_text_iter_get_pixbuf(_SELF(self));
|
79
90
|
VALUE ret = Qnil;
|
@@ -85,67 +96,66 @@ get_pixbuf(VALUE self)
|
|
85
96
|
}
|
86
97
|
|
87
98
|
static VALUE
|
88
|
-
|
99
|
+
rg_marks(VALUE self)
|
89
100
|
{
|
90
101
|
return GSLIST2ARYF(gtk_text_iter_get_marks(_SELF(self)));
|
91
102
|
}
|
92
103
|
|
93
104
|
static VALUE
|
94
|
-
|
105
|
+
rg_toggled_tags(VALUE self, VALUE toggled_on)
|
95
106
|
{
|
96
107
|
return GSLIST2ARYF(gtk_text_iter_get_toggled_tags(_SELF(self), RVAL2CBOOL(toggled_on)));
|
97
108
|
}
|
98
109
|
|
99
110
|
static VALUE
|
100
|
-
|
111
|
+
rg_child_anchor(VALUE self)
|
101
112
|
{
|
102
113
|
GtkTextChildAnchor* anchor = gtk_text_iter_get_child_anchor(_SELF(self));
|
103
114
|
return anchor ? GOBJ2RVAL(anchor) : Qnil;
|
104
115
|
}
|
105
116
|
|
106
117
|
static VALUE
|
107
|
-
|
118
|
+
rg_begins_tag_p(VALUE self, VALUE tag)
|
108
119
|
{
|
109
120
|
return CBOOL2RVAL(gtk_text_iter_begins_tag(_SELF(self), RVAL2TAG(tag)));
|
110
121
|
}
|
111
122
|
|
112
123
|
static VALUE
|
113
|
-
|
124
|
+
rg_ends_tag_p(VALUE self, VALUE tag)
|
114
125
|
{
|
115
126
|
return CBOOL2RVAL(gtk_text_iter_ends_tag(_SELF(self), RVAL2TAG(tag)));
|
116
127
|
}
|
117
128
|
|
118
129
|
static VALUE
|
119
|
-
|
130
|
+
rg_toggles_tag_p(VALUE self, VALUE tag)
|
120
131
|
{
|
121
132
|
return CBOOL2RVAL(gtk_text_iter_toggles_tag(_SELF(self), RVAL2TAG(tag)));
|
122
133
|
}
|
123
134
|
|
124
135
|
static VALUE
|
125
|
-
|
136
|
+
rg_has_tag_p(VALUE self, VALUE tag)
|
126
137
|
{
|
127
138
|
return CBOOL2RVAL(gtk_text_iter_has_tag(_SELF(self), RVAL2TAG(tag)));
|
128
139
|
}
|
129
140
|
|
130
141
|
static VALUE
|
131
|
-
|
142
|
+
rg_tags(VALUE self)
|
132
143
|
{
|
133
144
|
return GSLIST2ARYF(gtk_text_iter_get_tags(_SELF(self)));
|
134
145
|
}
|
135
146
|
|
136
147
|
static VALUE
|
137
|
-
|
148
|
+
rg_editable_p(VALUE self, VALUE default_setting)
|
138
149
|
{
|
139
150
|
return CBOOL2RVAL(gtk_text_iter_editable(_SELF(self), RVAL2CBOOL(default_setting)));
|
140
151
|
}
|
141
152
|
|
142
153
|
static VALUE
|
143
|
-
|
154
|
+
rg_can_insert_p(VALUE self, VALUE default_setting)
|
144
155
|
{
|
145
156
|
return CBOOL2RVAL(gtk_text_iter_can_insert(_SELF(self), RVAL2CBOOL(default_setting)));
|
146
157
|
}
|
147
158
|
|
148
|
-
|
149
159
|
#define def_predicate(__name__) \
|
150
160
|
static VALUE \
|
151
161
|
__name__(VALUE self) \
|
@@ -166,19 +176,19 @@ def_gint_getter(chars_in_line)
|
|
166
176
|
def_gint_getter(bytes_in_line)
|
167
177
|
|
168
178
|
static VALUE
|
169
|
-
|
179
|
+
rg_attributes(VALUE self)
|
170
180
|
{
|
171
181
|
GtkTextAttributes attr;
|
172
|
-
|
182
|
+
|
173
183
|
if(gtk_text_iter_get_attributes(_SELF(self), &attr) == TRUE){
|
174
184
|
return BOXED2RVAL(&attr, GTK_TYPE_TEXT_ATTRIBUTES);
|
175
185
|
} else {
|
176
186
|
return Qnil;
|
177
187
|
}
|
178
188
|
}
|
179
|
-
|
189
|
+
|
180
190
|
static VALUE
|
181
|
-
|
191
|
+
rg_language(VALUE self)
|
182
192
|
{
|
183
193
|
return CSTR2RVAL(pango_language_to_string(gtk_text_iter_get_language(_SELF(self))));
|
184
194
|
}
|
@@ -186,7 +196,6 @@ get_language(VALUE self)
|
|
186
196
|
def_predicate(is_end)
|
187
197
|
def_predicate(is_start)
|
188
198
|
|
189
|
-
|
190
199
|
#define def_move(__name__) \
|
191
200
|
static VALUE \
|
192
201
|
__name__(VALUE self) \
|
@@ -241,7 +250,7 @@ def_move_gint(backward_cursor_positions)
|
|
241
250
|
def_move(forward_to_line_end)
|
242
251
|
|
243
252
|
static VALUE
|
244
|
-
|
253
|
+
rg_forward_to_end(VALUE self)
|
245
254
|
{
|
246
255
|
gtk_text_iter_forward_to_end(_SELF(self));
|
247
256
|
return self;
|
@@ -264,7 +273,7 @@ def_gint_setter(visible_line_offset)
|
|
264
273
|
def_gint_setter(visible_line_index)
|
265
274
|
|
266
275
|
static VALUE
|
267
|
-
|
276
|
+
rg_forward_to_tag_toggle(int argc, VALUE *argv, VALUE self)
|
268
277
|
{
|
269
278
|
VALUE tag;
|
270
279
|
|
@@ -274,7 +283,7 @@ forward_to_tag_toggle(int argc, VALUE *argv, VALUE self)
|
|
274
283
|
}
|
275
284
|
|
276
285
|
static VALUE
|
277
|
-
|
286
|
+
rg_backward_to_tag_toggle(int argc, VALUE *argv, VALUE self)
|
278
287
|
{
|
279
288
|
VALUE tag;
|
280
289
|
|
@@ -290,11 +299,11 @@ char_predicate_func(guint32 ch, gpointer func)
|
|
290
299
|
}
|
291
300
|
|
292
301
|
static VALUE
|
293
|
-
|
302
|
+
rg_forward_find_char(int argc, VALUE *argv, VALUE self)
|
294
303
|
{
|
295
304
|
VALUE limit;
|
296
305
|
volatile VALUE func = rb_block_proc();
|
297
|
-
|
306
|
+
|
298
307
|
rb_scan_args(argc, argv, "01", &limit);
|
299
308
|
return CBOOL2RVAL(gtk_text_iter_forward_find_char(_SELF(self),
|
300
309
|
(GtkTextCharPredicate)char_predicate_func,
|
@@ -303,7 +312,7 @@ forward_find_char(int argc, VALUE *argv, VALUE self)
|
|
303
312
|
}
|
304
313
|
|
305
314
|
static VALUE
|
306
|
-
|
315
|
+
rg_backward_find_char(int argc, VALUE *argv, VALUE self)
|
307
316
|
{
|
308
317
|
VALUE limit;
|
309
318
|
volatile VALUE func = rb_block_proc();
|
@@ -316,7 +325,7 @@ backward_find_char(int argc, VALUE *argv, VALUE self)
|
|
316
325
|
}
|
317
326
|
|
318
327
|
static VALUE
|
319
|
-
|
328
|
+
rg_forward_search(int argc, VALUE *argv, VALUE self)
|
320
329
|
{
|
321
330
|
GtkTextIter m_start, m_end;
|
322
331
|
VALUE str, flags, limit;
|
@@ -339,7 +348,7 @@ forward_search(int argc, VALUE *argv, VALUE self)
|
|
339
348
|
}
|
340
349
|
|
341
350
|
static VALUE
|
342
|
-
|
351
|
+
rg_backward_search(int argc, VALUE *argv, VALUE self)
|
343
352
|
{
|
344
353
|
GtkTextIter m_start, m_end;
|
345
354
|
VALUE str, flags, limit;
|
@@ -361,13 +370,13 @@ backward_search(int argc, VALUE *argv, VALUE self)
|
|
361
370
|
}
|
362
371
|
|
363
372
|
static VALUE
|
364
|
-
|
373
|
+
rg_operator_equal(VALUE self, VALUE other)
|
365
374
|
{
|
366
375
|
return CBOOL2RVAL(gtk_text_iter_equal(_SELF(self), _SELF(other)));
|
367
376
|
}
|
368
377
|
|
369
378
|
static VALUE
|
370
|
-
|
379
|
+
rg_operator_compare(VALUE self, VALUE rhs)
|
371
380
|
{
|
372
381
|
return INT2NUM(gtk_text_iter_compare(_SELF(self), _SELF(rhs)));
|
373
382
|
}
|
@@ -375,7 +384,7 @@ compare(VALUE self, VALUE rhs)
|
|
375
384
|
/*
|
376
385
|
The following methods don't have to be implimented.
|
377
386
|
Including Comparable module is enough.
|
378
|
-
|
387
|
+
|
379
388
|
gboolean gtk_text_iter_in_range (const GtkTextIter *iter,
|
380
389
|
const GtkTextIter *start,
|
381
390
|
const GtkTextIter *end);
|
@@ -384,123 +393,122 @@ void gtk_text_iter_order (GtkTextIter *first,
|
|
384
393
|
*/
|
385
394
|
|
386
395
|
void
|
387
|
-
Init_gtk_textiter()
|
396
|
+
Init_gtk_textiter(VALUE mGtk)
|
388
397
|
{
|
389
|
-
VALUE
|
390
|
-
rb_include_module(
|
398
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_TEXT_ITER, "TextIter", mGtk);
|
399
|
+
rb_include_module(RG_TARGET_NAMESPACE, rb_mComparable);
|
391
400
|
|
392
401
|
is_compat_240 = gtk_check_version(2, 4, 0) ? FALSE : TRUE;
|
393
402
|
|
394
403
|
id_pixbuf = rb_intern("pixbuf");
|
395
404
|
|
396
|
-
|
397
|
-
rb_define_method(
|
398
|
-
rb_define_method(
|
399
|
-
rb_define_method(
|
400
|
-
rb_define_method(
|
401
|
-
rb_define_method(
|
402
|
-
rb_define_method(
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
rb_define_method(
|
425
|
-
rb_define_method(
|
426
|
-
rb_define_method(
|
427
|
-
rb_define_method(
|
428
|
-
rb_define_method(
|
429
|
-
rb_define_method(
|
430
|
-
rb_define_method(
|
431
|
-
rb_define_method(
|
432
|
-
|
433
|
-
rb_define_method(
|
434
|
-
rb_define_method(
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
rb_define_method(
|
440
|
-
rb_define_method(
|
441
|
-
|
442
|
-
rb_define_method(
|
443
|
-
rb_define_method(
|
444
|
-
rb_define_method(
|
445
|
-
rb_define_method(
|
446
|
-
rb_define_method(
|
447
|
-
rb_define_method(
|
448
|
-
rb_define_method(
|
449
|
-
rb_define_method(
|
450
|
-
rb_define_method(
|
451
|
-
rb_define_method(
|
452
|
-
rb_define_method(
|
453
|
-
rb_define_method(
|
454
|
-
rb_define_method(
|
455
|
-
rb_define_method(
|
456
|
-
rb_define_method(
|
457
|
-
rb_define_method(
|
405
|
+
RG_DEF_METHOD(buffer, 0);
|
406
|
+
rb_define_method(RG_TARGET_NAMESPACE, "offset", get_offset, 0);
|
407
|
+
rb_define_method(RG_TARGET_NAMESPACE, "line", get_line, 0);
|
408
|
+
rb_define_method(RG_TARGET_NAMESPACE, "line_offset", get_line_offset, 0);
|
409
|
+
rb_define_method(RG_TARGET_NAMESPACE, "line_index", get_line_index, 0);
|
410
|
+
rb_define_method(RG_TARGET_NAMESPACE, "visible_line_offset", get_visible_line_offset, 0);
|
411
|
+
rb_define_method(RG_TARGET_NAMESPACE, "visible_line_index", get_visible_line_index, 0);
|
412
|
+
RG_DEF_METHOD(char, 0);
|
413
|
+
|
414
|
+
RG_DEF_METHOD(get_slice, 1);
|
415
|
+
RG_DEF_METHOD(get_text, 1);
|
416
|
+
RG_DEF_METHOD(get_visible_slice, 1);
|
417
|
+
RG_DEF_METHOD(get_visible_text, 1);
|
418
|
+
|
419
|
+
RG_DEF_METHOD(pixbuf, 0);
|
420
|
+
RG_DEF_METHOD(marks, 0);
|
421
|
+
RG_DEF_METHOD(child_anchor, 0);
|
422
|
+
|
423
|
+
RG_DEF_METHOD(toggled_tags, 1);
|
424
|
+
RG_DEF_METHOD_P(begins_tag, 1);
|
425
|
+
RG_DEF_METHOD_P(ends_tag, 1);
|
426
|
+
RG_DEF_METHOD_P(toggles_tag, 1);
|
427
|
+
RG_DEF_METHOD_P(has_tag, 1);
|
428
|
+
RG_DEF_METHOD(tags, 0);
|
429
|
+
|
430
|
+
RG_DEF_METHOD_P(editable, 1);
|
431
|
+
RG_DEF_METHOD_P(can_insert, 1);
|
432
|
+
|
433
|
+
rb_define_method(RG_TARGET_NAMESPACE, "starts_word?", starts_word, 0);
|
434
|
+
rb_define_method(RG_TARGET_NAMESPACE, "ends_word?", ends_word, 0);
|
435
|
+
rb_define_method(RG_TARGET_NAMESPACE, "inside_word?", inside_word, 0);
|
436
|
+
rb_define_method(RG_TARGET_NAMESPACE, "starts_sentence?", starts_sentence, 0);
|
437
|
+
rb_define_method(RG_TARGET_NAMESPACE, "ends_sentence?", ends_sentence, 0);
|
438
|
+
rb_define_method(RG_TARGET_NAMESPACE, "starts_line?", starts_line, 0);
|
439
|
+
rb_define_method(RG_TARGET_NAMESPACE, "ends_line?", ends_line, 0);
|
440
|
+
rb_define_method(RG_TARGET_NAMESPACE, "cursor_position?", is_cursor_position, 0);
|
441
|
+
|
442
|
+
rb_define_method(RG_TARGET_NAMESPACE, "chars_in_line", get_chars_in_line, 0);
|
443
|
+
rb_define_method(RG_TARGET_NAMESPACE, "bytes_in_line", get_bytes_in_line, 0);
|
444
|
+
|
445
|
+
RG_DEF_METHOD(attributes, 0);
|
446
|
+
|
447
|
+
RG_DEF_METHOD(language, 0);
|
448
|
+
rb_define_method(RG_TARGET_NAMESPACE, "end?", is_end, 0);
|
449
|
+
rb_define_method(RG_TARGET_NAMESPACE, "start?", is_start, 0);
|
450
|
+
|
451
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_char", forward_char, 0);
|
452
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_char", backward_char, 0);
|
453
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_chars", forward_chars, 1);
|
454
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_chars", backward_chars, 1);
|
455
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_line", forward_line, 0);
|
456
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_line", backward_line, 0);
|
457
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_lines", forward_lines, 1);
|
458
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_lines", backward_lines, 1);
|
459
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_word_end", forward_word_end, 0);
|
460
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_word_start", backward_word_start, 0);
|
461
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_word_ends", forward_word_ends, 1);
|
462
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_word_starts", backward_word_starts, 1);
|
463
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_sentence_end", forward_sentence_end, 0);
|
464
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_sentence_start", backward_sentence_start, 0);
|
465
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_sentence_ends", forward_sentence_ends, 1);
|
466
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_sentence_starts", backward_sentence_starts, 1);
|
458
467
|
|
459
468
|
#if GTK_CHECK_VERSION(2,4,0)
|
460
|
-
rb_define_method(
|
461
|
-
rb_define_method(
|
462
|
-
rb_define_method(
|
463
|
-
rb_define_method(
|
464
|
-
rb_define_method(
|
465
|
-
rb_define_method(
|
466
|
-
rb_define_method(
|
467
|
-
rb_define_method(
|
469
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_visible_word_ends", forward_visible_word_ends, 1);
|
470
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_visible_word_starts", backward_visible_word_starts, 1);
|
471
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_visible_word_end", forward_visible_word_end, 0);
|
472
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backword_visible_word_start", backward_visible_word_start, 0);
|
473
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_visible_cursor_position", forward_visible_cursor_position, 0);
|
474
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_visible_cursor_position", backward_visible_cursor_position, 0);
|
475
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_visible_cursor_positions", forward_visible_cursor_positions, 1);
|
476
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_visible_cursor_positions", backward_visible_cursor_positions, 1);
|
468
477
|
#endif
|
469
478
|
#if GTK_CHECK_VERSION(2,8,0)
|
470
|
-
rb_define_method(
|
471
|
-
rb_define_method(
|
472
|
-
rb_define_method(
|
473
|
-
rb_define_method(
|
479
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_visible_line", forward_visible_line, 0);
|
480
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_visible_line", backward_visible_line, 0);
|
481
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_visible_lines", forward_visible_lines, 1);
|
482
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_visible_lines", backward_visible_lines, 1);
|
474
483
|
#endif
|
475
|
-
rb_define_method(
|
476
|
-
rb_define_method(
|
477
|
-
rb_define_method(
|
478
|
-
rb_define_method(
|
479
|
-
|
480
|
-
rb_define_method(
|
481
|
-
|
484
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_cursor_position", forward_cursor_position, 0);
|
485
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_cursor_position", backward_cursor_position, 0);
|
486
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_cursor_positions", forward_cursor_positions, 1);
|
487
|
+
rb_define_method(RG_TARGET_NAMESPACE, "backward_cursor_positions", backward_cursor_positions, 1);
|
488
|
+
RG_DEF_METHOD(forward_to_end, 0);
|
489
|
+
rb_define_method(RG_TARGET_NAMESPACE, "forward_to_line_end", forward_to_line_end, 0);
|
482
490
|
|
483
|
-
rb_define_method(
|
484
|
-
rb_define_method(
|
485
|
-
rb_define_method(
|
486
|
-
rb_define_method(
|
491
|
+
rb_define_method(RG_TARGET_NAMESPACE, "set_offset", set_offset, 1);
|
492
|
+
rb_define_method(RG_TARGET_NAMESPACE, "set_line", set_line, 1);
|
493
|
+
rb_define_method(RG_TARGET_NAMESPACE, "set_line_offset", set_line_offset, 1);
|
494
|
+
rb_define_method(RG_TARGET_NAMESPACE, "set_line_index", set_line_index, 1);
|
487
495
|
|
488
|
-
rb_define_method(
|
489
|
-
rb_define_method(
|
496
|
+
rb_define_method(RG_TARGET_NAMESPACE, "set_visible_line_offset", set_visible_line_offset, 1);
|
497
|
+
rb_define_method(RG_TARGET_NAMESPACE, "set_visible_line_index", set_visible_line_index, 1);
|
490
498
|
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
499
|
+
RG_DEF_METHOD(forward_to_tag_toggle, -1);
|
500
|
+
RG_DEF_METHOD(backward_to_tag_toggle, -1);
|
501
|
+
RG_DEF_METHOD(forward_find_char, -1);
|
502
|
+
RG_DEF_METHOD(backward_find_char, -1);
|
503
|
+
RG_DEF_METHOD(forward_search, -1);
|
504
|
+
RG_DEF_METHOD(backward_search, -1);
|
497
505
|
|
498
|
-
|
499
|
-
|
506
|
+
RG_DEF_METHOD_OPERATOR("==", equal, 1);
|
507
|
+
RG_DEF_METHOD_OPERATOR("<=>", compare, 1);
|
500
508
|
|
501
|
-
G_DEF_SETTERS(
|
509
|
+
G_DEF_SETTERS(RG_TARGET_NAMESPACE);
|
502
510
|
|
503
511
|
/* GtkTextSearchFlags */
|
504
|
-
G_DEF_CLASS(GTK_TYPE_TEXT_SEARCH_FLAGS, "SearchFlags",
|
505
|
-
G_DEF_CONSTANTS(
|
512
|
+
G_DEF_CLASS(GTK_TYPE_TEXT_SEARCH_FLAGS, "SearchFlags", RG_TARGET_NAMESPACE);
|
513
|
+
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, GTK_TYPE_TEXT_SEARCH_FLAGS, "GTK_TEXT_");
|
506
514
|
}
|