Re: [wxlua-users] Notification and Message

2007-01-05 Thread Andre
Maybe I should be clearer. this is the code: editor:StartRecord() frame:Connect(wx.wxID_ANY, wx.wxEVT_STC_MACRORECORD, function (event) table.insert(recorded, {event.Message, event.WParam, event.LParam}) end) the problem is that for the SCI_REPLACESEL notification scintilla send a character back

Re: [wxlua-users] Notification and Message

2007-01-05 Thread Andre
John Labenski <[EMAIL PROTECTED]> writes: > > in NotifyMacroRecord in editor.cxx > > SCI_REPLACESEL sends a pointer instead of the string. > > In all cases a single character is being transferred but it is stored in a > > string. > > I am not familiar enough with the code to propose a change so I

Re: [wxlua-users] Notification and Message

2007-01-04 Thread John Labenski
On 1/1/07, Andre <[EMAIL PROTECTED]> wrote: > > Scintilla expect string for some of its messages this list may not be > complete but since the code is emitted it is not important. > SCI_SETTEXT > SCI_COPYTEXT > SCI_REPLACESEL > SCI_REPLACETARGET > SCI_REPLACETARGETRE > SCI_SEARCHINTARGET > SCI_ADDT

Re: [wxlua-users] Notification and Message

2007-01-02 Thread Andre
Andre <[EMAIL PROTECTED]> writes: > in NotifyMacroRecord in editor.cxx > SCI_REPLACESEL sends a pointer instead of the string. > In all cases a single character is being transferred but it is stored in a > string. > I am not familiar enough with the code to propose a change so I will change > th

[wxlua-users] Notification and Message

2007-01-01 Thread Andre
Scintilla expect string for some of its messages this list may not be complete but since the code is emitted it is not important. SCI_SETTEXT SCI_COPYTEXT SCI_REPLACESEL SCI_REPLACETARGET SCI_REPLACETARGETRE SCI_SEARCHINTARGET SCI_ADDTEXT SCI_ADDSTYLEDTEXT SCI_INSERTTEXT SCI_APPENDTEXT SCI_S