/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* * Copyright (C) 2011 Ruby-GNOME2 Project Team * Copyright (C) 2009 Ruby-GNOME2 Project Team * Copyright (C) 2002,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 "rbpangoprivate.h" #define RG_TARGET_NAMESPACE cLanguage #define _SELF(self) (RVAL2PANGOLANGUAGE(self)) static VALUE rg_s_default(G_GNUC_UNUSED VALUE self) { return PANGOLANGUAGE2RVAL(pango_language_get_default()); } static VALUE rg_initialize(VALUE self, VALUE language) { G_INITIALIZE(self, pango_language_from_string(RVAL2CSTR(language))); return Qnil; } static VALUE rg_s_to_string(G_GNUC_UNUSED VALUE self, VALUE language) { return CSTR2RVAL(pango_language_to_string(RVAL2CSTR(language))); } static VALUE rg_matches(int argc, VALUE *argv, VALUE self) { VALUE range_list; rb_scan_args(argc, argv, "01", &range_list); return CBOOL2RVAL(pango_language_matches(_SELF(self), RVAL2CSTR_ACCEPT_NIL(range_list))); } static VALUE rg_to_str(VALUE self) { return CSTR2RVAL(pango_language_to_string(_SELF(self))); } /* Moved from Pango::Script */ static VALUE rg_includes_script(VALUE self, VALUE script) { return CBOOL2RVAL(pango_language_includes_script(_SELF(self), RVAL2PANGOSCRIPT(script))); } static VALUE rg_sample_string(VALUE self) { return CSTR2RVAL(pango_language_get_sample_string(_SELF(self))); } void Init_pango_language(VALUE mPango) { VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(PANGO_TYPE_LANGUAGE, "Language", mPango); RG_DEF_SMETHOD(default, 0); RG_DEF_METHOD(initialize, 1); RG_DEF_SMETHOD(to_string, 1); RG_DEF_METHOD(matches, -1); RG_DEF_METHOD(to_str, 0); RG_DEF_ALIAS("to_s", "to_str"); RG_DEF_METHOD(includes_script, 1); RG_DEF_METHOD(sample_string, 0); }