Meaning of G_IO_STATUS_AGAIN apart from resource temporarily unavailable ?

2005-10-25 Thread Colossus
Hi, I red the docs on GIOChannels but I'm stuck regarding what means resource temporarily available in my case since I'm reading from a binary file that IS on my hard disk and the permissions are correct. The giochannel is set null encoded, I read from a file and I write the red bytes on a

Re: memprof problem

2005-10-25 Thread Olivier Sessink
Allin Cottrell wrote: I've successfully used memprof for leak-checking my app in the past, but on trying it recently something odd happens: memprof starts up OK, and it also starts up the target program, but the target program is not visible (doesn't appear on screen) and memprof records no

Re: data acqusition, display and control

2005-10-25 Thread Tristan Van Berkom
Premsagar C wrote: [...] Tristian, A timeouthandler did the job howvever I still have a few bugs. My data acuqisition is working and getstting displayed on my text widget as I have included my timeout in the main . On clicking a button i require to stop the data acqusition and do a few other

Is it possible to put all necessary GTK runtime files in a single directory

2005-10-25 Thread Douglas Vechinski
I have a GTK application that I'm porting to run under Windows. This application is part of a package that has several other native Windows (non-GTK) executables all of which are to reside in a bin directory. The wish, desire, command of the project leader for this project would like

Re: Is it possible to put all necessary GTK runtime files in a single directory

2005-10-25 Thread Douglas Vechinski
HuamiSoft Hubert Sokolowski wrote: On Tue, 25 Oct 2005 10:58:32 -0500 Douglas Vechinski [EMAIL PROTECTED] wrote: I have a GTK application that I'm porting to run under Windows. This application is part of a package that has several other native Windows (non-GTK) executables all of

Re: data acqusition, display and control

