quartz today

2006-04-07 Thread Calvin Ellis
Well, today is the expected release date for Quartz 1.0 on MAC. :: continously hits refresh in CVS ::Calvin ___ gtk-list mailing list gtk-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-list

Re: Doubt

2006-04-07 Thread Michele \"O-Zone\" Pinassi
On Saturday 25 February 2006 09:44, Lloyd wrote: > Which one is better to use, GTK+ or wxWidget, to get a fast and easilt > portable application among multiple platforms (OS). wxWidget is better for building multiple platforms programs, IMHO, of course ! Oz -- O-Zone ! No (C) 2005 WEB @ htt

Record GTK+ display

2006-04-07 Thread ALEJANDRO BLANCO MARTIN
Hello Pieter, I would like to record a GTK+ (C/C++) display into a mpeg file or any other format. I have been looking for information in several forums and I have found one post yours about this. Can I ask you how did you solve the problem? It may not be possible and I should consider other ways.

[Fwd: Re: Question about signal]

2006-04-07 Thread Bob Caryl
What follow is what I sent to Nietykalny in response to his email requesting help with connecting signals in general. I cannot help it if he infers that Gtk::Button::signal_clicked should be used in conjunction with Gtk::CellRendereText. Original Message Subject:Re:

rules-hint default?

2006-04-07 Thread Peter
I noticed a while ago in http://developer.gnome.org/doc/API/2.0/gtk/GtkTreeView.html#gtk-tree-view-set-rules-hint: Some themes will draw tree rows in alternating colors even when rules are turned off, and users who prefer that appearance all the time can choose those themes. OK, where do I sign u

configure: error: Xft version 2 is required for x11 target

2006-04-07 Thread Zhang Allen
checking for libpng12... yes checking pixbuf loaders to build... checking for sys/wait.h that is POSIX.1 compatible... yes checking return type of signal handlers... (cached) void checking for x86 platform... yes checking compiler support for MMX... yes checking for freetype-config...

No Doubts

2006-04-07 Thread Richard Boaz
huh? I'm not familiar with wxWidget, so I'm afraid I can't comment from a true comparison perspective, but I write programs with Gtk+ running on LINUX, MAC OS X (X11), and Solaris (a rather complicated affair, displaying seismograms in many forms and transforms, i.e., not a simple app wit

Re: No Doubts

2006-04-07 Thread Robert Roebling
Richard Boaz wrote: > I'm not familiar with wxWidget, so I'm afraid I can't comment from a > true comparison perspective, but I write programs with Gtk+ running > on LINUX, MAC OS X (X11), and Solaris (a rather complicated affair, > displaying seismograms in many forms and transforms, i.e.,

Re: No Doubts

2006-04-07 Thread Paul Davis
On Fri, 2006-04-07 at 16:27 +0200, Robert Roebling wrote: > or even write your own. The real task is to write an > app which feels like a native app on the respective > platforms. wxWidgets has been written with that idea > in mind from the beginning. this is much harder than something that a too

Re: Naming / Labelling Widgets

2006-04-07 Thread Richard Plana
On Thu, 2006-04-06 at 11:34 -0600, Richard Plana wrote: On Thu, 2006-04-06 at 10:48 +0300, Dov Grobgeld wrote: Isn't this exactly what the "Name: " field in glade is doing? Apparently not. Glade is using the string in the "Name" field to name its variables in the gen

Re: Naming / Labelling Widgets

2006-04-07 Thread Murray Cumming
On Fri, 2006-04-07 at 10:23 -0600, Richard Plana wrote: > On Thu, 2006-04-06 at 11:34 -0600, Richard Plana wrote: > > On Thu, 2006-04-06 at 10:48 +0300, Dov Grobgeld wrote: > > > Isn't this exactly what the "Name: " field in glade is doing? > > > > Apparently not. Glade is using the string in t

Gtk+/Gtkmm Application Development training

