vote up 0 vote down star

I am having a problem with GtkSourceView used from Python.

Two major problems: 1) When a user types text into the GtkSourceView, and types past the bottom of the visible text, the GtkSourceView does not autoscroll to the users cursor. This wouldnt be so bad, except: 2) The arrow keys, page up and page down keys, do not cause the GtkSourceView to scroll either.

The mouse scrollbar does work on the GtkSourceView.

Does anyone have knowledge/experience of this?

My code is here http://launchpad.net/kabikaboo

flag

67% accept rate
Ok, scratch that. How do you hook into the keypress to enable scrolling? Up, Down, PgUp, and PgDown keys need to work on this widget or it becomes frustrating. – aidave Aug 19 at 18:03
I tried calling place_cursor_onscreen() from the keypress, but GtkSourceView2 does not honor it. – aidave Aug 19 at 18:06

1 Answer

vote up 0 vote down check

Ok I just figured this out.

I was adding the GtkSourceView2 into a GtkScrolledWindow. Only, it was adding a ViewPort first via ScrolledWindow.add_with_viewport(). This disables part of the scrolling behavior via keyboard. Instead, use ScrolledWindow.add(), and the ViewPort is skipped and the GtkAdjustments take care of the scrolling!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.