| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.txt | 2016-12-05 | 1.9 kB | |
| gtk+-3.16.6-mingw32-base.zip | 2016-05-13 | 20.4 MB | |
| gtk+-3.16.6-mingw32-program.zip | 2016-05-13 | 1.2 MB | |
| gtk+-3.16.6-mingw32-locale.zip | 2016-05-13 | 11.5 MB | |
| Totals: 4 Items | 33.1 MB | 2 | |
GTK+ 3.16.6 Windows 32-bit binary
These files come from MinGW.
gtk+-3.16.6-mingw32-base.zip
This package contain files for GTK+ application.
You can delete unused icon size in share\icons\Adwaita to reduce package size.
gtk+-3.16.6-mingw32-program.zip
Demo and utility programs. This package need gtk+-3.16.6-mingw32-base.zip
gtk+-3.16.6-mingw32-locale.zip
This package contain translation files for gtk+-3.16.6-mingw32-base.zip
==================================
If you want pack GTK files from MinGW, you may need below information.
Reference page:
http://www.tarnyko.net/repo/gtk3_build_system/tutorial/gtk3_tutorial.htm
----------------------------------
Replace absolute path to relative path in below files:
lib\gtk-3.0\immodules.cache
lib\gdk-pixbuf-2.0\2.10.0\loaders.cache
----------------------------------
SVG icons disappear - open file "lib\gdk-pixbuf-2.0\2.10.0\loaders.cache"
edit path to "../lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.dll"
----------------------------------
If you got error message "No GSettings schemas are installed on the system",
run below command in installed path:
bin\glib-compile-schemas.exe share\glib-2.0\schemas
----------------------------------
If you want to build GTK+ icon cache,
run below command in installed path:
bin\gtk-update-icon-cache-3.0.exe share\icons\Adwaita
bin\gtk-update-icon-cache-3.0.exe share\icons\hicolor
----------------------------------
set FileChooser to list directories first,
run below command in installed path:
bin\gsettings set org.gtk.Settings.FileChooser sort-directories-first true
// If this method not work, you should call GSettings API in program
// to set "sort-directories-first" in "org.gtk.Settings.FileChooser"
gset = g_settings_new ("org.gtk.Settings.FileChooser");
g_settings_set_boolean (gset, "sort-directories-first", TRUE);