Re: gtk

2006-08-08 Thread Bill Cunningham
> > If you install pkg-config and all the glib/gtk stuff to the same > > prefix, as long as pkg-config is in your PATH, you won't have any > > problems with needing to set PKG_CONFIG_PATH (unless you somehow > > override the default pkg-config search path. > > > > - Michael I put PKG_CONFIG=/usr

Pango-1.14.0 released

2006-08-08 Thread Behdad Esfahbod
Pango-1.14.0 is now available for download at: http://download.gnome.org/sources/pango/1.14/ 39144843f377ec6b60dbbf1a25d2a49a pango-1.14.0.tar.bz2 65ecb3d29cebcaf97de14e55831ebb7c pango-1.14.0.tar.gz This is a stable release providing new functionality as compared to Pango-1.12, while mainta

Re: Threads, sockets and windows

2006-08-08 Thread Anna
On Mon, Aug 07, 2006 at 09:44:06PM +0300, Vladimir wrote: > Hello, > > I'm trying to write two-threaded program: one thread for GUI and the other > for network. The network thread needs to poll network socket and to receive > messages from the GUI thread (such as commands to send something to netw

Re: gtk

2006-08-08 Thread Michael Ekstrand
OK, after enough cross-posting madness due to my silly mistake earlier (mailing gtkmm-list rather than gtk-list), hopefully this will put this thread back where it belongs. On Aug 8, 2006, at 2:53 PM, Michael Ekstrand wrote: > On Aug 8, 2006, at 9:43 AM, Bill Cunningham wrote: >> Ok I used r

Re: regarding sound files

2006-08-08 Thread Michael Ekstrand
On Aug 8, 2006, at 9:10 AM, cnu_sree wrote: > is there any way to play a sound file using Gtk. > is there any class in Gtk for this task. Not in GTK directly. You'll need another sound library (such as esound, the alsa libraries, gstreamer, or SDL if you want more cross- platform support). GS

regarding sound files

2006-08-08 Thread cnu_sree
is there any way to play a sound file using Gtk. is there any class in Gtk for this task. thank u, sree. -- View this message in context: http://www.nabble.com/regarding-sound-files-tf2072925.html#a5707260 Sent from the Gtk+ - General forum at Nabble.com. ___

Re: Threads, sockets and windows

2006-08-08 Thread Tor Lillqvist
Armin Burgmeier writes: > A probably better approach would be to let glib poll your sockets via > creating GIOChannels and using g_io_add_watch to watch for events to > occur. Yep, and this then will in fact use the WSAEventSelect mechanism on Windows. (In GLib >= 2.8) Please note, though, tha

Problem installing

2006-08-08 Thread johannes_vuori
Hi, I am trying to install the gtk+ library. The configure file runs nicely, and also the makefile - for a minute. Till this comes: gcc -DHAVE_CONFIG_H -I. -I. -I../.. -DG_LOG_DOMAIN=

Re: gtk

2006-08-08 Thread Michael Ekstrand
On Aug 7, 2006, at 11:35 AM, Tor Lillqvist wrote: > Bill Cunningham writes: >> pkg-config doesn't help me much. I'm not quite sure how to use it. I >> know there is the PKG_CONFIG variable. Do you set that in >> bash_profile ? I >> must confess I can't figure out how to use the package. You don't

Re.Glib compilation problem

2006-08-08 Thread harshavardhanreddy mandeepala
Hi, Finally i cross compiled glib successfully. Thanks to every body. Regards Harsha ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

Re: Threads, sockets and windows

2006-08-08 Thread Frank Naumann
Hello! >> Under Window you can use select(). For myself I've written for Win32 a >> poll() function that internally use select() (so the code remains clean >> and portable). > (Whoops. I should have pressed reply to all. Sorry for the > inconvenience, Frank.) No problem. > The Windows select() f

Re: Threads, sockets and windows

2006-08-08 Thread Armin Burgmeier
> But on windows there is no poll() function. Of course I can use > g_async_queue, but doing so I can't poll queue and network socket > simultaneously. You can associate WSAEvents to your socket via WSAEventSelect and then wait for the events to become signaled using WSAWaitForMultipleObjects. Usin

Re: glib cross compilation error

2006-08-08 Thread Baurzhan Ismagulov
On Tue, Aug 08, 2006 at 04:23:42AM -0600, harshavardhanreddy mandeepala wrote: > I am trying to cross compile glib-2.4.7 on suse10.0 to ARM processor. Any reason for not using a more recent version? > checking for preceeding underscore in symbols... configure: error: > cannot run test program wh

Re: Threads, sockets and windows

2006-08-08 Thread Armin Burgmeier
> > But on windows there is no poll() function. Of course I can use > > g_async_queue, but doing so I can't poll queue and network socket > > simultaneously. > > Under Window you can use select(). For myself I've written for Win32 a > poll() function that internally use select() (so the code rema

Re: Threads, sockets and windows

2006-08-08 Thread Frank Naumann
Hello! > But on windows there is no poll() function. Of course I can use > g_async_queue, but doing so I can't poll queue and network socket > simultaneously. Under Window you can use select(). For myself I've written for Win32 a poll() function that internally use select() (so the code remains

Re: gtk

2006-08-08 Thread Sergei Steshenko
--- Tor Lillqvist <[EMAIL PROTECTED]> wrote: > Bill Cunningham writes, again in a personal mail to me, despite being > asked to keep this discussion on the list: > > i686 Rh linux 7.0 without any special package groups installed because > > I install everything from scratch. I have the Xfree

gtk

2006-08-08 Thread Bill Cunningham
Sorry. I just hit reply. Bill Cunningham writes, again in a personal mail to me, despite being asked to keep this discussion on the list: > i686 Rh linux 7.0 without any special package groups installed because > I install everything from scratch. I have the Xfree 86 binaries and right > n

glib cross compilation error

2006-08-08 Thread harshavardhanreddy mandeepala
Hi , I am trying to cross compile glib-2.4.7 on suse10.0 to ARM processor. I configured using the following configure command. ./configure --cache-file=arm-linux.cache --host=arm-linux CC=/opt/mtwk/usr/local/gcc-3.4.3-glibc-2.3.4/arm-linux/bin/arm-linux-gcc I have cross compiled libraries for ar

Re: gtk

2006-08-08 Thread Tor Lillqvist
Bill Cunningham writes, again in a personal mail to me, despite being asked to keep this discussion on the list: > i686 Rh linux 7.0 without any special package groups installed because > I install everything from scratch. I have the Xfree 86 binaries and right > now I'm running the old 2.2 ker

Threads, sockets and windows

2006-08-08 Thread Vladimir
Hello, I'm trying to write two-threaded program: one thread for GUI and the other for network. The network thread needs to poll network socket and to receive messages from the GUI thread (such as commands to send something to network or to disconnect). I've used pipe for commands, so in the networ

Re: Glib cross compilation.

2006-08-08 Thread Baurzhan Ismagulov
Harsha, please spend two minutes and subscribe to the list. I won't answer further private e-mails. On Tue, Aug 08, 2006 at 02:22:52AM -0600, harshavardhanreddy mandeepala wrote: > >1. Type "file libglib-2.0.so.0.400.7". Press Enter. > A. ibglib-2.0.so.0.400.7: ELF 32-bit LSB shared object, Intel

Re: how we can run wav files in Gtk

2006-08-08 Thread Yeti
On Mon, Aug 07, 2006 at 11:11:09PM -0700, cnu_sree wrote: > > i ahve to run a wav file in gtk. http://catb.org/~esr/faqs/smart-questions.html#id265951 Yeti -- Anonyms eat their boogers. ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.o