From: Paul K <pau...@ya...> - 2013-05-14 20:34:20
|
Hi Milind, > I just started using the studio and it is very good. Only thing is when I go into debug it executes my program using lua. I like to execute it using wxlua. How can I configure that? You can change the executable that is used to run/debug the scripts. The example is here (https://github.com/pkulchenko/ZeroBraneStudio/blob/master/cfg/user-sample.lua#L44) and instruction are here (http://studio.zerobrane.com/doc-configuration.html) > Also is the UI done in wxlua? If yes how do you implement the main text with down with different colors, breakpoint mark and line numbers? Yes, everything is done in wxlua. The editing component is Scintilla, so all I need to do is to configure it to display proper margins, markers, and set colors I want. This is mostly done in src/editor/editor.lua (CreateEditor) and src/editor/style.lua (where all the style information is processed). Paul. On Tue, May 14, 2013 at 12:42 PM, Milind Gupta <mil...@gm...> wrote: > Hi Paul, > I just started using the studio and it is very good. Only thing is > when I go into debug it executes my program using lua. I like to execute it > using wxlua. How can I configure that? > Also is the UI done in wxlua? If yes how do you implement the main > text with down with different colors, breakpoint mark and line numbers? > > Thanks, > Milind > > > On Fri, May 3, 2013 at 9:41 AM, Paul K <pau...@ya...> wrote: >> >> Hi All, >> >> Does anyone have a simple drag and drop example that works with wxlua? >> I've seen an example in this ticket >> >> (http://sourceforge.net/tracker/index.php?func=detail&aid=3060958&group_id=140042&atid=745327), >> but can't get it to work. It seems like I'm missing SetDropTarget >> call, but I can't figure out what to pass it as a parameter. According >> to the docs >> (http://docs.wxwidgets.org/2.8/wx_wxwindow.html#wxwindowsetdroptarget) >> it expects wxDropTarget, but wx.wxDropTarget is an empty table for me, >> so I'm not sure how to instantiate it. >> >> I need to implement it for wxTreeCtrl and wxStyledTextCtrl, but any >> working example will help. Thank you. >> >> Paul. >> >> >> ------------------------------------------------------------------------------ >> Get 100% visibility into Java/.NET code with AppDynamics Lite >> It's a free troubleshooting tool designed for production >> Get down to code-level detail for bottlenecks, with <2% overhead. >> Download for free and get started troubleshooting in minutes. >> http://p.sf.net/sfu/appdyn_d2d_ap2 >> _______________________________________________ >> wxlua-users mailing list >> wxl...@li... >> https://lists.sourceforge.net/lists/listinfo/wxlua-users > > > > ------------------------------------------------------------------------------ > AlienVault Unified Security Management (USM) platform delivers complete > security visibility with the essential security capabilities. Easily and > efficiently configure, manage, and operate all of your security controls > from a single console and one unified framework. Download a free trial. > http://p.sf.net/sfu/alienvault_d2d > _______________________________________________ > wxlua-users mailing list > wxl...@li... > https://lists.sourceforge.net/lists/listinfo/wxlua-users > |