Re: Best practice for bundling GTK with an windows application?

2009-07-12 Thread Dov Grobgeld
Oops. Make that: http://ftp.gnome.org/pub/gnome/binaries/win32/ Regards, Dov 2009/7/11 Dov Grobgeld dov.grobg...@gmail.com I've been doing cross platform development and windows installer during the last few years of lots of C/C++ programs. Here is an outline of my practices: - Build

GtkAssistant flow question

2009-07-12 Thread pwieser
Hi, I have a simple GtkAssistant with : - one intro page - two content pages - one confirm page - one summary page. All works fine : the confirm page has 'Cancel' and 'Apply' buttons, and the summary page has only a 'Close' button. Of course (or is it only obvious for me ?), I'd wish display on

GtkAssistant vs. GtkFileChooserWidget

2009-07-12 Thread Pierre Wieser
Hi all, I'm building a GtkAssistant which embeds a GtkFileChooserWidget in one of the content pages. My problem is when I run the assistant for the second times, the GtkfileChooserWidget doesn't display at all. Below the sample code which reproduces the problem : enum {

Copying widgets

2009-07-12 Thread Jim George
Hi all, I'm writing a program that, like gimp, has a control window, from which users can open one or more viewer windows that present different aspects of a data set (it's a weather radar display program). The sub-windows are identical, and I'm using libglade and glade-3 to do the interface

Re: Copying widgets

2009-07-12 Thread Tristan Van Berkom
On Sun, Jul 12, 2009 at 3:27 PM, Jim Georgejimgeo...@gmail.com wrote: Hi all, I'm writing a program that, like gimp, has a control window, from which users can open one or more viewer windows that present different aspects of a data set (it's a weather radar display program). The sub-windows

Re: Copying widgets

2009-07-12 Thread Jim George
On Sun, Jul 12, 2009 at 3:46 PM, Tristan Van Berkomt...@gnome.org wrote: On Sun, Jul 12, 2009 at 3:27 PM, Jim Georgejimgeo...@gmail.com wrote: Hi all, I'm writing a program that, like gimp, has a control window, from which users can open one or more viewer windows that present different

Re: GTK on Macintosh OSX

2009-07-12 Thread Paul Davis
On Sat, Jul 11, 2009 at 2:14 PM, John Rallsjra...@ceridwen.us wrote: As you all probably know, Richard Hult has withdrawn from working further on the osx/quartz implementation of gtk. You may not know that I have taken over the build, bundle, and menu integration part of that and consolidated

Trouble with core.autocrlf=true on GLib and Gtk+ master

2009-07-12 Thread Hans Breuer
Two translation files are recently causing some grief when working with GLib and Gtk+ master. Before a git pull --rebase I need to commit the changes I doidn't do. And afterwards I have to git rebase --abort because these changes can not be merged. The problem are wrong line-endings and I'd

Re: client-side-windows merged

2009-07-12 Thread Frederic Peters
Alexander Larsson wrote: The client-side-windows branch has now been merged into master. The http://git.gnome.org/cgit/gtk+/commit/?id=0b586a5a change to gdkdrawable.h: @@ -100,6 +100,7 @@ struct _GdkDrawableClass void (*draw_drawable) (GdkDrawable *drawable,

gtk-doc for non-library.

2009-07-12 Thread Ali Abdallah
Hi, I want to document C code written let's say in files obj.c obj.h contain GObject, signals, properties, in order to doc these gtk-doc needs the _get_type function to produce GObject doc, but this code is not a library and i don't want to have .la library in the project just to doc the

Re: the 2.18 endgame

2009-07-12 Thread Michael Natterer
On Fri, 2009-07-10 at 21:35 -0500, Cody Russell wrote: On Fri, 2009-07-10 at 10:45 -0400, Matthias Clasen wrote: GTK+ 2.90: - Outstanding GSEAL issues have not been resolved. bratsche spent some time on it, but gave up for lack of feedback Here is my proposal: - If people still

Re: client-side-windows merged

2009-07-12 Thread Brian J. Tarricone
On 07/12/2009 01:02 PM, Frederic Peters wrote: Alexander Larsson wrote: The client-side-windows branch has now been merged into master. The http://git.gnome.org/cgit/gtk+/commit/?id=0b586a5a change to gdkdrawable.h: @@ -100,6 +100,7 @@ struct _GdkDrawableClass void (*draw_drawable)

Re: Cairo based engine api for GTK+ 3.0

2009-07-12 Thread Thomas Wood
On Thu, 2009-06-18 at 22:45 +0100, Chris Wilson wrote: On Thu, 2009-06-18 at 22:35 +0100, Thomas Wood wrote: Thanks Chris. Obviously once the API is converted to pass in cairo contexts, the context creation/destruction will happen outside of the drawing functions. That's a relief. I was

Re: client-side-windows merged

2009-07-12 Thread Matthias Clasen
On Sun, Jul 12, 2009 at 7:50 PM, Brian J. Tarriconebj...@cornell.edu wrote: For starters, why isn't pygtk just using gdk_drawable_draw_drawable() instead of dereferencing the class pointer? Regardless, if you check out current master, it appears that change that's causing your problem isn't

Re: GTK on Macintosh OSX

2009-07-12 Thread John Ralls
On Jul 12, 2009, at 4:29 AM, Paul Davis wrote: I have a fix for drag-n-drop that we have been using with Ardour for more than a year. I will get into bugzilla for review. Its a pretty simple patch. Not sure what problem you have with pasting, but that works fine for all the purposes that we

Re: GTK on Macintosh OSX

2009-07-12 Thread Dominic Lachowicz
Glib on Win32 has routines to solve this problem. It resolves things relative to where the Glib DLL is installed. If your applications use the XDG data directory functions in Glib, you might get away with this too. Maybe you could invent something similar that used the OSX bundle as your point of

Re: GTK on Macintosh OSX

2009-07-12 Thread John Ralls
On Jul 12, 2009, at 6:18 PM, Dominic Lachowicz wrote: Glib on Win32 has routines to solve this problem. It resolves things relative to where the Glib DLL is installed. If your applications use the XDG data directory functions in Glib, you might get away with this too. Maybe you could invent