|
[wxlua-users] How to provide wxApp::MacNewFile, wxApp::MacOpenFiles,
and wxApp:MacReopenApp methods?
From: Paul K <pau...@ya...> - 2013-12-24 17:38:37
|
Hi John, I'm looking for a way to provide MacNewFile, MacOpenFiles, and MacReopenApp methods (http://docs.wxwidgets.org/trunk/classwx_app.html), but can't figure out how to do this in wxlua and don't see this in any of the examples. Can these be used somehow or do they need to be added to the bindings? Paul. |
|
From: Paul K <pau...@ya...> - 2014-01-22 18:57:29
|
Hi John, > I'm looking for a way to provide MacNewFile, MacOpenFiles, and > MacReopenApp methods > (http://docs.wxwidgets.org/trunk/classwx_app.html), but can't figure > out how to do this in wxlua and don't see this in any of the examples. Can these methods be used with the current version of wxlua or do they need to be added first? I also asked about some other things earlier: wxRegKey, CallAfter (http://wxwidgets.blogspot.com/2013/01/about-benefits-of-procrastination.html) and wxSTC:GetLibraryVersionInfo calls. wxRegKey is a low priority for me as I'll probably be using winapi that provides the same functionality. Paul. On Tue, Dec 24, 2013 at 9:38 AM, Paul K <pau...@ya...> wrote: > Hi John, > > I'm looking for a way to provide MacNewFile, MacOpenFiles, and > MacReopenApp methods > (http://docs.wxwidgets.org/trunk/classwx_app.html), but can't figure > out how to do this in wxlua and don't see this in any of the examples. > > Can these be used somehow or do they need to be added to the bindings? > > Paul. |
|
From: John L. <jla...@gm...> - 2014-01-28 05:47:29
|
On Wed, Jan 22, 2014 at 1:57 PM, Paul K <pau...@ya...> wrote: > Hi John, > > > I'm looking for a way to provide MacNewFile, MacOpenFiles, and > > MacReopenApp methods > > (http://docs.wxwidgets.org/trunk/classwx_app.html), but can't figure > > out how to do this in wxlua and don't see this in any of the examples. > > Can these methods be used with the current version of wxlua or do they > need to be added first? > > They need to be added, it should be doable. I also asked about some other things earlier: wxRegKey, CallAfter > ( > http://wxwidgets.blogspot.com/2013/01/about-benefits-of-procrastination.html > ) > and wxSTC:GetLibraryVersionInfo calls. wxRegKey is a low priority for > me as I'll probably be using winapi that provides the same > functionality. > I'll try to remember, these. I'm glad you have an alternative for wxRegKey, I would rather not add it. CallAfter() may be tricky. Regards, John |
|
From: Paul K <pau...@ya...> - 2014-01-28 07:35:12
|
Hi John, >> I'm looking for a way to provide MacNewFile, MacOpenFiles, and >> MacReopenApp methods > They need to be added, it should be doable. This would be great; thank you! > I'll try to remember, these. I'm glad you have an alternative for wxRegKey, I would > rather not add it. CallAfter() may be tricky. Please don't worry about these then. Paul |
|
From: Paul K <pau...@ya...> - 2014-03-17 05:00:24
|
Hi John, >> > I'm looking for a way to provide MacNewFile, MacOpenFiles, and >> > MacReopenApp methods >> > (http://docs.wxwidgets.org/trunk/classwx_app.html), but can't figure >> > out how to do this in wxlua and don't see this in any of the examples. > > They need to be added, it should be doable. Do you have plans to include these methods? I'm building the current version of wxwidgets and would like to include these Mac* methods and WebView support if available. Thank you! Paul |
|
From: John L. <jla...@gm...> - 2014-03-28 14:55:16
|
On Mon, Mar 17, 2014 at 12:36 AM, Paul K <pau...@ya...> wrote: > Hi John, > > >> > I'm looking for a way to provide MacNewFile, MacOpenFiles, and > >> > MacReopenApp methods > >> > (http://docs.wxwidgets.org/trunk/classwx_app.html), but can't figure > >> > out how to do this in wxlua and don't see this in any of the examples. > > > > They need to be added, it should be doable. > > Do you have plans to include these methods? I'm building the current > version of wxwidgets and would like to include these Mac* methods and > My antique mac is out of commission so I can't do any mac stuff right now, but I do plan to replace the hard drive drive.. > WebView support if available. Thank you! > > I added wxWebView support a while ago, but forgot to press send on my email. Let me know if it works for you. I just did the simplest test of creating a frame, a webview child and loaded a page. -John |
|
From: Joshua J. <jj...@wo...> - 2014-03-28 19:12:02
|
----- Original Message ----- From: John Labenski Date: 3/28/2014 8:55 AM > I added wxWebView support a while ago, but forgot to press send on my > email. Let me know if it works for you. I just did the simplest test > of creating a frame, a webview child and loaded a page. Awesome. Can you add your sample to the wxLua distribution for easy out of box testing? Thanks! Josh |
|
From: John L. <jla...@gm...> - 2014-04-02 04:40:22
|
On Fri, Mar 28, 2014 at 3:11 PM, Joshua Jensen <jj...@wo...>wrote: > ----- Original Message ----- > From: John Labenski > Date: 3/28/2014 8:55 AM > > I added wxWebView support a while ago, but forgot to press send on my > > email. Let me know if it works for you. I just did the simplest test > > of creating a frame, a webview child and loaded a page. > Awesome. Can you add your sample to the wxLua distribution for easy out > of box testing? > > I've added it to the controls sample so you can see what events are emitted and when, but this is all the code it takes to get a browser window. f = wx.wxFrame(wx.NULL, -1, "wxWebView!") w = wxwebview.wxWebView.New(f, -1, "http://wxlua.sourceforge.net") f:Show() -John |