File: rbgtksource.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 (53 lines) | stat: -rw-r--r-- 2,298 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
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
 *  Copyright (C) 2011  Ruby-GNOME2 Project Team
 *  Copyright (C) 2004,2005 Ruby-GNOME2 Project Team
 *  Copyright (C) 2003  Geoff Youngs, based on gtktextview.c by Masao Mutoh
 *
 *  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 mGtkSource

void
Init_gtksourceview3 (void)
{
    VALUE RG_TARGET_NAMESPACE = rb_define_module("GtkSource");

    rb_define_const(RG_TARGET_NAMESPACE, "BUILD_VERSION",
                    rb_ary_new3(3,
                                INT2FIX(GTKSOURCEVIEW3_MAJOR_VERSION),
                                INT2FIX(GTKSOURCEVIEW3_MINOR_VERSION),
                                INT2FIX(GTKSOURCEVIEW3_MICRO_VERSION)));

    Init_gtksource_view (RG_TARGET_NAMESPACE);
    Init_gtksource_buffer (RG_TARGET_NAMESPACE);
    Init_gtksource_language (RG_TARGET_NAMESPACE);
    Init_gtksource_languagemanager (RG_TARGET_NAMESPACE);
    Init_gtksource_mark (RG_TARGET_NAMESPACE);
    Init_gtksource_printcompositor (RG_TARGET_NAMESPACE);
    Init_gtksource_style (RG_TARGET_NAMESPACE);
    Init_gtksource_stylescheme (RG_TARGET_NAMESPACE);
    Init_gtksource_styleschememanager (RG_TARGET_NAMESPACE);
    Init_gtksource_gutter(RG_TARGET_NAMESPACE);
    Init_gtksource_gutterrenderer(RG_TARGET_NAMESPACE);
    Init_gtksource_gutterrendererpixbuf(RG_TARGET_NAMESPACE);
    Init_gtksource_gutterrenderertext(RG_TARGET_NAMESPACE);
    Init_gtksource_markattributes(RG_TARGET_NAMESPACE);
    Init_gtksource_undomanager(RG_TARGET_NAMESPACE);
}