2006-04-07 Thread Sean Kelley
Hi, I am looking at getting application developers up to speeed with Gtk+/Gtkmm at my company and I was wondering if there are any individuals or companies here in the United States or elsewhere who specialize in such training? We would prefer to conduct the training on site here in the US and pa

GLib 2.10.2 released

2006-04-07 Thread Matthias Clasen
GLib 2.10.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.10/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.10/ glib-2.10.2.tar.bz2 md5sum: 718961161ee1692c216a2d542196a04a glib-2.10.2.tar.gzmd5sum: 7ffb643a0cd49874729bfb1ce008f280 GLib is the low-level core library tha

Re: how to deliver "enter" to the "right window"

2006-04-07 Thread Antonio Gomes
you may use gtk_window_is_active traverse our list of windows and verify which one has the focus.On 4/5/06, Paul Davis < [EMAIL PROTECTED]> wrote:I am adding support for various hardware controllers to Ardour (http://ardour.org/) and one of the nice features I've seen in someother systems is the ab

gmodule help

2006-04-07 Thread Greg Steffensen
Hey, I'm trying to use gmodule, but am unfamiliar with libtool and linking, and am unsure about what compilation commands to use (I've gone through the libtool info pages, but still can't quite get it to work).  Can anyone tell me how to compile a single source file that uses glib and gmodule into

Re: gmodule help

2006-04-07 Thread Rick Jones
Greg Steffensen wrote: Hey, I'm trying to use gmodule, but am unfamiliar with libtool and linking, and am unsure about what compilation commands to use (I've gone through the libtool info pages, but still can't quite get it to work). Can anyone tell me how to compile a single source file that

Re: gmodule help

2006-04-07 Thread Greg Steffensen
Thanks- its actually quite simple.  In case anyone else searches for info on this, on Linux, shared libraries usable with gmodule are compiled viagcc -shared -fPIC -o libmylib.so libmylib.c `pkg-config --cflags --libs glib-2.0`The pkg-config arguments may need to be tweaked depending on your proje

problem with including

2006-04-07 Thread MaaSTaaR
Hello ... i am using Ubuntu Linux , and i want use glib , but when i include glib.h in C file it's show for me this error : test1.c:1:18: error: glib.h: No such file or directory what sould i do to solve this problem ? -- View this message in context: http://www.nabble.com/problem-with-includi

Re: gmodule help

2006-04-07 Thread Rick Jones
Greg Steffensen wrote: Thanks- its actually quite simple. In case anyone else searches for info on this, on Linux, shared libraries usable with gmodule are compiled via gcc -shared -fPIC -o libmylib.so libmylib.c `pkg-config --cflags --libs glib-2.0` drifting a bit - i have found that --cf

Re: problem with including

2006-04-07 Thread Randima Niroshini
Have a look at following thread and replies. http://mail.gnome.org/archives/gtk-list/2006-March/msg00187.html Quoting MaaSTaaR <[EMAIL PROTECTED]>: > > Hello ... > > i am using Ubuntu Linux , and i want use glib , but when i include glib.h in > C file it's show for me this error : > > test1

GTK+ 2.8.17 released

2006-04-07 Thread Matthias Clasen
GTK+ 2.8.17 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.17.tar.bz2 md5sum: 6d2deb63a5444808d2aeb7dcfffaa2f4 gtk+-2.8.17.tar.gzmd5sum: c439f4a34f083be27fcdbedfef59d66d This is a bugfix release in the 2.8.x ser

Pango-1.12.1 released

2006-04-07 Thread Behdad Esfahbod
Pango-1.12.1 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.10/ or: http://download.gnome.org/sources/pango/1.12/ 10ddfbc43cf895639b77788ca637409c pango-1.12.1.tar.bz2 46e11a2a6f8bb4dc318d04382d894081 pango-1.12.1.tar.gz This is a stable release and is source and binary