/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* * Copyright (C) 2011 Ruby-GNOME2 Project Team * Copyright (C) 2003 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 "rbgtk3private.h" #define RG_TARGET_NAMESPACE cIMContext #define _SELF(self) (RVAL2GTKIMCONTEXT(self)) static VALUE rg_set_client_window(VALUE self, VALUE gdkwindow) { gtk_im_context_set_client_window(_SELF(self), RVAL2GDKWINDOW(gdkwindow)); return self; } static VALUE rg_preedit_string(VALUE self) { gchar* str; PangoAttrList* attrs; gint cursor_pos; gtk_im_context_get_preedit_string(_SELF(self), &str, &attrs, &cursor_pos); return rb_ary_new3(3, CSTR2RVAL(str), PANGOATTRLIST2RVAL(attrs), INT2NUM(cursor_pos)); } static VALUE rg_filter_keypress(VALUE self, VALUE event) { return CBOOL2RVAL(gtk_im_context_filter_keypress(_SELF(self), (GdkEventKey*)RVAL2GEV(event))); } static VALUE rg_focus_in(VALUE self) { gtk_im_context_focus_in(_SELF(self)); return self; } static VALUE rg_focus_out(VALUE self) { gtk_im_context_focus_out(_SELF(self)); return self; } static VALUE rg_reset(VALUE self) { gtk_im_context_reset(_SELF(self)); return self; } static VALUE rg_set_cursor_location(VALUE self, VALUE area) { gtk_im_context_set_cursor_location( _SELF(self), RVAL2GDKRECTANGLE(area)); return self; } static VALUE rg_set_use_preedit(VALUE self, VALUE use_preedit) { gtk_im_context_set_use_preedit(_SELF(self), RVAL2CBOOL(use_preedit)); return self; } static VALUE rg_set_surrounding(VALUE self, VALUE text, VALUE cursor_index) { StringValue(text); gtk_im_context_set_surrounding(_SELF(self), RSTRING_PTR(text), RSTRING_LEN(text), NUM2INT(cursor_index)); return self; } static VALUE rg_surrounding(VALUE self) { gchar* text; gint cursor_index; gboolean result = gtk_im_context_get_surrounding(_SELF(self), &text, &cursor_index); return result ? rb_ary_new3(2, CSTR2RVAL(text), INT2NUM(cursor_index)) : Qnil; } static VALUE rg_delete_surrounding(VALUE self, VALUE offset, VALUE n_chars) { return CBOOL2RVAL(gtk_im_context_delete_surrounding(_SELF(self), NUM2INT(offset), NUM2INT(n_chars))); } void Init_gtk_imcontext(VALUE mGtk) { VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_IM_CONTEXT, "IMContext", mGtk); RG_DEF_METHOD(set_client_window, 1); RG_DEF_METHOD(preedit_string, 0); /* Is it better to name as "filter_keypress?" ?*/ RG_DEF_METHOD(filter_keypress, 1); RG_DEF_METHOD(focus_in, 0); RG_DEF_METHOD(focus_out, 0); RG_DEF_METHOD(reset, 0); RG_DEF_METHOD(set_cursor_location, 1); RG_DEF_METHOD(set_use_preedit, 1); RG_DEF_METHOD(set_surrounding, 2); RG_DEF_METHOD(surrounding, 0); RG_DEF_METHOD(delete_surrounding, 2); }