diff --git a/docs/changes.txt b/docs/changes.txt index bae06e4442..be1157880a 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -686,6 +686,7 @@ All (GUI): wxGTK: - Allow building wxGTK3 with Broadway backend (Kolya Kosenko). +- Further improvements to wxGTK/MSW port (Kolya Kosenko). - Provide native implementation of wxNotificationMessage using libnotify. - Generate clipboard events for wxComboBox and not only wxTextCtrl. - Improve drag-and-drop of URLs. diff --git a/docs/msw/gtk.txt b/docs/msw/gtk.txt new file mode 100644 index 0000000000..8dfac942ff --- /dev/null +++ b/docs/msw/gtk.txt @@ -0,0 +1,97 @@ +Building wxGTK port with Win32 GDK backend +------------------------------------------ + +GTK+ widget toolkit has multiple GDK backends and one of them is Win32. +It is a wrapper around Windows API. + +See http://www.gtk.org/download/win32.php + +These notes don't consider building wxGTK with X11 backend under Windows. + +Building steps: + +1. wxGTK/Win32 build is similar to wxMSW one and you should have configured +and be able to build wxWidgets as described in docs/msw/install.txt + +2. wxGTK/Win32 is disabled by default in wxWidgets, you need to enable it +in bakefiles manually. TOOLKIT variable should not be a constantly MSW +for required bakefile formats. + + +diff build/bakefiles/config.bkl build/bakefiles/config.bkl +--- build/bakefiles/config.bkl ++++ build/bakefiles/config.bkl +@@ -67,9 +67,9 @@ + + + +- ++ + + +