Re: Threads Glade

2005-10-01 Thread Przemysław Sitek
simultaneously gtk aborts the application. See http://www.gtk.org/faq/#AEN482 -- Przemysław Sitek ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Memory question

2005-09-29 Thread Przemysław Sitek
Dnia 2005-09-29 13:56, Christian Neumair napisał: Am Donnerstag, den 29.09.2005, 13:39 +0200 schrieb Przemysław Sitek: Dnia 2005-09-29 21:41, Colossus napisał: Ok, the correct way is to cast g_strerror to (char *): response = ShowGtkMessageDialog (GTK_WINDOW (MainWindow),GTK_DIALOG_MODAL

Re: Problem with GTK/GNOME programming

2005-09-27 Thread Przemysław Sitek
can be found here: http://www.gtk.org/api/ -- Przemysław Sitek ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Border

2005-09-18 Thread Przemysław Sitek
Hi, Is it possible to tell GTK to draw a border around a container or any other widget, or I must draw it myself, with gdk_draw_rectangle() for example ? Use GtkFrame -- Przemys³aw Sitek ___ gtk-app-devel-list mailing list

Re: Box expansion in only one direction?

2005-09-09 Thread Przemysław Sitek
hBox have fixed height. If so, try gtk_box_pack_start (vBox, hBox, FALSE, FALSE, 0); That FALSE values cause the child not to expand and not to fill extra space. -- Przemysław Sitek ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http

Height of a GtkTextView

2005-09-03 Thread Przemysław Sitek
Hi, How can I get height of a text (in pixels) stored in a GtkTextView? I have looked in the API reference but found nothing relevant:-/ -- Przemysław Sitek ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org

Re: Colors

2005-09-03 Thread Przemysław Sitek
Dnia 2005-09-03 18:39, Liam R E Quin napisał: On Sat, 2005-09-03 at 11:08 +0200, Przemysław Sitek wrote: I am writing a widget that draws a custom background under its child. I do this by subclassing GtkEventBox (since it has its own window) and overwriting expose virtual method. How can