Exemple #1
0
/*#
    @method get_visible GtkTextMark
    @brief Returns true if the mark is visible (i.e. a cursor is displayed for it).
    @return true if visible
 */
FALCON_FUNC TextMark::get_visible( VMARG )
{
    NO_ARGS
    MYSELF;
    GET_OBJ( self );
    vm->retval( (bool) gtk_text_mark_get_visible( (GtkTextMark*)_obj ) );
}
Exemple #2
0
static VALUE
rg_visible_p(VALUE self)
{
    return CBOOL2RVAL(gtk_text_mark_get_visible(_SELF(self)));
}