> 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
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
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
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
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 {
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
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