Search Results

0
votes
1answer
57 views

How do you enable auto-scrolling on GtkSourceView2?

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 GtkSource …
0
votes
1answer
21 views

How to find GTK version in PHP-GTK2?

This one is driving me nuts. According to GTK's site, there exists GTK_MAJOR_VERSION, GTK_MINOR_VERSION, and GTK_MICRO_VERSION constants. However, none of these work: echo GTK_MAJOR_VERSI …
0
votes

How do you enable auto-scrolling on GtkSourceView2?

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 …
0
votes

How to find GTK version in PHP-GTK2?

Found a code example: static public function GetGtkVersion() { $sVersion = Gtk::get_version() ; $sVersion = str_replace('Gtk','',$sVersion) ; $sVersion = str …