/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* * Copyright (C) 2011 Ruby-GNOME2 Project Team * Copyright (C) 2006 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 cRecentInfo #define _SELF(self) (RVAL2GTKRECENTINFO(self)) static VALUE rg_uri(VALUE self) { return CSTR2RVAL(gtk_recent_info_get_uri(_SELF(self))); } static VALUE rg_display_name(VALUE self) { return CSTR2RVAL(gtk_recent_info_get_display_name(_SELF(self))); } static VALUE rg_description(VALUE self) { return CSTR2RVAL(gtk_recent_info_get_description(_SELF(self))); } static VALUE rg_mime_type(VALUE self) { return CSTR2RVAL(gtk_recent_info_get_mime_type(_SELF(self))); } static VALUE rg_added(VALUE self) { time_t t = gtk_recent_info_get_added(_SELF(self)); return rb_funcall(rb_cTime, rb_intern("at"), 1, INT2NUM(t)); } static VALUE rg_modified(VALUE self) { time_t t = gtk_recent_info_get_modified(_SELF(self)); return rb_funcall(rb_cTime, rb_intern("at"), 1, INT2NUM(t)); } static VALUE rg_visited(VALUE self) { time_t t = gtk_recent_info_get_visited(_SELF(self)); return rb_funcall(rb_cTime, rb_intern("at"), 1, INT2NUM(t)); } static VALUE rg_private_hint_p(VALUE self) { return CBOOL2RVAL(gtk_recent_info_get_private_hint(_SELF(self))); } static VALUE rg_application_info(VALUE self, VALUE app_name) { const gchar *app_exec; guint count; time_t t; gboolean ret = gtk_recent_info_get_application_info(_SELF(self), RVAL2CSTR(app_name), &app_exec, &count, &t); VALUE ary = rb_ary_new(); if (ret){ rb_ary_push(ary, CSTR2RVAL(app_exec)); rb_ary_push(ary, UINT2NUM(count)); rb_ary_push(ary, rb_funcall(rb_cTime, rb_intern("at"), 1, INT2NUM(t))); } return ary; } static VALUE rg_applications(VALUE self) { gsize i; gsize length; gchar** str = gtk_recent_info_get_applications(_SELF(self), &length); VALUE ary = rb_ary_new(); for(i = 0; i < length; i++){ rb_ary_push(ary, CSTR2RVAL(str[i])); } g_strfreev(str); return ary; } static VALUE rg_last_application(VALUE self) { return CSTR2RVAL(gtk_recent_info_last_application(_SELF(self))); } static VALUE rg_groups(VALUE self) { gsize i; gsize length; gchar** str = gtk_recent_info_get_groups(_SELF(self), &length); VALUE ary = rb_ary_new(); for(i = 0; i < length; i++){ rb_ary_push(ary, CSTR2RVAL(str[i])); } g_strfreev(str); return ary; } static VALUE rg_has_group_p(VALUE self, VALUE group_name) { return CBOOL2RVAL(gtk_recent_info_has_group(_SELF(self), RVAL2CSTR(group_name))); } static VALUE rg_has_application_p(VALUE self, VALUE app_name) { return CBOOL2RVAL(gtk_recent_info_has_application(_SELF(self), RVAL2CSTR(app_name))); } static VALUE rg_get_icon(VALUE self, VALUE size) { return GOBJ2RVAL(gtk_recent_info_get_icon(_SELF(self), NUM2INT(size))); } static VALUE rg_short_name(VALUE self) { return CSTR2RVAL(gtk_recent_info_get_short_name(_SELF(self))); } static VALUE rg_uri_display(VALUE self) { return CSTR2RVAL(gtk_recent_info_get_uri_display(_SELF(self))); } static VALUE rg_age(VALUE self) { return INT2NUM(gtk_recent_info_get_age(_SELF(self))); } static VALUE rg_local_p(VALUE self) { return CBOOL2RVAL(gtk_recent_info_is_local(_SELF(self))); } static VALUE rg_exist_p(VALUE self) { return CBOOL2RVAL(gtk_recent_info_exists(_SELF(self))); } static VALUE rg_operator_ri_match(VALUE self, VALUE other) { return CBOOL2RVAL(gtk_recent_info_match(_SELF(self), _SELF(other))); } void Init_gtk_recent_info(VALUE mGtk) { VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_RECENT_INFO, "RecentInfo", mGtk); RG_DEF_METHOD(uri, 0); RG_DEF_METHOD(display_name, 0); RG_DEF_METHOD(description, 0); RG_DEF_METHOD(mime_type, 0); RG_DEF_METHOD(added, 0); RG_DEF_METHOD(modified, 0); RG_DEF_METHOD(visited, 0); RG_DEF_METHOD_P(private_hint, 0); RG_DEF_METHOD(application_info, 1); RG_DEF_METHOD(applications, 0); RG_DEF_METHOD(last_application, 0); RG_DEF_METHOD(groups, 0); RG_DEF_METHOD_P(has_group, 1); RG_DEF_METHOD_P(has_application, 1); RG_DEF_METHOD(get_icon, 1); RG_DEF_METHOD(short_name, 0); RG_DEF_METHOD(uri_display, 0); RG_DEF_METHOD(age, 0); RG_DEF_METHOD_P(local, 0); RG_DEF_METHOD_P(exist, 0); RG_DEF_METHOD_OPERATOR("==", ri_match, 1); }