Re: gnome_icon_list is deprecated !!

2005-04-05 Thread Dru
regatta wrote: Guys, I didn't know about this until I check the document in http://developer.gnome.org/doc/API/2.0/libgnomeui/GnomeIconList.html ( I didn't know from glade) anyway , is there any alternative ? I havn't used GnomeIconList before, but i imagine it is replaced by GtkTreeView and yo

Link error: gdk_display_new

2005-04-05 Thread Paul Santa Maria
Hi - I'm a complete newbie to GTK+: We're writing a Linux-based app; one of our requirements is that the GUI must be able to address multiple different video cards independently. SuSE 9.2 recognizes each of the three video cards in our system, and addresses them as: unix:0.0 unix:0.1 ...

gnome_icon_list is deprecated !!

2005-04-05 Thread regatta
Guys, I didn't know about this until I check the document in http://developer.gnome.org/doc/API/2.0/libgnomeui/GnomeIconList.html ( I didn't know from glade) anyway , is there any alternative ? -- Best Regards, -*- If Linux doesn't have the solution, you have the wrong prob

Re: Newbie Question

2005-04-05 Thread Freddie Unpenstein
> > i have a function defined by > > void window_createMatrix(int rows, int colums, float **pointerMatrix, ); > > and a button "WhatSoEver", is there a way to use the function by > > clicking the button? i try to use the > > g_connect_event(G_OBJECT(WhatSoEver), "clicked", > > window_createMatrix

async, watches and blocking/unblocking

2005-04-05 Thread Ole C.
Hello list, I spawn 2 programs with g_spawn_async_with_pipes. stdout on the first goes to stdin on the second. stdout on the second is written to file. I use g_io_channel_unix_new to create the channels for the stdins and stdouts. I use g_io_add_watch to setup calls to the callback functions (one

Re: Newbie Question

2005-04-05 Thread Tomaz Canabrava
I think I´m a little TO-MUCH newbie to try this for now gonna have Classes about Structures First But, Tanks for asking =) ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Newbie Question

2005-04-05 Thread André Pedralho
You can use the g_signal_connect wich you may pass one or more parameters: look at http://developer.gnome.org/doc/API/2.0/gobject/gobject-Signals.html#g-signal-new On Apr 5, 2005 1:26 PM, Tomaz Canabrava <[EMAIL PROTECTED]> wrote: > i have a function defined by > > void window_createMatrix(int

Re: Newbie Question

2005-04-05 Thread David Necas (Yeti)
On Tue, Apr 05, 2005 at 02:26:48PM -0300, Tomaz Canabrava wrote: > i have a function defined by > > void window_createMatrix(int rows, int colums, float **pointerMatrix, ); > > and a button "WhatSoEver" > > is there a way to use the function by clicking the button? > i try to use the g_connect_e

Newbie Question

2005-04-05 Thread Tomaz Canabrava
i have a function defined by void window_createMatrix(int rows, int colums, float **pointerMatrix, ); and a button "WhatSoEver" is there a way to use the function by clicking the button? i try to use the g_connect_event(G_OBJECT(WhatSoEver), "clicked", window_createMatrix, Parameters List); but

Editing a struct

2005-04-05 Thread Manuel Giraud
Hi, In an app I'm writing, I'm trying to do something that I think has been done a billions of time: I want to have a window with lots of GtkEntry and GtkComboBox (preferably with labels). Each one when edited will modify one field in a simple C struct. I started something : implement a GtkLabel

Drag&Drop from GtkListStore and icon size

2005-04-05 Thread Juergen Dankoweit
Hello to the list, first a short introduction on me. I develop in a commercial and OSS environment GTK-applications on and for FreeBSD-Systems. I currently develop an application which uses Drag&Drop from a list build up with a GtkListStore-"Object". When I drag an item from the list, I get the w

Re: How to insert GtkLabel inside GtkButton ?

2005-04-05 Thread Arren
Deekshit Mantampady wrote: How about gtk_button_new_with_label("Test"); or gtk_container_add(GTK_CONTAINER(button), my_gtk_label) I prefer gtk_button_new_with_label. It's simple. Thanks Deekshit On Apr 5, 2005 12:13 PM, dimitri PIEL <[EMAIL PROTECTED]> wrote: Hi Could you tell me how to inse