Re: scrolledview

2007-02-07 Thread Mehmet YASAR
[EMAIL PROTECTED] a écrit : >> Another question : suppose I'm adding gtktextviews to a GtkVbox which is >> already >> visible (realized and mapped). >> how can I know that all the widget have done their size negotiations ? >> I can't rely on the "realized" signal since the gtkvbox is already reali

scrolledview

2007-02-06 Thread Mehmet YASAR
Hi, I need some advice about scrolled views. I have a gtkscrolledview containing a gtkvbox, I'm adding many gtktextviews to the vbox. I'd like to select which gtktextview is displayed when I call gtk_widget_show(gkvbox). The problem I have is related to the fact that each widget have a differ

RE: best way to cutomize gtktextview

2006-06-10 Thread Mehmet YASAR
>And end block A with a zero-width space (U+200B). Please let us know >how this works out.. Thanks, I'm going to try this ... ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

best way to cutomize gtktextview

2006-06-09 Thread mehmet YASAR
Hi, I'm displaying "logical block" of text inside a gtktextview and I need to control how it is displayed. I'm mainly using gtktextview's line wrapping but I may insert some new line. Let suppose I have two blocks (A & B), the resulting string is: "A A A AABBB B B"

GTK+ 2.8.17 (which packages to choose for win xp)

2006-05-24 Thread Mehmet YASAR
Hi, I'm developping a gtk application under windows XP and I'm planning to update from gtk 2.8.6 to gtk 2.8.17. I have the choise between the official packages (gtk.org) and the tml's ones. I see that tml is distributing (and advising) newer packages for glib and pango (for example: pango-1.

Re: how to tell gtk to update only the GUI

2006-05-05 Thread Mehmet YASAR
Do you mean you offer no means to cancel the lengthy processing? That's bad. Yes that's voluntary since in my case the processing should take only few seconds (60 seconds at worst). Mehmet ___ gtk-app-devel-list mailing list gtk-app-devel-list@gno

Re: how to tell gtk to update only the GUI

2006-05-04 Thread Mehmet YASAR
> I agree the right thing is normally to make the widgets > insensitive but it is possible to do what Mehmet requested > too with gtk_grab_add() on some `passive' widget -- see the > attached example. That should work, however it doesn't seems to be what I need (gtk_grab_add need at least one gt

how to tell gtk to update only the GUI

2006-05-03 Thread Mehmet YASAR
Hi all, I'm doing some lengthy calculations and I'd like to tell gtk to update only the GUI (gtk should process ONLY expose events). Obviously, there is gtk_main_iteration() but that's processing all pending events (keypress, timers ...), that means I have to disable all keypress handler (ti