Missing directories and files for gconf

2005-03-22 Thread APR Trainees
hi people, I've been trying to make an applet that can be put on the panel.When the computer starts Xwindows,the icon of the applet should appear ON the panel like the print-manager icon etc. Working on Redhat Linux 8 We referred to the following documents: 1.

Re: How to detect already running application...

2005-03-22 Thread Kristof Vansant
gnome-volume-manager uses this hack: http://cvs.gnome.org/viewcvs/gnome-volume-manager/src/clipboard.c?rev=1.3view=markup hope it helps -- lupusBE (Kristof Vansant Belgium) ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: How to detect already running application...

2005-03-22 Thread Miroslav Rajcic
This looks interesting, thanks for the tip. Best regards Miroslav Rajcic - Original Message - From: Kristof Vansant [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: gtk-app-devel-list@gnome.org Sent: Tuesday, March 22, 2005 11:54 AM Subject: Re: How to detect already running application...

Which widget can I use for play a video file in GTK

2005-03-22 Thread vishwahg
Hi, I have a video(mp4) file and I want it to play using GTK based application. My question is which widget(Gtkpixmap/GTkimage) is fit for play a video file in GTK?. Let me your thoughts. Thanks Vishwahg -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of

Re: How to detect already running application...

2005-03-22 Thread Freddie Unpenstein
gnome-volume-manager uses this hack: http://cvs.gnome.org/.. hope it helps So do I... But even if it doesn't, it's already answered one different problem I was going to ask about. ;) Fredderic ___ Join Excite! - http://www.excite.com The

Re: Toolbar style

2005-03-22 Thread Soeren Sandmann
Paul Pogonyshev [EMAIL PROTECTED] writes: Ah, indeed. The problem is that I use KDE as the desktop. It seems to work when `gnome-settings-daemon' is running, however, for some reason ``Priority text beside icons'' works exactly as ``Text below icons'' (it works fine when set from my

Re: how to communicate with LPT? is this posible?

2005-03-22 Thread Antonio Gomes
LTP = Linux Test Project ?! Regards On Tue, 22 Mar 2005 16:25:43 +0100, ALLs soft [EMAIL PROTECTED] wrote: thanks. -- Antonio Gomes E-mail: [EMAIL PROTECTED] Embedded Linux Lab - 10LE INdT - Instituto Nokia de Tecnologia (Manaus/Br) NOKIA's Technology Institute

Re: how to communicate with LPT? is this posible?

2005-03-22 Thread Liam R. E. Quin
On Tue, 2005-03-22 at 13:31 -0400, Antonio Gomes wrote: LTP = Linux Test Project ?! I'm guessing ALLs soft meant the printer, since LPT was the name for a Line Printer on some 1960s DEC operating systems. If so, the answer depends... to send something to the printer, you can pipe output to lpr

dealing with async events

2005-03-22 Thread Andreas Bachmann
hi! I'm developing a gtk+ based equivalent to 'netstat' and 'sockstat'. (http://bachi.te-clan.ch/tcpview.png) my first app was a single thread (gtk_main) with g_timeout_add every 1 sec to update my treeview. disadvantage: backend roundtrip is too long.

Re: how to communicate with LPT? is this posible?

2005-03-22 Thread ALLs soft
i meen LPT and not LTP. how to read a word from parallel port. more on http://www.1osb.ims.hr/skola/lpt/LPT-input.html, but not english. i now work this with DLportIO but it work only on windows. i need read what is on 889 adress (if in bios). somebody can help? thanks Liam R. E. Quin wrote: On

Re: how to communicate with LPT? is this posible?

2005-03-22 Thread John Coppens
On Tue, 22 Mar 2005 22:20:47 +0100 ALLs soft [EMAIL PROTECTED] wrote: i meen LPT and not LTP. how to read a word from parallel port. more on http://www.1osb.ims.hr/skola/lpt/LPT-input.html, but not english. i now work this with DLportIO but it work only on windows. i need read what is on 889

Re: GtkPlug/Socket on Win32: is_focus vs. is-focus

2005-03-22 Thread Matthias Clasen
On Tue, 2005-03-22 at 03:12 +0200, Tor Lillqvist wrote: In gtksocket.c, we have: static void gtk_socket_notify (GObject*object, GParamSpec *pspec) { if (!strcmp (pspec-name, is_focus)) return; socket_update_focus_in (GTK_SOCKET (object)); } Shouldn't

Re: Drop WM_ERASEBKGND handling in gdkevents-win32.c?

2005-03-22 Thread John Ehresman
Tor Lillqvist wrote: Owen Taylor writes: There is a third possible issue - if you are moving another window over a window, does windows send: ERASEBKGND ERASEBKGND ERASEBKGND PAINT Or is ERASEBKGN only sent immediately before PAINT? If I understand correctly,

Re: How long does it take to load a file

2005-03-22 Thread Federico Mena Quintero
On Wed, 2005-03-16 at 14:43 -0600, Robertson, Ezban wrote: I'm loading a series of jpeg images (also tried with png) and notice it takes about 1.2 seconds to load each. Is this normal? I'm using the function gdk_pixbuf_new_from_file. Is there a better (i.e faster) alternative? Someone really

Re: g_file_write()

2005-03-22 Thread Soeren Sandmann
Soeren Sandmann [EMAIL PROTECTED] writes: I think this is a serious problem. The file should be created with the umask permissions. You can do this: #ifndef G_OS_WIN32 { mode_t mode = umask (0); umask (mode); chmod (filename, mode); } #endif but then there is a race