Re: When to call g_thread_init(), again...

2008-08-15 Thread Patrick Hallinan
On Fri, 2008-08-15 at 10:58 +0300, Tor Lillqvist wrote: The documentation for g_thread_init() says (in the stable branch): You must call g_thread_init() before executing any other GLib functions in a threaded GLib program. Is there a good reason to not compile separate threaded and

I want to fix a bug!

2008-07-30 Thread Patrick Hallinan
Hi, With help, I got http://svn.gnome.org/svn/gtk+/trunk/ building with jhbuild. Now I need a bug to work on. I'm a decent C programmer and I've done a little gtk+ programming but I don't necessarily understand all the interactions/assumption of gtk+. Any suggestions? Pat.

Re: setting up a gtk dev environment

2008-07-28 Thread Patrick Hallinan
On Mon, 2008-07-28 at 10:06 -0400, Owen Taylor wrote: On Sun, 2008-07-27 at 14:40 -0400, Patrick Hallinan wrote: On Sun, 2008-07-27 at 14:24 -0400, Paul Davis wrote: On Sun, 2008-07-27 at 14:08 -0400, Patrick Hallinan wrote: Hi, I wish to help with the development of gtk

setting up a gtk dev environment

2008-07-27 Thread Patrick Hallinan
Hi, I wish to help with the development of gtk+ but I'm not having any fun trying to setup a build environment for gtk+. I've looked for help at www.gtk.org/development.html and developer.gnome.org. I have tried using jhbuild from http://svn.gnome.org/svn/jhbuild/trunk. No dice. Is there help

Re: setting up a gtk dev environment

2008-07-27 Thread Patrick Hallinan
On Sun, 2008-07-27 at 14:24 -0400, Paul Davis wrote: On Sun, 2008-07-27 at 14:08 -0400, Patrick Hallinan wrote: Hi, I wish to help with the development of gtk+ but I'm not having any fun trying to setup a build environment for gtk+. I've looked for help at www.gtk.org/development.html

Re: setting up a gtk dev environment

2008-07-27 Thread Patrick Hallinan
, Patrick Hallinan [EMAIL PROTECTED] wrote: On Sun, 2008-07-27 at 14:24 -0400, Paul Davis wrote: On Sun, 2008-07-27 at 14:08 -0400, Patrick Hallinan wrote: Hi, I wish to help with the development of gtk+ but I'm not having any fun trying to setup a build environment for gtk+. I've looked

Re: setting up a gtk dev environment

2008-07-27 Thread Patrick Hallinan
On Sun, 2008-07-27 at 20:27 +0100, Simos Xenitellis wrote: On Sun, Jul 27, 2008 at 7:40 PM, Patrick Hallinan [EMAIL PROTECTED] wrote: On Sun, 2008-07-27 at 14:24 -0400, Paul Davis wrote: On Sun, 2008-07-27 at 14:08 -0400, Patrick Hallinan wrote: Hi, I wish to help

Filtering GtkComboBoxEntry input

2007-08-11 Thread Patrick Hallinan
Hi, Is there a way to filter the text input to a GtkComboBoxEntry? I want to use it to provide a drop down list for preconfigured values and also to allow a user to set there own arbitrary value. On a related note: Is there an elegant way to directly set the text for the entry to some

Setting a widget's width to the text width

2007-08-10 Thread Patrick Hallinan
Hi, I want to create a GtkComboEntry where the width is exactly set to display the largest string in the drop down list. I do not want to hard code the width. Is this something easy to do? Thanks for any help! Pat. ___ gtk-app-devel-list mailing

Pango: slight performance tweak.

2007-05-10 Thread Patrick Hallinan
I've made a change to pango-layout.c. When fitting text in a line, the current algorithm does a linear search to find the break. I thought that performance would be further increased by storing character width cumulatively (rather than differentially) so that a binary search could be