Split wxWebHistoryItem headers out into separate files for each backend. This will allow us to dramatically reduce the amount of code in the GTK history implementation and implement it and OSX history support more cleanly.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68473 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-07-31 14:06:33 +00:00
parent 9b4670e5bc
commit eafdb19c44
5 changed files with 109 additions and 14 deletions

View File

@@ -3361,9 +3361,18 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
</set>
<set var="WEB_HDR_PLATFORM" hints="files">
<if cond="TOOLKIT=='MSW'">wx/msw/webview_ie.h</if>
<if cond="PLATFORM_UNIX=='1'">wx/gtk/webview_webkit.h</if>
<if cond="PLATFORM_MACOSX=='1'">wx/osx/webview_webkit.h</if>
<if cond="TOOLKIT=='MSW'">
wx/msw/webhistoryitem_ie.h
wx/msw/webview_ie.h
</if>
<if cond="PLATFORM_UNIX=='1'">
wx/gtk/webhistoryitem_webkit.h
wx/gtk/webview_webkit.h
</if>
<if cond="PLATFORM_MACOSX=='1'">
wx/osx/webhistoryitem_webkit.h
wx/osx/webview_webkit.h
</if>
</set>
<set var="WEB_HDR" hints="files">
$(WEB_HDR_PLATFORM)