146 lines
4.3 KiB
Ruby
146 lines
4.3 KiB
Ruby
class Wxmac < Formula
|
|
desc "wxWidgets, a cross-platform C++ GUI toolkit (for OS X)"
|
|
homepage "https://www.wxwidgets.org"
|
|
url "https://downloads.sourceforge.net/project/wxwindows/3.0.2/wxWidgets-3.0.2.tar.bz2"
|
|
sha256 "346879dc554f3ab8d6da2704f651ecb504a22e9d31c17ef5449b129ed711585d"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "a234b56319de1f2ade00334883b3455f832fb64e540abb9e85e55c6f15bc5bb0" => :el_capitan
|
|
sha256 "73e8ae2765b69a0c5023bbc001b2b026eb739e32548c044743e8862ad802be76" => :yosemite
|
|
sha256 "8d980f0b81406a4116a43d086971b927f614716317a678fcbb3ab0eff39d0bc7" => :mavericks
|
|
end
|
|
|
|
option :universal
|
|
option "with-stl", "use standard C++ classes for everything"
|
|
option "with-static", "build static libraries"
|
|
|
|
depends_on "jpeg"
|
|
depends_on "libpng"
|
|
depends_on "libtiff"
|
|
|
|
# Various fixes related to Yosemite. Revisit in next stable release.
|
|
# Please keep an eye on http://trac.wxwidgets.org/ticket/16329 as well
|
|
# Theoretically the above linked patch should still be needed, but it isn't. Try to find out why.
|
|
patch :DATA
|
|
|
|
def install
|
|
# need to set with-macosx-version-min to avoid configure defaulting to 10.5
|
|
args = [
|
|
"--disable-debug",
|
|
"--prefix=#{prefix}",
|
|
"--enable-unicode",
|
|
"--enable-std_string",
|
|
"--enable-display",
|
|
"--with-opengl",
|
|
"--with-osx_cocoa",
|
|
"--with-libjpeg",
|
|
"--with-libtiff",
|
|
# Otherwise, even in superenv, the internal libtiff can pick
|
|
# up on a nonuniversal xz and fail
|
|
# https://github.com/Homebrew/homebrew/issues/22732
|
|
"--without-liblzma",
|
|
"--with-libpng",
|
|
"--with-zlib",
|
|
"--enable-dnd",
|
|
"--enable-clipboard",
|
|
"--enable-webkit",
|
|
"--enable-svg",
|
|
# On 64-bit, enabling mediactrl leads to wxconfig trying to pull
|
|
# in a non-existent 64 bit QuickTime framework. This is submitted
|
|
# upstream and will eventually be fixed, but for now...
|
|
MacOS.prefer_64_bit? ? "--disable-mediactrl" : "--enable-mediactrl",
|
|
"--enable-graphics_ctx",
|
|
"--enable-controls",
|
|
"--enable-dataviewctrl",
|
|
"--with-expat",
|
|
"--disable-precomp-headers",
|
|
"--with-macosx-version-min=#{MacOS.version}",
|
|
# This is the default option, but be explicit
|
|
"--disable-monolithic",
|
|
]
|
|
|
|
if build.universal?
|
|
ENV.universal_binary
|
|
args << "--enable-universal_binary=#{Hardware::CPU.universal_archs.join(",")}"
|
|
end
|
|
|
|
args << "--enable-stl" if build.with? "stl"
|
|
|
|
if build.with? "static"
|
|
args << "--disable-shared"
|
|
else
|
|
args << "--enable-shared"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system bin/"wx-config", "--libs"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
|
|
diff --git a/include/wx/defs.h b/include/wx/defs.h
|
|
index 397ddd7..d128083 100644
|
|
--- a/include/wx/defs.h
|
|
+++ b/include/wx/defs.h
|
|
@@ -3169,12 +3169,20 @@ DECLARE_WXCOCOA_OBJC_CLASS(UIImage);
|
|
DECLARE_WXCOCOA_OBJC_CLASS(UIEvent);
|
|
DECLARE_WXCOCOA_OBJC_CLASS(NSSet);
|
|
DECLARE_WXCOCOA_OBJC_CLASS(EAGLContext);
|
|
+DECLARE_WXCOCOA_OBJC_CLASS(UIWebView);
|
|
|
|
typedef WX_UIWindow WXWindow;
|
|
typedef WX_UIView WXWidget;
|
|
typedef WX_EAGLContext WXGLContext;
|
|
typedef WX_NSString* WXGLPixelFormat;
|
|
|
|
+typedef WX_UIWebView OSXWebViewPtr;
|
|
+
|
|
+#endif
|
|
+
|
|
+#if wxOSX_USE_COCOA_OR_CARBON
|
|
+DECLARE_WXCOCOA_OBJC_CLASS(WebView);
|
|
+typedef WX_WebView OSXWebViewPtr;
|
|
#endif
|
|
|
|
#endif /* __WXMAC__ */
|
|
diff --git a/include/wx/html/webkit.h b/include/wx/html/webkit.h
|
|
index 8700367..f805099 100644
|
|
--- a/include/wx/html/webkit.h
|
|
+++ b/include/wx/html/webkit.h
|
|
@@ -18,7 +18,6 @@
|
|
#endif
|
|
|
|
#include "wx/control.h"
|
|
-DECLARE_WXCOCOA_OBJC_CLASS(WebView);
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Web Kit Control
|
|
@@ -107,7 +106,7 @@ private:
|
|
wxString m_currentURL;
|
|
wxString m_pageTitle;
|
|
|
|
- WX_WebView m_webView;
|
|
+ OSXWebViewPtr m_webView;
|
|
|
|
// we may use this later to setup our own mouse events,
|
|
// so leave it in for now.
|
|
diff --git a/include/wx/osx/webview_webkit.h b/include/wx/osx/webview_webkit.h
|
|
index 803f8b0..438e532 100644
|
|
--- a/include/wx/osx/webview_webkit.h
|
|
+++ b/include/wx/osx/webview_webkit.h
|
|
@@ -158,7 +158,7 @@ private:
|
|
wxWindowID m_windowID;
|
|
wxString m_pageTitle;
|
|
|
|
- wxObjCID m_webView;
|
|
+ OSXWebViewPtr m_webView;
|
|
|
|
// we may use this later to setup our own mouse events,
|
|
// so leave it in for now.
|