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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
* Copyright (C) 2011 Ruby-GNOME2 Project Team
* Copyright (C) 2004,2005 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 cEntryCompletion
#define _SELF(self) (RVAL2GTKENTRYCOMPLETION(self))
static VALUE
rg_initialize(VALUE self)
{
G_INITIALIZE(self, gtk_entry_completion_new());
return Qnil;
}
static VALUE
rg_entry(VALUE self)
{
return GOBJ2RVAL(gtk_entry_completion_get_entry(_SELF(self)));
}
static gboolean
entryc_match_func(GtkEntryCompletion *completion, const gchar *key, GtkTreeIter *iter, gpointer func)
{
iter->user_data3 = gtk_entry_completion_get_model(completion);
return RVAL2CBOOL(rb_funcall((VALUE)func, id_call, 3, GOBJ2RVAL(completion),
CSTR2RVAL(key), GTKTREEITER2RVAL(iter)));
}
static VALUE
rg_set_match_func(VALUE self)
{
VALUE func = rb_block_proc();
G_RELATIVE(self, func);
gtk_entry_completion_set_match_func(_SELF(self),
(GtkEntryCompletionMatchFunc)entryc_match_func,
(gpointer)func, NULL);
return self;
}
static VALUE
rg_complete(VALUE self)
{
gtk_entry_completion_complete(_SELF(self));
return self;
}
static VALUE
rg_insert_prefix(VALUE self)
{
gtk_entry_completion_insert_prefix(_SELF(self));
return self;
}
static VALUE
rg_insert_action_text(VALUE self, VALUE index, VALUE text)
{
gtk_entry_completion_insert_action_text(_SELF(self), NUM2INT(index), RVAL2CSTR(text));
return self;
}
static VALUE
rg_insert_action_markup(VALUE self, VALUE index, VALUE markup)
{
gtk_entry_completion_insert_action_markup(_SELF(self), NUM2INT(index), RVAL2CSTR(markup));
return self;
}
static VALUE
rg_delete_action(VALUE self, VALUE index)
{
gtk_entry_completion_delete_action(_SELF(self), NUM2INT(index));
return self;
}
static VALUE
entryc_set_text_column(VALUE self, VALUE column)
{
gtk_entry_completion_set_text_column(_SELF(self), NUM2INT(column));
return self;
}
static VALUE
rg_completion_prefix(VALUE self)
{
return CSTR2RVAL(gtk_entry_completion_get_completion_prefix(_SELF(self)));
}
void
Init_gtk_entry_completion(VALUE mGtk)
{
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_ENTRY_COMPLETION, "EntryCompletion", mGtk);
RG_DEF_METHOD(initialize, 0);
RG_DEF_METHOD(entry, 0);
RG_DEF_METHOD(set_match_func, 0);
RG_DEF_METHOD(complete, 0);
RG_DEF_METHOD(insert_prefix, 0);
RG_DEF_METHOD(insert_action_text, 2);
RG_DEF_METHOD(insert_action_markup, 2);
RG_DEF_METHOD(delete_action, 1);
G_REPLACE_SET_PROPERTY(RG_TARGET_NAMESPACE, "text_column", entryc_set_text_column, 1);
RG_DEF_METHOD(completion_prefix, 0);
}
|