Re: Contribution question

2018-01-20 Thread philip . chimento
On Thu, Jan 18, 2018 at 2:30 PM Pavlo Solntsev wrote: > Hi, > > To better understand how some glib modules work, I write mini tests. I was > thinking it would be beneficial for a lot of people if more examples will > be included into the documentation to better explain

Re: GtkTextView - The “extend-selection” signal

2018-01-20 Thread Lucky B.C
Well I did it, thank you very much! void cb_gtk_handle_selection (GtkTextBuffer *buffer) { GtkTextIter start; GtkTextIter end; gtk_text_buffer_get_selection_bounds (buffer, , ); } int main () { ... g_signal_connect_swapped (buffer, "notify::has-selection",

Re: GtkTextView - The “extend-selection” signal

2018-01-20 Thread Lucky B.C
Hi, I don't know how to give a good answer in this case. I'm using the gtk3 too, but I also have a small project in the gtk1.2. I only change gtk version when I think it should be changed. Most first open sources the developer used gtk2 for now! On Fri, Jan 19, 2018 at 9:11 PM, Karan Ahuja

Re: GtkTextView - The “extend-selection” signal

2018-01-20 Thread Karan Ahuja
upgrading is fun rarely. :) especially if - it works for now. On Fri, Jan 19, 2018 at 9:40 PM, Lucky B.C wrote: > Hi, I don't know how to give a good answer in this case. I'm using the > gtk3 too, but I also have a small project in the gtk1.2. I only change > gtk version