Re: how to use GTK+ on Mingw&msys? what i need to begin with GTK+?

2006-02-07 Thread Goran Rakić
First of all, GTK+ is cross-platform GUI library. So, when you write your program (with some GTK functions calls in it) you can compile it for MS Windows, Linux,... With GTK+ runtime installed (shared libraries) on the system you can run your application on that system. To compile your so

Re: containers for containers

2006-01-26 Thread Goran Rakić
Why not use GtkFixed as base container? Goran On 26.01.2006., at 19.07, Ephrem Boudonnet wrote: Vivien Malerba wrote: Thanks for your help, in fact my problem is that I need to find a container class that could contain others containers of the same type AND which positions and sizes cou

Re: gtk win32 and env variables

2005-11-05 Thread Goran Rakić
On 05.11.2005., at 16.09, David Necas (Yeti) wrote: g_win32_get_package_installation_directory I did not know for this function. It is nice to have it around. Goran Rakic ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mai

Re: gtk win32 and env variables

2005-11-05 Thread Goran Rakić
Put this first: #ifdef WIN32 # include # include #endif And latter in your code... #ifdef WIN32 // Fallback value: data in working dir char dbpath[MAX_PATH]="data"; HKEY hkResult; DWORD DataType; DWORD DataCount = MAX_PATH; // Open registry key if (RegOpen