Sha256: 4c022e7539a1cf479ab961263e1d606431bced564785bcd493a144ac93b5b3cc

Contents?: true

Size: 1.32 KB

Versions: 190

Compression:

Stored size: 1.32 KB

Contents

# Copyright (C) 2015  Ruby-GNOME2 Project Team
#
# 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

module Gtk
  class TextIter
    alias_method :forward_search_raw, :forward_search
    def forward_search(text, flags, limit=nil)
      found, start_iter, end_iter = forward_search_raw(text, flags, limit)
      if found
        [start_iter, end_iter]
      else
        nil
      end
    end

    alias_method :backward_search_raw, :backward_search
    def backward_search(text, flags, limit=nil)
      found, start_iter, end_iter = backward_search_raw(text, flags, limit)
      if found
        [start_iter, end_iter]
      else
        nil
      end
    end
  end
end

Version data entries

190 entries across 182 versions & 3 rubygems

Version Path
gtk4-4.2.7 lib/gtk4/text-iter.rb
gtk3-4.2.7 lib/gtk3/text-iter.rb
gtk4-4.2.6 lib/gtk4/text-iter.rb
gtk3-4.2.6 lib/gtk3/text-iter.rb
gtk4-4.2.5 lib/gtk4/text-iter.rb
gtk3-4.2.5 lib/gtk3/text-iter.rb
gtk4-4.2.4 lib/gtk4/text-iter.rb
gtk3-4.2.4 lib/gtk3/text-iter.rb
gtk4-4.2.3 lib/gtk4/text-iter.rb
gtk3-4.2.3 lib/gtk3/text-iter.rb
gtk4-4.2.2 lib/gtk4/text-iter.rb
gtk3-4.2.2 lib/gtk3/text-iter.rb
gtk4-4.2.1 lib/gtk4/text-iter.rb
gtk3-4.2.1 lib/gtk3/text-iter.rb
gtk4-4.2.0 lib/gtk4/text-iter.rb
gtk3-4.2.0 lib/gtk3/text-iter.rb
gtk4-4.1.9 lib/gtk4/text-iter.rb
gtk3-4.1.9 lib/gtk3/text-iter.rb
gtk4-4.1.8 lib/gtk4/text-iter.rb
gtk3-4.1.8 lib/gtk3/text-iter.rb