compile glib success but failure on run-time with every version

2015-02-12 Thread codekiddy
Hello, I'm working on series of Visual Studio 2013 solutions and projects on GitHub to compile GTK+ stack and it's dependencies from scratch, beginning with zlib and iconv up to GTK+ and even gtkmm. So far I succeeded to compile everyt

回覆﹕ compile glib success but failure on run-time with every version

2015-02-12 Thread Fan Chun-wei
Hi, For the test programs, you can take a look at Makefile.am in the same directory, and you would probably see something like -DG_LOG_DOMAIN=\"...\", and this is (without the -D) what you need to add to your preprocessor definitions. Basically, what is happening is that the test program is e

Re: compile glib success but failure on run-time with every version

2015-02-12 Thread codekiddy
Thank you Chun-wei for your reply! and also thank you for all of your contribution to Visual Studio solutions to compile GTK+, my solutions are largerly based on yours, in fact I copied yours and modifed them for my intentions and also created some myself to make possible to compile everything by u

Re: compile glib success but failure on run-time with every version

2015-02-12 Thread codekiddy
Hello again, I would just like to say that "I think" I found a problem in gio.dll I Created created a test project for glib, gio and gobject, for glib-2.42.1 package where gio test fails in following function in *glib-2.42.1\gobject\tests\object.c*: #ifdef G_OS_WIN32 static gboolean recv_windows

GtkOrientation and INVERT_BOOLEANS

2015-02-12 Thread Konstantin P.
Can I bind two orientations of 2 GTK objects to be opposite via using G_BINDING_INVERT_BOOLEAN? Or I need to use g_object_bind_property_full() and custom transform form GTK_ORIENTATION_HORIZONTAL to GTK_ORIENTATTION_VERTICAL, and vise versa? ___ gtk-list

Re: GtkOrientation and INVERT_BOOLEANS

2015-02-12 Thread Emmanuele Bassi
the orientation property is not a boolean one, so no: you cannot use G_BINDING_INVERT_BOOLEAN. ciao, Emmanuele. On 12 February 2015 at 17:58, Konstantin P. wrote: > Can I bind two orientations of 2 GTK objects to be opposite via using > G_BINDING_INVERT_BOOLEAN? > Or I need to use g_object_bind

Re: compile glib success but failure on run-time with every version

2015-02-12 Thread Arnavion
For HexChat, we compile GTK2 and all the dependencies for it with MSVC 2013 - https://github.com/hexchat/gtk-win32 -Arnav On Thu, Feb 12, 2015 at 7:19 AM, codekiddy wrote: > Hello again, I would just like to say that "I think" I found a problem in > gio.dll > > I Created created a test project

Please help with GtkFlowBox

2015-02-12 Thread Rafał Lużyński
Hello everybody, This is my first post to this list so I'm sorry for any mistake I could make. I like how GtkFlowBox arranges the items inside and I'd like to use it as a container for a set of GtkButtons. The placement of the buttons is fine but I don't like the way that the keyboard focus moves

Re: compile glib success but failure on run-time with every version

2015-02-12 Thread codekiddy
Hi arnavion, I have HexChat website opened in my webbrowser all the time while compiling, you have a nice graph! unfortunatelly what I want to achieve is to compile most recent packages by using VS 2013 solutions *only*... can you tell why don't you compile gtk3? why gtk2? did you try and/or what p