Re: Strange display problem with gtk-win32 and VC++

2010-11-06 Thread Guy Rouillier
On 11/6/2010 1:03 PM, John Emmas wrote: If I build the app and link it to the official gnome binaries, it works perfectly well. However, if I rebuild those binaries (using the various Visual Studio projects supplied with gtk / glib etc) the app doesn't work. The window and title display correc

Re: Problem with 64 bit gtk binaries in Win 7 (32 bit works fine)

2010-11-06 Thread Mario M
Sorry for the typo, Jaroslav. 2010/11/6 Mario M > Hello, > thanks for the info about the underscores : ), now I learned something > interesting. > > I ended up downloading the source and MSYS and compiling GTK+ in my 64 bit > system. It was a long and tedious process :P getting all the dependen

Re: Problem with 64 bit gtk binaries in Win 7 (32 bit works fine)

2010-11-06 Thread Mario M
Hello, thanks for the info about the underscores : ), now I learned something interesting. I ended up downloading the source and MSYS and compiling GTK+ in my 64 bit system. It was a long and tedious process :P getting all the dependencies, setting up environment variables... also I had to instal

Strange display problem with gtk-win32 and VC++

2010-11-06 Thread John Emmas
For the past few years I've been migrating my Windows apps to GTK+ which I now tend to use in preference to Microsoft's MFC. However, I've always been conscious of the fact that the official gnome binaries are (apparently) built using the 'C' runtime that equates to VC6. VC6 has been obsolete

wrap c++ objects with inheritance

2010-11-06 Thread Matthew Talbert
Can anyone point me to documentation or examples of how to wrap C++ objects with gobject and preserve inheritance? I want to do something like this: ClassA ClassB (inherits from ClassA) and wrap in gobject like this: GClassA GClassB and I need to be able to cast GClassB back to GClassA. GClassA