Stephan
Stephan

Reputation:

Search function with PyGTKsourceview

I'm writing a small html editor in python mostly for personal use and have integrated a gtksourceview2 object into my Python code. All the mayor functions seem to work more or less, but I'm having trouble getting a search function to work. Obvioiusly the GUI work is already done, but I can't figure out how to somehow buildin methods of the GTKsourceview.Buffer object (http://www.gnome.org/~gianmt/pygtksourceview2/class-gtksourcebuffer2.html) to actually search through the text in it.

Does anybody have a suggestion? I find the documentation not very verbose and can't really find a working example on the web.

Thanks in advance.

Upvotes: 0

Views: 142

Answers (2)

Isaiah
Isaiah

Reputation: 4309

Here is the python doc, I couldn't find any up-to-date documentation so I stuffed it in my dropbox. Here is the link. What you want to look at is at is the gtk.iter_forward_search and gtk.iter_backward_search functions.

Upvotes: 1

u0b34a0f6ae
u0b34a0f6ae

Reputation: 49833

The reference for the C API can probably be helpful, including this chapter that I found "Searching in a GtkSourceBuffer".

As is the reference for the superclass gtk.TextBuffer

Upvotes: 1

Related Questions