2005-10-25 Thread Tristan Van Berkom
Premsagar C wrote: [...] Tristan, Heres the basic gist of my prgram My data acquistion is done in a dialog box called teleop defined by the function teleop void teleop { // define my 6 text boxes to dispaly values from my 6 ckts plus my snap shot button and another textbox obj and a menu button

Re: Is it possible to put all necessary GTK runtime files in a single directory

2005-10-25 Thread HuamiSoft Hubert Sokolowski
On Tue, 25 Oct 2005 11:56:15 -0500 Douglas Vechinski [EMAIL PROTECTED] wrote: I'm sure that would work if I'm allowed to add bin\bin to the PATH environment variable. At present that priviledge is not being allowed. I will probably be able to if there is no other option, but I'm first

Re: memprof problem

2005-10-25 Thread Allin Cottrell
On Tue, 25 Oct 2005, Olivier Sessink wrote: Allin Cottrell wrote: I've successfully used memprof for leak-checking my app in the past, but on trying it recently something odd happens: memprof starts up OK, and it also starts up the target program, but the target program is not visible (doesn't

Re: Meaning of G_IO_STATUS_AGAIN apart from resource temporarily unavailable ?

2005-10-25 Thread Chris Vine
On Tuesday 25 October 2005 20:38, Colossus wrote: ... ioc_cpio = g_io_channel_new_file ( tmp , r , NULL ); g_io_channel_set_encoding (ioc_cpio , NULL , NULL); g_io_channel_set_flags ( ioc_cpio , G_IO_FLAG_NONBLOCK , NULL ); while ( g_io_channel_read_chars ( ioc_cpio ,

gtk entry get keypress

2005-10-25 Thread Alvin Jude
Hey, I'm new to this list and to GTK, and I've searched the list but couldn't find an answer so here goes. I'm trying to build a small program - think real time chat program - that works on serial port communication. I need to know how to get a single character entered by the user in the gtkEntry

Is glib c++ wrapper available ?

2005-10-25 Thread Falls Huang
Is a C++ GLib wrapper available or being worked on? -- Regards Falls Huang ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Is glib c++ wrapper available ?

2005-10-25 Thread Falls Huang
Thank u! Can I use the glibmm instead of STL in C++ ? Iago Rubio wrote: On Wed, 2005-10-26 at 11:35 +0800, Falls Huang wrote: Is a C++ GLib wrapper available or being worked on? http://www.gtkmm.org/ -- Regards Falls Huang ___

Re: Is glib c++ wrapper available ?

2005-10-25 Thread Iago Rubio
On Wed, 2005-10-26 at 12:13 +0800, Falls Huang wrote: Thank u! Can I use the glibmm instead of STL in C++ ? glibmm itself uses STL, so you can use STL with glibmm. -- Iago Rubio ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Change the color of an EventBox

2005-10-25 Thread Kranz, Willi
Hallo! How can I change the color of an EventBox. Is there a small example available. Thanks Willi Kranz ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

GTK+ team meeting

2005-10-25 Thread Matthias Clasen
Lets start doing these again. Place: irc.gnome.org:#gtk-devel Time: 20:00 UTC (16:00 EDT), Tuesday, September 27 Possible agenda items: - Status of outstanding Project Ridley tasks - Minor API additions which we should get in 2.10 - Fixes for 2.8.7 Matthias

Re: GTK+ team meeting

2005-10-25 Thread Matthias Clasen
On Tue, 2005-10-25 at 10:11 -0400, Matthias Clasen wrote: Lets start doing these again. Place: irc.gnome.org:#gtk-devel Time: 20:00 UTC (16:00 EDT), Tuesday, September 27 That should of course be October 25 ___ gtk-devel-list mailing list

Re: Toggle Button problem

2005-10-25 Thread Diego Zuccato
Archie Maskill ha scritto: I was hoping if someone could explain why the following is a feature and not a bug : when the gtk_toggle_button_set_active method is called, two events are fired - a toggled event and a clicked event. This doesn't seem to make sense if the Toggle Button isn't actually

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread Xyber Blue
Hello Tor, Currently, our project is embedded Linux systems running on Fujitsu FR-V target board. Meaning, this Linux and its applications are being cross compiled so that the executables can be run on the target hardware. Our X-Window Server is cross compiled and being fitted for the target.

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread mpsuzuki
On Tue, 25 Oct 2005 14:59:17 +0800 Xyber Blue [EMAIL PROTECTED] wrote: Currently, our project is embedded Linux systems running on Fujitsu FR-V target board. Meaning, this Linux and its applications are being cross compiled so that the executables can be run on the target hardware. We also found

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread Xyber Blue
By the way, sorry my mistake. I have testgtk for the target and I thought fontset.c has different behavior from testgtk. By the way, I have a question. Im just wondering what X server did our FRV used when I followed the steps to run remotely the X Server from the host PC. When we try some

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread mpsuzuki
On Tue, 25 Oct 2005 16:13:42 +0800 Xyber Blue [EMAIL PROTECTED] wrote: When we try some testgtk from PC, it display in our target and we can't pipoint exactly the x-server it used. Did it used our cross compiled x-server for our target or still it uses the host PC X-server. Im really amazed about

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread Xyber Blue
Thanks for the info Mr Tor, I was really amazed about this and have not expected this capability of the X-Server. So it understood that the x-server from which the application displayed is from our target system, not the PC host system. By the way, we follow the steps on what Mr Suzuki said. We

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread mpsuzuki
On Tue, 25 Oct 2005 17:07:29 +0800 Xyber Blue [EMAIL PROTECTED] wrote: Thanks for the info Mr Tor, I was really amazed about this and have not expected this capability of the X-Server. So it understood that the x-server from which the application displayed is from our target system, not the PC

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread Tor Lillqvist
Xyber Blue writes: So it understood that the x-server from which the application displayed is from our target system, not the PC host system. The X server is what directly controls the display in question. By the way, we follow the steps on what Mr Suzuki said. We tried to run dillo

Re: so, is this claim about pango still true? or does nobody actually care?

2005-10-25 Thread Petr Tomasek
On Fri, Oct 14, 2005 at 08:47:38AM +0300, Tommi Komulainen wrote: On 10/14/05, Paul Davis [EMAIL PROTECTED] wrote: is this still true? does anybody care? is there a way to avoid pango entirely and still get AA fonts inside GTK2? will this ever be fixed before everyone is using h/w

RE: so, is this claim about pango still true? or does nobody actually care?

2005-10-25 Thread Robert Thorpe
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Petr Tomasek Sent: 25 October 2005 11:56 To: gtk-list@gnome.org Subject: Re: so,is this claim about pango still true? or does nobody actually care? On Fri, Oct 14, 2005 at 08:47:38AM +0300, Tommi

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread mpsuzuki
Possibly, the root of terminology confusion is the usage of the word X-server, as Mr. Tor pointed. We had better use real program name on FR-V instead of X-server. /usr/X11R6/bin/X is enough? If my guess is right... Mr. Tor and me agree that /usr/X11R6/bin/X on FR-V is configured to display

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread Xyber Blue
Yes, the gtk buttons displays english. It did not display japaneseOn 10/25/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Possibly, the root of terminology confusion isthe usage of the word X-server, as Mr. Tor pointed.We had better use real program name on FR-V insteadof X-server.

Re: Japanese Display for gtk+-1.2.9

2005-10-25 Thread mpsuzuki
On Tue, 25 Oct 2005 20:36:41 +0800 Xyber Blue [EMAIL PROTECTED] wrote: Yes, the gtk buttons displays english. It did not display japanese I suppose the font size is different (larger than that in the case of LANG=C), right? ___ gtk-list mailing

libpangocairo

2005-10-25 Thread Ken
i recently installed the latest gtk+ 2.8.6 and related dependencies on a fedora core 3 machine. even compiling/running the simple base program results in: [EMAIL PROTECTED] ~]$ base base: error while loading shared libraries: libpangocairo-1.0.so.0: cannot openshared object file: No such