File: rbgtksourcegutterrenderer.c

package info (click to toggle)
ruby-gnome2 3.1.0-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 16,072 kB
  • ctags: 17,433
  • sloc: ansic: 93,621; ruby: 62,273; xml: 335; sh: 246; makefile: 25
file content (143 lines) | stat: -rw-r--r-- 4,196 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
 *  Copyright (C) 2011  Ruby-GNOME2 Project Team
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *  MA  02110-1301  USA
 */

#include "rbgtksourceview3private.h"

#define RG_TARGET_NAMESPACE cGutterRenderer
#define _SELF(self) (RVAL2GTKSOURCEGUTTERRENDERER(self))

static VALUE
rg_end(VALUE self)
{
    gtk_source_gutter_renderer_end(_SELF(self));

    return self;
}

static VALUE
rg_begin(VALUE self, VALUE cr, VALUE background_area, VALUE cell_area, VALUE start, VALUE end)
{
    gtk_source_gutter_renderer_begin(_SELF(self),
                                     RVAL2CRCONTEXT(cr),
                                     RVAL2GDKRECTANGLE(background_area),
                                     RVAL2GDKRECTANGLE(cell_area),
                                     RVAL2GTKTEXTITER(start),
                                     RVAL2GTKTEXTITER(end));
    if (rb_block_given_p())
        rb_ensure(rb_yield, self, rg_end, self);

    return self;
}

static VALUE
rg_draw(VALUE self, VALUE cr, VALUE background_area, VALUE cell_area, VALUE start, VALUE end, VALUE state)
{
    gtk_source_gutter_renderer_draw(_SELF(self),
                                    RVAL2CRCONTEXT(cr),
                                    RVAL2GDKRECTANGLE(background_area),
                                    RVAL2GDKRECTANGLE(cell_area),
                                    RVAL2GTKTEXTITER(start),
                                    RVAL2GTKTEXTITER(end),
                                    RVAL2GTKSOURCEGUTTERRENDERERSTATE(state));

    return self;
}

static VALUE
rg_alignment(VALUE self)
{
    gfloat xalign, yalign;

    gtk_source_gutter_renderer_get_alignment(_SELF(self), &xalign, &yalign);

    return rb_ary_new3(2, xalign, yalign);
}

static VALUE
rg_background(VALUE self)
{
    GdkRGBA color;
    gboolean result;

    result = gtk_source_gutter_renderer_get_background(_SELF(self), &color);

    return result ? GDKRGBA2RVAL(&color) : Qnil;
}

static VALUE
rg_padding(VALUE self)
{
    gint xpad, ypad;

    gtk_source_gutter_renderer_get_padding(_SELF(self), &xpad, &ypad);

    return rb_ary_new3(2, INT2NUM(xpad), INT2NUM(ypad));
}

static VALUE
rg_queue_draw(VALUE self)
{
    gtk_source_gutter_renderer_queue_draw(_SELF(self));

    return self;
}

static VALUE
rg_set_alignment(VALUE self, VALUE xalign, VALUE yalign)
{
    gtk_source_gutter_renderer_set_alignment(_SELF(self), NUM2DBL(xalign), NUM2DBL(yalign));

    return self;
}

static VALUE
rg_set_background(VALUE self, VALUE color)
{
    gtk_source_gutter_renderer_set_background(_SELF(self), RVAL2GDKRGBA(color));

    return self;
}

static VALUE
rg_set_padding(VALUE self, VALUE xpad, VALUE ypad)
{
    gtk_source_gutter_renderer_set_padding(_SELF(self), NUM2INT(xpad), NUM2INT(ypad));

    return self;
}

void
Init_gtksource_gutterrenderer(VALUE mGtkSource)
{
    VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_SOURCE_TYPE_GUTTER_RENDERER, "GutterRenderer", mGtkSource);
    G_DEF_CLASS(GTK_SOURCE_TYPE_GUTTER_RENDERER_ALIGNMENT_MODE, "AlignmentMode", RG_TARGET_NAMESPACE);
    G_DEF_CLASS(GTK_SOURCE_TYPE_GUTTER_RENDERER_STATE, "State", RG_TARGET_NAMESPACE);

    RG_DEF_METHOD(alignment, 0);
    RG_DEF_METHOD(background, 0);
    RG_DEF_METHOD(begin, 5);
    RG_DEF_METHOD(draw, 6);
    RG_DEF_METHOD(end, 0);
    RG_DEF_METHOD(padding, 0);
    RG_DEF_METHOD(queue_draw, 0);
    RG_DEF_METHOD(set_alignment, 2);
    RG_DEF_METHOD(set_background, 1);
    RG_DEF_METHOD(set_padding, 2);
}