re: undefined reference

2005-05-18 Thread Maciej Katafiasz
Dnia 18-05-2005, śro o godzinie 12:01 +0530, srinivas napisał: > hi i got this after compilation: > /tmp/ccbxeJnu.o(.text+0xd1b): In function `help':: undefined reference > to `gtk_label_set_use_markup' most probably you didn't add --libs parameter to your pkg-config line Cheers, Maciej -- Mac

Re: network transparent GTK apps

2005-05-18 Thread Andreas Volz
Am Sun, 15 May 2005 16:40:59 +0100 schrieb Henry Gomersall: > What I want to achieve is a method by which i can control the media > box from any of the other devices (including the PDA). > > The architecture we are thinking of utilises some kind of generic > service-advertising/control daemon run

Re: gtk_window_set_default_icon_list()

2005-05-18 Thread Freddie Unpenstein
> When the docs are insufficient, you can always take a look at the > source. Take advantage of this whole "open source" thing :-) > So, it copies the list and references the pixbufs in it. Given > enough experience with the way that GTK+ works, this isn't > particularly surprising, but the docs

why my program quit when I use g_thread?

2005-05-18 Thread 顺珉 吴
when I add these code,my program will crash at the start, and report segments falt?: if (!g_thread_supported()) g_thread_init(); gdk_thread_enter(); gtk_set_local(); gtk_init(); /* init my gtk window here */ gtk_main(); gdk_thread_leave(); return; But it work fine if I remove these and use singl

Re: network transparent GTK apps

2005-05-18 Thread Henry Gomersall
On Tue, 2005-05-17 at 16:52 +0200, Andreas Volz wrote: > Why do you not use "ssh [EMAIL PROTECTED] command" to access the application > which controls the media pc? And if you share your ssh keys you don't > need to type your passwort. What are the benefits of programming an > complete new client/s

Re: gtk text entry

2005-05-18 Thread Maciej Katafiasz
Dnia 18-05-2005, śro o godzinie 08:52 +0200, Maciej Katafiasz napisał: > Try the attached programme. D'oh, mailman seems to be stripping attachments off. Here's the URL then: http://mathrick.org/files/entry.c Cheers, Maciej -- Maciej Katafiasz <[EMAIL PROTECTED]> _

Re: file selection

2005-05-18 Thread Paul Santa Maria
Hi - No - actually, all you need to do is: 1. Launch the file selection dialog 2. Check the return value I've cut/pasted an example below. 'Hope that helps .. PSM === // Prototype GtkWidget * mk_file_chooser (); /

Re: gtk text entry

2005-05-18 Thread srinivas
thanks a lot for the mail and link, i tried with my application, now i have one more doubt, i have my main window "window_ssnew", and my gtk entry text "entry_name", and "next" button. "entry_name" and "next" button are on different frames on "window_ssnew". as i am using glade i used like, /*

Re: simple example of using gdk_pixbuf_new_from_file

2005-05-18 Thread Muthiah Annamalai
Like Ive been always yapping around my tutorial, see this http://cybernetics.freewebspace.com/gtk/ for some tip on GdkPixbuf. Your problem might be to change this line > gtk_init (&argc, &argv); as > gtk_init (NULL,NULL); Cheers Muthu. --- Raghavendra <[EMAIL PROTECTED]> wrote: > simple ex