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
|
/* -*- 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"
/* Class: Gtk::SourceView
* A view on a source.
*/
#define RG_TARGET_NAMESPACE cView
#define _SELF(self) (RVAL2GTKSOURCEVIEW(self))
/*
* Class method: new(buffer=nil)
* buffer: a Gtk::SourceBuffer object.
*
* Creates a new Gtk::SourceView. If buffer is not provided or nil, an empty
* buffer will be created for you. Note that one buffer can be shared among
* many widgets.
*
* Returns: a newly created Gtk::SourceView object.
*/
static VALUE
rg_initialize(int argc, VALUE *argv, VALUE self)
{
VALUE buffer;
GtkWidget *widget;
rb_scan_args(argc, argv, "01", &buffer);
if (NIL_P(buffer))
widget = gtk_source_view_new();
else
widget = gtk_source_view_new_with_buffer(RVAL2GTKSOURCEBUFFER(buffer));
RBGTK_INITIALIZE(self, widget);
return self;
}
static VALUE
rg_get_gutter(VALUE self, VALUE window_type)
{
VALUE gutter;
gutter = GOBJ2RVAL(gtk_source_view_get_gutter(_SELF(self),
RVAL2GTKTEXTWINDOWTYPE(window_type)));
G_CHILD_ADD(self, gutter);
return gutter;
}
static VALUE
rg_set_mark_attributes(VALUE self, VALUE category, VALUE attributes, VALUE priority)
{
gtk_source_view_set_mark_attributes(_SELF(self),
RVAL2CSTR_ACCEPT_SYMBOL(category),
RVAL2GTKSOURCEMARKATTRIBUTES(attributes),
NUM2INT(priority));
return self;
}
void
Init_gtksource_view (VALUE mGtkSource)
{
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS (GTK_SOURCE_TYPE_VIEW, "View", mGtkSource);
G_DEF_CLASS(GTK_SOURCE_TYPE_VIEW_GUTTER_POSITION, "GutterPosition", RG_TARGET_NAMESPACE);
RG_DEF_METHOD(initialize, -1);
RG_DEF_METHOD(get_gutter, 1);
RG_DEF_METHOD(set_mark_attributes, 3);
G_DEF_CLASS(GTK_SOURCE_TYPE_SMART_HOME_END_TYPE, "SmartHomeEndType", RG_TARGET_NAMESPACE);
G_DEF_CLASS(GTK_SOURCE_TYPE_DRAW_SPACES_FLAGS, "DrawSpacesFlags", RG_TARGET_NAMESPACE);
}
|