RE: g_io_channel

2005-05-01 Thread Freddie Unpenstein
> how i can use g_io_channel to make a simple "echo"-server? libgnet comes with a simple example which does exactly that. Which reminds me... Does anyone know the differences between gnet and gnetwork? Which is the more "GNOME sanctioned" of the two? Fredderic

g_io_channel

2005-05-01 Thread Denis
how i can use g_io_channel to make a simple "echo"-server? ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Segfault and cheep mend of gtk_combo_box_get_active_text

2005-05-01 Thread Olivier
Global response for short : Selecter now is : void selecter(GtkComboBox *combo, gpointer user_data) { gchar *name; if (user_data != NULL){printf("What ???");}; if (combo != GTK_COMBO_BOX(my_combo_box)) printf("not initialized!!!\n"); printf("line %d\n", __LINE__); if (co

GtkEntry Setting text without calling callback

2005-05-01 Thread Daniel Pekelharing
Hi all, I need to set the text in a GtkEntry without the connected callback being called, is this possible? Alternatively how can I disconnect a callback? i.e. then I could: gtk_entry_set_text(...); g_signal_connect(...); That would also be fine. Thanks! -- Daniel Pekelharing

Re: Segfault and cheep mend of gtk_combo_box_get_active_text

2005-05-01 Thread Olivier Ramare
Bien le bonjour, Guten Tag, and good morning to all others ! (Oh : chao also !) void selecter(GtkComboBox *combo) { gchar *name; if ((name = gtk_combo_box_get_active_text (GTK_COMBO_BOX(my_combo_box))) == NULL){ printf("What are we doing in here ???"); } else {

how to move /etc/pango to /home/etc/pango

2005-05-01 Thread mohan kumar
hi, i am working in solaris2.8 sparc machine with gtk2.2.4. In my current setup(by default) all the Pango font configuration files are keept in /etc/pango directory. But, i dont want to disturb the /etc directory. Is it possible to move the /etc/pango directory to my local Home directory, and

Re: clearing a treeview

2005-05-01 Thread Iago Rubio
On Sat, 2005-04-30 at 16:56 +0200, GyÃzà Both wrote: > hello, > > is there an easy one-line way to clear a treeview (so that adding new > content doesn't lead to the old content and the new one appearing side > by side)? currently i'm calling gtk_tree_view_remove_column for each > column; as far a