You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(60) |
Jul
(35) |
Aug
(32) |
Sep
(5) |
Oct
(5) |
Nov
(58) |
Dec
(34) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(114) |
Feb
(184) |
Mar
(153) |
Apr
(90) |
May
(153) |
Jun
(59) |
Jul
(24) |
Aug
(43) |
Sep
(17) |
Oct
(34) |
Nov
(11) |
Dec
(204) |
| 2007 |
Jan
(84) |
Feb
(119) |
Mar
(38) |
Apr
(28) |
May
(52) |
Jun
(105) |
Jul
(64) |
Aug
(67) |
Sep
(14) |
Oct
(3) |
Nov
(28) |
Dec
(55) |
| 2008 |
Jan
(228) |
Feb
(55) |
Mar
(30) |
Apr
(30) |
May
(15) |
Jun
(20) |
Jul
(12) |
Aug
(3) |
Sep
(13) |
Oct
(54) |
Nov
(35) |
Dec
(35) |
| 2009 |
Jan
(19) |
Feb
(20) |
Mar
(34) |
Apr
(4) |
May
(60) |
Jun
(25) |
Jul
(16) |
Aug
(51) |
Sep
(19) |
Oct
(62) |
Nov
(21) |
Dec
(12) |
| 2010 |
Jan
(1) |
Feb
|
Mar
(4) |
Apr
(12) |
May
(23) |
Jun
(13) |
Jul
(1) |
Aug
(40) |
Sep
(18) |
Oct
(21) |
Nov
(26) |
Dec
(34) |
| 2011 |
Jan
(17) |
Feb
(23) |
Mar
(1) |
Apr
(10) |
May
(1) |
Jun
(5) |
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(43) |
| 2012 |
Jan
(5) |
Feb
(19) |
Mar
(6) |
Apr
(24) |
May
(39) |
Jun
(83) |
Jul
(29) |
Aug
(36) |
Sep
(64) |
Oct
(55) |
Nov
(12) |
Dec
(7) |
| 2013 |
Jan
(17) |
Feb
(10) |
Mar
(37) |
Apr
(27) |
May
(13) |
Jun
(9) |
Jul
(7) |
Aug
(61) |
Sep
(23) |
Oct
(23) |
Nov
(30) |
Dec
(16) |
| 2014 |
Jan
(23) |
Feb
(13) |
Mar
(9) |
Apr
(17) |
May
(2) |
Jun
(11) |
Jul
(2) |
Aug
|
Sep
(9) |
Oct
(24) |
Nov
(2) |
Dec
(14) |
| 2015 |
Jan
(6) |
Feb
(4) |
Mar
(17) |
Apr
|
May
(7) |
Jun
(3) |
Jul
|
Aug
|
Sep
(2) |
Oct
(21) |
Nov
(6) |
Dec
(2) |
| 2016 |
Jan
(4) |
Feb
(2) |
Mar
(7) |
Apr
(3) |
May
(11) |
Jun
(6) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(4) |
Dec
|
| 2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(8) |
Nov
|
Dec
|
| 2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Andre <ar...@ki...> - 2007-01-06 16:20:47
|
John Labenski <jlabenski@...> writes: > I'm not sure I understand, you have compiled wxWidgets for debug, but > when you select "Debug Multilib" for wxLua (if you're using Visual > Studio?) you get debug unicode? > > If you're using nmake.exe you can look at the top of > wxLua/build/msw/makefile.vc and override these settings on the command > line. If you want unicode, for example, you would do this. > > $nmake.exe UNICODE=1 -f makefile.vc > > > Am I the only one with this problem? > > I think so, I use Visual Studo 2005 (eg. 7 IIRC) without a problem. > > Regards, > John Labenski > This is the batch I use with the current version of wxWindows and wxlua I have made absolutely no change to any files. cd C:\Programs\wxWindows\ del /s *.pdb del /s *.ncb rd /qs lib\ :: init either vc6 or vc7 call %vc cd C:\Programs\wxWindows\build\msw\ nmake clean nmake -f makefile.vc WX_VERSION=28 cd C:\Programs\wxWindows\contrib\build\stc\ nmake clean nmake -f makefile.vc WX_VERSION=28 cd C:\Programs\wxWindows\wxLua\build\msw\ nmake clean nmake -f makefile.vc WX_VERSION=28 the WX_VERSION=28 should not be necessary but I need it when I compile the previous version. Andre |
|
From: Joseph E. O. <wx...@od...> - 2007-01-05 22:04:06
|
That did the trick! I've attached proof of concept code for embedding a wxGLCanvas within a wxFrame. It uses luaglut for the GL calls. I have not quite yet figured out how to properly handle idle events, as the GL draw loop hogs UI control. Suggestions welcome. ;) Thanks, /joeyo On Wed, Jan 03, 2007 at 12:56:15PM -0500, John Labenski wrote: > It looks like we need to add the gl lib to the configure checks eventually. > > For now you use the environment variable before running configure. > $export LDFLAGS=-lwx_gtk2_gl-2.8 > > > Regards, > John Labenski > > > On 1/2/07, wx...@od... <wx...@od...> wrote: > > Hi John, et al. > > > > I've tried again with wxLua_Snapshot_2007-01-01 and pasted the errors > > below. > > > > Thanks, > > /joeyo > > > > k2_adv-2.8 -lwx_base_net-2.8 -lwx_base_xml-2.8 -lwx_gtk2_core-2.8 > > -lwx_base-2.8 > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLCanvas::SwapBuffers()' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLCanvas::wxGLCanvas(wxWindow*, wxGLContext const*, int, wxPoint const&, > > wxSize const&, long, wxString const&, int*, wxPalette const&)' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLContext::wxGLContext(wxWindow*, wxGLContext const*)' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLContext::SetCurrent(wxGLCanvas const&) const' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLCanvas::SetCurrent(wxGLContext const&) const' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLContext::ms_classInfo' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLCanvas::ms_classInfo' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLCanvas::SetColour(char const*)' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLCanvas::wxGLCanvas(wxWindow*, wxGLCanvas const*, int, wxPoint const&, > > wxSize const&, long, wxString const&, int*, wxPalette const&)' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLCanvas::SetCurrent()' > > ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to > > `wxGLCanvas::wxGLCanvas(wxWindow*, int, wxPoint const&, wxSize const&, > > long, wxString const&, int*, wxPalette const&)' > > collect2: ld returned 1 exit status > > make[1]: *** [../bin/wxlua] Error 1 > > > > > > On Sat, Dec 23, 2006 at 01:19:12AM -0500, John Labenski wrote: > > > I've applied a fix (well, updated it for 2.8) so it compiles now, but > > > I haven't checked if the wxgl lib is linked to or not. Please let us > > > know if it works as expected. > > > > > > Regards, > > > John Labenski > > > > > > > > > On 12/22/06, wx...@od... <wx...@od...> wrote: > > > > Hi, > > > > > > > > I get the following errors when compiling wxLua_Snapshot_2006-12-22 > > > > with wxLUA_USE_wxGLCanvas enabled. I have enabled openGL and GLCanvas in > > > > wxGTK and that part seems to be working. > > > > > > > > Thanks, > > > > /joeyo > > > > > > > > ./wxbind/src/gdi.cpp: In function 'int wxLua_wxRect_Inside(lua_State*)': > > > > ./wxbind/src/gdi.cpp:806: warning: 'Inside' is deprecated (declared at > > > > /usr/local/include/wx-2.8/wx/gdicmn.h:486) > > > > ./wxbind/src/gdi.cpp: In function 'int > > > > wxLua_wxGLCanvas_constructor(lua_State*)': > > > > ./wxbind/src/gdi.cpp:10368: error: invalid conversion from 'const int*' to > > > > 'int*' > > > > ./wxbind/src/gdi.cpp:10368: error: initializing argument 7 of > > > > 'wxGLCanvas::wxGLCanvas(wxWindow*, wxWindowID, const wxPoint&, const wxSize > > > > &, long int, const wxString&, int*, const wxPalette&)' > > > > ./wxbind/src/gdi.cpp: In function 'int > > > > wxLua_wxGLCanvasFromContext_constructor(lua_State*)': > > > > ./wxbind/src/gdi.cpp:10405: error: invalid conversion from 'const int*' to > > > > 'int*' > > > > ./wxbind/src/gdi.cpp:10405: error: initializing argument 8 of > > > > 'wxGLCanvas::wxGLCanvas(wxWindow*, const wxGLContext*, wxWindowID, const wx > > > > Point&, const wxSize&, long int, const wxString&, int*, const wxPalette&)' > > > > ./wxbind/src/gdi.cpp: In function 'int > > > > wxLua_wxGLCanvasFromCCanvas_constructor(lua_State*)': > > > > ./wxbind/src/gdi.cpp:10442: error: invalid conversion from 'const int*' to > > > > 'int*' > > > > ./wxbind/src/gdi.cpp:10442: error: initializing argument 8 of > > > > 'wxGLCanvas::wxGLCanvas(wxWindow*, const wxGLCanvas*, wxWindowID, const wxP > > > > oint&, const wxSize&, long int, const wxString&, int*, const wxPalette&)' > > > > ./wxbind/src/gdi.cpp: In function 'int > > > > wxLua_wxGLContext_constructor(lua_State*)': > > > > ./wxbind/src/gdi.cpp:10565: error: no matching function for call to > > > > 'wxGLContext::wxGLContext(bool&, wxGLCanvas*&, const wxPalette&)' > > > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:39: note: candidates are: > > > > wxGLContext::wxGLContext(wxWindow*, const wxGLContext*) > > > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:37: note: > > > > wxGLContext::wxGLContext(const wxGLContext&) > > > > ./wxbind/src/gdi.cpp: In function 'int > > > > wxLua_wxGLContextOther_constructor(lua_State*)': > > > > ./wxbind/src/gdi.cpp:10592: error: no matching function for call to > > > > 'wxGLContext::wxGLContext(bool&, wxGLCanvas*&, const wxPalette&, const > > > > wxGLContext*&)' > > > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:39: note: candidates are: > > > > wxGLContext::wxGLContext(wxWindow*, const wxGLContext*) > > > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:37: note: > > > > wxGLContext::wxGLContext(const wxGLContext&) > > > > ./wxbind/src/gdi.cpp: In function 'int > > > > wxLua_wxGLContext_GetWindow(lua_State*)': > > > > ./wxbind/src/gdi.cpp:10613: error: 'class wxGLContext' has no member named > > > > 'GetWindow' > > > > ./wxbind/src/gdi.cpp: In function 'int > > > > wxLua_wxGLContext_SetCurrent(lua_State*)': > > > > ./wxbind/src/gdi.cpp:10628: error: no matching function for call to > > > > 'wxGLContext::SetCurrent()' > > > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:44: note: candidates are: void > > > > wxGLContext::SetCurrent(const wxGLCanvas&) const > > > > ./wxbind/src/gdi.cpp: In function 'int > > > > wxLua_wxGLContext_SetColour(lua_State*)': > > > > ./wxbind/src/gdi.cpp:10643: error: 'class wxGLContext' has no member named > > > > 'SetColour' > > > > ./wxbind/src/gdi.cpp: In function 'int > > > > wxLua_wxGLContext_SwapBuffers(lua_State*)': > > > > ./wxbind/src/gdi.cpp:10656: error: 'class wxGLContext' has no member named > > > > 'SwapBuffers' > > > > make[1]: *** [wxbind_dll_gdi.o] Error 1 > > > > > > > > ------------------------------------------------------------------------- > > > > Take Surveys. Earn Cash. Influence the Future of IT > > > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > > > opinions on IT & business topics through brief surveys - and earn cash > > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > > _______________________________________________ > > > > wxlua-users mailing list > > > > wxl...@li... > > > > https://lists.sourceforge.net/lists/listinfo/wxlua-users > > > > > > > > > > ------------------------------------------------------------------------- > > > Take Surveys. Earn Cash. Influence the Future of IT > > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > > opinions on IT & business topics through brief surveys - and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > > _______________________________________________ > > > wxlua-users mailing list > > > wxl...@li... > > > https://lists.sourceforge.net/lists/listinfo/wxlua-users > > > > -- > > pub 1024D/B663781B 2001-11-13 Joey O'Doherty <joey(at)odoherty(dot)net> > > Key fingerprint = F76B 9ACA 4197 C707 6E4D 2B78 E430 101A B663 781B > > > > The sad fact is that "national security" has become the root password > > to the Constitution. -- Phil Karn > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > opinions on IT & business topics through brief surveys - and earn cash > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > wxlua-users mailing list > > wxl...@li... > > https://lists.sourceforge.net/lists/listinfo/wxlua-users > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > wxlua-users mailing list > wxl...@li... > https://lists.sourceforge.net/lists/listinfo/wxlua-users -- pub 1024D/B663781B 2001-11-13 Joey O'Doherty <joey(at)odoherty(dot)net> Key fingerprint = F76B 9ACA 4197 C707 6E4D 2B78 E430 101A B663 781B The sad fact is that "national security" has become the root password to the Constitution. -- Phil Karn |
|
From: John L. <jla...@gm...> - 2007-01-05 20:32:01
|
On 1/5/07, Andre <ar...@ki...> wrote:
>
> On window with a default make v6 or v7 wxlua fail with heap error at load time
> and wxluacan fail with a heap error on exit.
1) I'm guessing you mean MS Windows with Visual Studio 6 or 7?
2) Are you using the project files or perhaps nmake.exe?
3) What version of wxWidgets are you using and how did you compile it as well?
> I have tried to use the project to compile but the libraries required are for ud
> instead of d which are the unicode version. They do not seem to be compiled.
I'm not sure I understand, you have compiled wxWidgets for debug, but
when you select "Debug Multilib" for wxLua (if you're using Visual
Studio?) you get debug unicode?
If you're using nmake.exe you can look at the top of
wxLua/build/msw/makefile.vc and override these settings on the command
line. If you want unicode, for example, you would do this.
$nmake.exe UNICODE=1 -f makefile.vc
> Am I the only one with this problem?
I think so, I use Visual Studo 2005 (eg. 7 IIRC) without a problem.
Regards,
John Labenski
|
|
From: Andre <ar...@ki...> - 2007-01-05 20:05:26
|
On window with a default make v6 or v7 wxlua fail with heap error at load time and wxluacan fail with a heap error on exit. I have tried to use the project to compile but the libraries required are for ud instead of d which are the unicode version. They do not seem to be compiled. Am I the only one with this problem? I can try to figure this out but only if this is not allready looked after. I have spend some time trying to make this work but I am not getting anywhere. Just too much new code all at one time. Andre |
|
From: Andre <ar...@ki...> - 2007-01-05 13:28:19
|
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, but the event contains the pointer to the character instead of
the pointer.
I could see in the code where this could be changed but the character must be
transformed into a LUA string I could not figure out how to do this.
So I change Scintilla to send back a the value instead of the pointer and got
the code working. But this not a reasonnable solution.
Hope this help
Andre
|
|
From: Andre <ar...@ki...> - 2007-01-05 11:06:15
|
John Labenski <jlabenski@...> 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 > > the code locally an let others do the actual modification. > > Again, just use the function wxStyledTextCtrl::ReplaceSelection(string). > > the documentation for the wxStyledTextCtrl can be viewed here. > http://www.yellowbrain.com/stc/index.html > > Regards, > John Labenski > In the case of the SCI_REPLACESEL notification I have no choice I am on the receiving end. The other one would be nice to fix but I have no problem coding around them. Andre |
|
From: John L. <jla...@gm...> - 2007-01-05 03:53:53
|
I've been working on these two patches. I have integrated the first
one and tweaked it a little, but I wonder why you wanted to combine
the "Start Debug" and "Continue" debugger menu items. In some sense
they are very similar, but I really think they ought to be separate so
that you know to first start the debugging process and then either
step forward or continue. I think it would be confusing to have the
same menu item do two things.
For the second patch, I found some bugs. There's two menu item
separators in the edit menu, the function find combo shows "HHHHHH" if
there's no text, and the find/replace dialog gives an error when
clicked.
lua: Error while running chunk
wxLua: Expected a number for parameter 2, but got 'nil'.
stack traceback:
[C]: in function 'wxDialog'
editor2.wx.lua:1591: in function 'GetFindReplaceDialog'
editor2.wx.lua:1742: in function 'Show'
editor2.wx.lua:1752: in function <editor2.wx.lua:1750>
Anyway, it adds a lot of great features and hopefully I'll be able to
get it done and committed tonight.
Thanks,
John Labenski
On 12/25/06, SourceForge.net <no...@so...> wrote:
> Patches item #1622013, was opened at 2006-12-25 10:17
> Message generated for change (Tracker Item Submitted) made by Item Submitter
> You can respond by visiting:
> https://sourceforge.net/tracker/?func=detail&atid=745326&aid=1622013&group_id=140042
>
> Please note that this message will contain a full copy of the comment thread,
> including the initial issue submission, for this request,
> not just the latest update.
> Category: None
> Group: None
> Status: Open
> Resolution: None
> Priority: 5
> Private: No
> Submitted By: Andre Arpin (andrearpin)
> Assigned to: Nobody/Anonymous (nobody)
> Summary: editor
>
> Initial Comment:
> These changes are to make the editor easier to use to improve it. This should make the editor friendlier.
>
> Fix a numbers of minor problems.
> Added comment toggling
> Added sort
> Added a more complete find/replace
> Added some folding
>
> There is a number of issues that still have to addressed.
|
|
From: Philippe Q. <phi...@gm...> - 2007-01-04 22:03:04
|
ok, thx I will .. I'll try it out next time I boot Linux .. but I now have wxWidgets 2.8 installed ;-) happy new year ;-) On 1/4/07, John Labenski <jla...@gm...> wrote: > > Fixed now. Please report any more problems like these since they're > very hard to test and I'd like to have it "work out of the box" if > possible. I didn't get an error in 2.6 in MSW since the default > include/wx/msw/setup0.h has wxUSE_DISPLAY 0. > > Regards, > John Labenski |
|
From: John L. <jla...@gm...> - 2007-01-04 21:13:05
|
Fixed now. Please report any more problems like these since they're
very hard to test and I'd like to have it "work out of the box" if
possible. I didn't get an error in 2.6 in MSW since the default
include/wx/msw/setup0.h has wxUSE_DISPLAY 0.
Regards,
John Labenski
On 12/30/06, John Labenski <jla...@gm...> wrote:
> On 12/29/06, Philippe Quesnel <phi...@gm...> wrote:
> > On 12/29/06, Francesco Montorsi <f18...@ya...> wrote:
> > > Philippe Quesnel ha scritto:
> > > > sorry, by "official sources 2.8.0.0 <http://2.8.0.0>" I meant the wxLua
> > > > sources.
> > > > (I tried the 'official' / current and then a nightly snapshot of wxLua)
> > > >
> > > > the problem is w. wxWidgets 2.6.3 ...
> > > >
> > > > ok, I did a check on the wxWidgets site :
> > > > GetClientArea was added in 2.7.0 !!
> > > >
> > > > so I guess it means wxLua needs 2.7.0 minimum vs 2.6.3 ?
> > > > is this a mistake ?
> > > yes it is: we should have better tested wxLua against wx2.6.3 before
> > > releasing... sorry.
>
> I test in MSW using Visual Studio 2005 and the CVS 2.6 branch. Dunno
> why I didn't get the error.
>
> Anyway, I will make a permanent fix when I get home in January, but
> the simple fix is to just rem out that line of code in the cpp file
> and just don't use that function in lua.
>
> Regards,
> John Labenski
>
|
|
From: John L. <jla...@gm...> - 2007-01-04 19:40:37
|
On 1/1/07, Andre <ar...@ki...> 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_ADDTEXT > SCI_ADDSTYLEDTEXT > SCI_INSERTTEXT > SCI_APPENDTEXT > SCI_SETWORDCHARS > SCI_SETSTYLINGEX > SCI_TEXTWIDTH > SCI_MARKERDEFINEPIXMAP > SCI_STYLESETFONT > > a change has to be made in wxLua_wxStyledTextCtrl_SendMsg in stc.cpp which is > emitted by genwxbind.lua. I think all of these have an equivalent function which would be more appropriate to use. Is there one of these that does not have a function to go with it? SendMsg is very low level and I have never needed it. eg. SCI_APPENDTEXT == AppendText(string) > also: > 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 > the code locally an let others do the actual modification. Again, just use the function wxStyledTextCtrl::ReplaceSelection(string). the documentation for the wxStyledTextCtrl can be viewed here. http://www.yellowbrain.com/stc/index.html Regards, John Labenski |
|
From: Francesco M. <f18...@ya...> - 2007-01-03 23:17:23
|
John Labenski ha scritto: > It looks like we need to add the gl lib to the configure checks eventually. done but without testing for now. BTW this is yet another check which should go in the wxpresets M4 macros ;) Francesco |
|
From: John L. <jla...@gm...> - 2007-01-03 17:56:19
|
It looks like we need to add the gl lib to the configure checks eventually.
For now you use the environment variable before running configure.
$export LDFLAGS=-lwx_gtk2_gl-2.8
Regards,
John Labenski
On 1/2/07, wx...@od... <wx...@od...> wrote:
> Hi John, et al.
>
> I've tried again with wxLua_Snapshot_2007-01-01 and pasted the errors
> below.
>
> Thanks,
> /joeyo
>
> k2_adv-2.8 -lwx_base_net-2.8 -lwx_base_xml-2.8 -lwx_gtk2_core-2.8
> -lwx_base-2.8
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLCanvas::SwapBuffers()'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLCanvas::wxGLCanvas(wxWindow*, wxGLContext const*, int, wxPoint const&,
> wxSize const&, long, wxString const&, int*, wxPalette const&)'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLContext::wxGLContext(wxWindow*, wxGLContext const*)'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLContext::SetCurrent(wxGLCanvas const&) const'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLCanvas::SetCurrent(wxGLContext const&) const'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLContext::ms_classInfo'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLCanvas::ms_classInfo'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLCanvas::SetColour(char const*)'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLCanvas::wxGLCanvas(wxWindow*, wxGLCanvas const*, int, wxPoint const&,
> wxSize const&, long, wxString const&, int*, wxPalette const&)'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLCanvas::SetCurrent()'
> ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to
> `wxGLCanvas::wxGLCanvas(wxWindow*, int, wxPoint const&, wxSize const&,
> long, wxString const&, int*, wxPalette const&)'
> collect2: ld returned 1 exit status
> make[1]: *** [../bin/wxlua] Error 1
>
>
> On Sat, Dec 23, 2006 at 01:19:12AM -0500, John Labenski wrote:
> > I've applied a fix (well, updated it for 2.8) so it compiles now, but
> > I haven't checked if the wxgl lib is linked to or not. Please let us
> > know if it works as expected.
> >
> > Regards,
> > John Labenski
> >
> >
> > On 12/22/06, wx...@od... <wx...@od...> wrote:
> > > Hi,
> > >
> > > I get the following errors when compiling wxLua_Snapshot_2006-12-22
> > > with wxLUA_USE_wxGLCanvas enabled. I have enabled openGL and GLCanvas in
> > > wxGTK and that part seems to be working.
> > >
> > > Thanks,
> > > /joeyo
> > >
> > > ./wxbind/src/gdi.cpp: In function 'int wxLua_wxRect_Inside(lua_State*)':
> > > ./wxbind/src/gdi.cpp:806: warning: 'Inside' is deprecated (declared at
> > > /usr/local/include/wx-2.8/wx/gdicmn.h:486)
> > > ./wxbind/src/gdi.cpp: In function 'int
> > > wxLua_wxGLCanvas_constructor(lua_State*)':
> > > ./wxbind/src/gdi.cpp:10368: error: invalid conversion from 'const int*' to
> > > 'int*'
> > > ./wxbind/src/gdi.cpp:10368: error: initializing argument 7 of
> > > 'wxGLCanvas::wxGLCanvas(wxWindow*, wxWindowID, const wxPoint&, const wxSize
> > > &, long int, const wxString&, int*, const wxPalette&)'
> > > ./wxbind/src/gdi.cpp: In function 'int
> > > wxLua_wxGLCanvasFromContext_constructor(lua_State*)':
> > > ./wxbind/src/gdi.cpp:10405: error: invalid conversion from 'const int*' to
> > > 'int*'
> > > ./wxbind/src/gdi.cpp:10405: error: initializing argument 8 of
> > > 'wxGLCanvas::wxGLCanvas(wxWindow*, const wxGLContext*, wxWindowID, const wx
> > > Point&, const wxSize&, long int, const wxString&, int*, const wxPalette&)'
> > > ./wxbind/src/gdi.cpp: In function 'int
> > > wxLua_wxGLCanvasFromCCanvas_constructor(lua_State*)':
> > > ./wxbind/src/gdi.cpp:10442: error: invalid conversion from 'const int*' to
> > > 'int*'
> > > ./wxbind/src/gdi.cpp:10442: error: initializing argument 8 of
> > > 'wxGLCanvas::wxGLCanvas(wxWindow*, const wxGLCanvas*, wxWindowID, const wxP
> > > oint&, const wxSize&, long int, const wxString&, int*, const wxPalette&)'
> > > ./wxbind/src/gdi.cpp: In function 'int
> > > wxLua_wxGLContext_constructor(lua_State*)':
> > > ./wxbind/src/gdi.cpp:10565: error: no matching function for call to
> > > 'wxGLContext::wxGLContext(bool&, wxGLCanvas*&, const wxPalette&)'
> > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:39: note: candidates are:
> > > wxGLContext::wxGLContext(wxWindow*, const wxGLContext*)
> > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:37: note:
> > > wxGLContext::wxGLContext(const wxGLContext&)
> > > ./wxbind/src/gdi.cpp: In function 'int
> > > wxLua_wxGLContextOther_constructor(lua_State*)':
> > > ./wxbind/src/gdi.cpp:10592: error: no matching function for call to
> > > 'wxGLContext::wxGLContext(bool&, wxGLCanvas*&, const wxPalette&, const
> > > wxGLContext*&)'
> > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:39: note: candidates are:
> > > wxGLContext::wxGLContext(wxWindow*, const wxGLContext*)
> > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:37: note:
> > > wxGLContext::wxGLContext(const wxGLContext&)
> > > ./wxbind/src/gdi.cpp: In function 'int
> > > wxLua_wxGLContext_GetWindow(lua_State*)':
> > > ./wxbind/src/gdi.cpp:10613: error: 'class wxGLContext' has no member named
> > > 'GetWindow'
> > > ./wxbind/src/gdi.cpp: In function 'int
> > > wxLua_wxGLContext_SetCurrent(lua_State*)':
> > > ./wxbind/src/gdi.cpp:10628: error: no matching function for call to
> > > 'wxGLContext::SetCurrent()'
> > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:44: note: candidates are: void
> > > wxGLContext::SetCurrent(const wxGLCanvas&) const
> > > ./wxbind/src/gdi.cpp: In function 'int
> > > wxLua_wxGLContext_SetColour(lua_State*)':
> > > ./wxbind/src/gdi.cpp:10643: error: 'class wxGLContext' has no member named
> > > 'SetColour'
> > > ./wxbind/src/gdi.cpp: In function 'int
> > > wxLua_wxGLContext_SwapBuffers(lua_State*)':
> > > ./wxbind/src/gdi.cpp:10656: error: 'class wxGLContext' has no member named
> > > 'SwapBuffers'
> > > make[1]: *** [wxbind_dll_gdi.o] Error 1
> > >
> > > -------------------------------------------------------------------------
> > > Take Surveys. Earn Cash. Influence the Future of IT
> > > Join SourceForge.net's Techsay panel and you'll get the chance to share your
> > > opinions on IT & business topics through brief surveys - and earn cash
> > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > _______________________________________________
> > > wxlua-users mailing list
> > > wxl...@li...
> > > https://lists.sourceforge.net/lists/listinfo/wxlua-users
> > >
> >
> > -------------------------------------------------------------------------
> > Take Surveys. Earn Cash. Influence the Future of IT
> > Join SourceForge.net's Techsay panel and you'll get the chance to share your
> > opinions on IT & business topics through brief surveys - and earn cash
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > _______________________________________________
> > wxlua-users mailing list
> > wxl...@li...
> > https://lists.sourceforge.net/lists/listinfo/wxlua-users
>
> --
> pub 1024D/B663781B 2001-11-13 Joey O'Doherty <joey(at)odoherty(dot)net>
> Key fingerprint = F76B 9ACA 4197 C707 6E4D 2B78 E430 101A B663 781B
>
> The sad fact is that "national security" has become the root password
> to the Constitution. -- Phil Karn
>
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> wxlua-users mailing list
> wxl...@li...
> https://lists.sourceforge.net/lists/listinfo/wxlua-users
>
|
|
From: <wx...@od...> - 2007-01-02 18:22:21
|
Hi John, et al. I've tried again with wxLua_Snapshot_2007-01-01 and pasted the errors below. Thanks, /joeyo k2_adv-2.8 -lwx_base_net-2.8 -lwx_base_xml-2.8 -lwx_gtk2_core-2.8 -lwx_base-2.8 ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLCanvas::SwapBuffers()' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLCanvas::wxGLCanvas(wxWindow*, wxGLContext const*, int, wxPoint const&, wxSize const&, long, wxString const&, int*, wxPalette const&)' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLContext::wxGLContext(wxWindow*, wxGLContext const*)' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLContext::SetCurrent(wxGLCanvas const&) const' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLCanvas::SetCurrent(wxGLContext const&) const' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLContext::ms_classInfo' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLCanvas::ms_classInfo' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLCanvas::SetColour(char const*)' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLCanvas::wxGLCanvas(wxWindow*, wxGLCanvas const*, int, wxPoint const&, wxSize const&, long, wxString const&, int*, wxPalette const&)' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLCanvas::SetCurrent()' ../lib/libwxlua_gtk2_wxbind-2.8.so: undefined reference to `wxGLCanvas::wxGLCanvas(wxWindow*, int, wxPoint const&, wxSize const&, long, wxString const&, int*, wxPalette const&)' collect2: ld returned 1 exit status make[1]: *** [../bin/wxlua] Error 1 On Sat, Dec 23, 2006 at 01:19:12AM -0500, John Labenski wrote: > I've applied a fix (well, updated it for 2.8) so it compiles now, but > I haven't checked if the wxgl lib is linked to or not. Please let us > know if it works as expected. > > Regards, > John Labenski > > > On 12/22/06, wx...@od... <wx...@od...> wrote: > > Hi, > > > > I get the following errors when compiling wxLua_Snapshot_2006-12-22 > > with wxLUA_USE_wxGLCanvas enabled. I have enabled openGL and GLCanvas in > > wxGTK and that part seems to be working. > > > > Thanks, > > /joeyo > > > > ./wxbind/src/gdi.cpp: In function 'int wxLua_wxRect_Inside(lua_State*)': > > ./wxbind/src/gdi.cpp:806: warning: 'Inside' is deprecated (declared at > > /usr/local/include/wx-2.8/wx/gdicmn.h:486) > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxGLCanvas_constructor(lua_State*)': > > ./wxbind/src/gdi.cpp:10368: error: invalid conversion from 'const int*' to > > 'int*' > > ./wxbind/src/gdi.cpp:10368: error: initializing argument 7 of > > 'wxGLCanvas::wxGLCanvas(wxWindow*, wxWindowID, const wxPoint&, const wxSize > > &, long int, const wxString&, int*, const wxPalette&)' > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxGLCanvasFromContext_constructor(lua_State*)': > > ./wxbind/src/gdi.cpp:10405: error: invalid conversion from 'const int*' to > > 'int*' > > ./wxbind/src/gdi.cpp:10405: error: initializing argument 8 of > > 'wxGLCanvas::wxGLCanvas(wxWindow*, const wxGLContext*, wxWindowID, const wx > > Point&, const wxSize&, long int, const wxString&, int*, const wxPalette&)' > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxGLCanvasFromCCanvas_constructor(lua_State*)': > > ./wxbind/src/gdi.cpp:10442: error: invalid conversion from 'const int*' to > > 'int*' > > ./wxbind/src/gdi.cpp:10442: error: initializing argument 8 of > > 'wxGLCanvas::wxGLCanvas(wxWindow*, const wxGLCanvas*, wxWindowID, const wxP > > oint&, const wxSize&, long int, const wxString&, int*, const wxPalette&)' > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxGLContext_constructor(lua_State*)': > > ./wxbind/src/gdi.cpp:10565: error: no matching function for call to > > 'wxGLContext::wxGLContext(bool&, wxGLCanvas*&, const wxPalette&)' > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:39: note: candidates are: > > wxGLContext::wxGLContext(wxWindow*, const wxGLContext*) > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:37: note: > > wxGLContext::wxGLContext(const wxGLContext&) > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxGLContextOther_constructor(lua_State*)': > > ./wxbind/src/gdi.cpp:10592: error: no matching function for call to > > 'wxGLContext::wxGLContext(bool&, wxGLCanvas*&, const wxPalette&, const > > wxGLContext*&)' > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:39: note: candidates are: > > wxGLContext::wxGLContext(wxWindow*, const wxGLContext*) > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:37: note: > > wxGLContext::wxGLContext(const wxGLContext&) > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxGLContext_GetWindow(lua_State*)': > > ./wxbind/src/gdi.cpp:10613: error: 'class wxGLContext' has no member named > > 'GetWindow' > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxGLContext_SetCurrent(lua_State*)': > > ./wxbind/src/gdi.cpp:10628: error: no matching function for call to > > 'wxGLContext::SetCurrent()' > > /usr/local/include/wx-2.8/wx/gtk/glcanvas.h:44: note: candidates are: void > > wxGLContext::SetCurrent(const wxGLCanvas&) const > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxGLContext_SetColour(lua_State*)': > > ./wxbind/src/gdi.cpp:10643: error: 'class wxGLContext' has no member named > > 'SetColour' > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxGLContext_SwapBuffers(lua_State*)': > > ./wxbind/src/gdi.cpp:10656: error: 'class wxGLContext' has no member named > > 'SwapBuffers' > > make[1]: *** [wxbind_dll_gdi.o] Error 1 > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > opinions on IT & business topics through brief surveys - and earn cash > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > wxlua-users mailing list > > wxl...@li... > > https://lists.sourceforge.net/lists/listinfo/wxlua-users > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > wxlua-users mailing list > wxl...@li... > https://lists.sourceforge.net/lists/listinfo/wxlua-users -- pub 1024D/B663781B 2001-11-13 Joey O'Doherty <joey(at)odoherty(dot)net> Key fingerprint = F76B 9ACA 4197 C707 6E4D 2B78 E430 101A B663 781B The sad fact is that "national security" has become the root password to the Constitution. -- Phil Karn |
|
From: Andre <ar...@ki...> - 2007-01-02 13:20:15
|
Andre <arpin@...> 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 > the code locally an let others do the actual modification. > > Thank you > > Andre > I have made the change in editor.cxx and got record macro to work but obviously the change will have to be made somewhere in wxlua. The value return is always a single character never a string. I took advantage of this for testing. I do not think that any of the other notifications return characters or strings. Andre |
|
From: SourceForge.net <no...@so...> - 2007-01-01 17:24:46
|
Patches item #1625754, was opened at 2007-01-01 12:24 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=745326&aid=1625754&group_id=140042 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Andre Arpin (andrearpin) Assigned to: Nobody/Anonymous (nobody) Summary: editor Initial Comment: fix problems with search replace added folding save / restore position quick search recording ( disable until changes in wxlua ) and various other minor fix the key layout has change and will change in the next version after that hopefully it should stabilize Andre ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=745326&aid=1625754&group_id=140042 |
|
From: Andre <ar...@ki...> - 2007-01-01 13:16:06
|
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_SETWORDCHARS SCI_SETSTYLINGEX SCI_TEXTWIDTH SCI_MARKERDEFINEPIXMAP SCI_STYLESETFONT a change has to be made in wxLua_wxStyledTextCtrl_SendMsg in stc.cpp which is emitted by genwxbind.lua. also: 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 the code locally an let others do the actual modification. Thank you Andre |
|
From: John L. <jla...@gm...> - 2006-12-30 05:16:57
|
On 12/29/06, Philippe Quesnel <phi...@gm...> wrote:
> On 12/29/06, Francesco Montorsi <f18...@ya...> wrote:
> > Philippe Quesnel ha scritto:
> > > sorry, by "official sources 2.8.0.0 <http://2.8.0.0>" I meant the wxLua
> > > sources.
> > > (I tried the 'official' / current and then a nightly snapshot of wxLua)
> > >
> > > the problem is w. wxWidgets 2.6.3 ...
> > >
> > > ok, I did a check on the wxWidgets site :
> > > GetClientArea was added in 2.7.0 !!
> > >
> > > so I guess it means wxLua needs 2.7.0 minimum vs 2.6.3 ?
> > > is this a mistake ?
> > yes it is: we should have better tested wxLua against wx2.6.3 before
> > releasing... sorry.
I test in MSW using Visual Studio 2005 and the CVS 2.6 branch. Dunno
why I didn't get the error.
Anyway, I will make a permanent fix when I get home in January, but
the simple fix is to just rem out that line of code in the cpp file
and just don't use that function in lua.
Regards,
John Labenski
|
|
From: Philippe Q. <phi...@gm...> - 2006-12-30 02:23:08
|
ok, I guess I can keep the 'old' 2.6.3 for the installed apps that need it, and get/build 2.8 for wxLua (and future apps to be compiled w. wxWidgets ;-) thank you Philippe On 12/29/06, Francesco Montorsi <f18...@ya...> wrote: > > Philippe Quesnel ha scritto: > > sorry, by "official sources 2.8.0.0 <http://2.8.0.0>" I meant the wxLua > > sources. > > (I tried the 'official' / current and then a nightly snapshot of wxLua) > > > > the problem is w. wxWidgets 2.6.3 ... > > > > ok, I did a check on the wxWidgets site : > > GetClientArea was added in 2.7.0 !! > > > > so I guess it means wxLua needs 2.7.0 minimum vs 2.6.3 ? > > is this a mistake ? > yes it is: we should have better tested wxLua against wx2.6.3 before > releasing... sorry. > > I'd suggest you to switch to wx 2.8 to solve the problem and also to get > advantage of all new things in 2.8 ;) > > Francesco > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > wxlua-users mailing list > wxl...@li... > https://lists.sourceforge.net/lists/listinfo/wxlua-users > |
|
From: Francesco M. <f18...@ya...> - 2006-12-29 10:07:43
|
Philippe Quesnel ha scritto: > sorry, by "official sources 2.8.0.0 <http://2.8.0.0>" I meant the wxLua > sources. > (I tried the 'official' / current and then a nightly snapshot of wxLua) > > the problem is w. wxWidgets 2.6.3 ... > > ok, I did a check on the wxWidgets site : > GetClientArea was added in 2.7.0 !! > > so I guess it means wxLua needs 2.7.0 minimum vs 2.6.3 ? > is this a mistake ? yes it is: we should have better tested wxLua against wx2.6.3 before releasing... sorry. I'd suggest you to switch to wx 2.8 to solve the problem and also to get advantage of all new things in 2.8 ;) Francesco |
|
From: Philippe Q. <phi...@gm...> - 2006-12-28 23:25:38
|
sorry, by "official sources 2.8.0.0" I meant the wxLua sources. (I tried the 'official' / current and then a nightly snapshot of wxLua) the problem is w. wxWidgets 2.6.3.. ok, I did a check on the wxWidgets site : GetClientArea was added in 2.7.0 !! so I guess it means wxLua needs 2.7.0 minimum vs 2.6.3 ? is this a mistake ? thx Philippe On 12/28/06, klaas.holwerda <kho...@xs...> wrote: > > Philippe Quesnel wrote: > > Hi > > I tied to build wxLua on Linux, wxWidgets 2.6.3.2.1.5 > > (tried both official sources 2.8.0.0 <http://2.8.0.0/> & nightly > > snapshot wxLua_Snapshot_2006-12-27) > > but I get this error : ?? > The error is also on 2.8 or only on 2.6.3 ?? > > > > ./wxbind/src/gdi.cpp: In function 'int > > wxLua_wxDisplay_GetClientArea(lua_State*)': > > ./wxbind/src/gdi.cpp:11278: error: 'class wxDisplay' has no member > > named 'GetClienetArea' > But if i look in my wxWidgets2.8 i see in display.h that GetClientArea > is there? > And here with 2.8 it compiled fine. > But i did see this error some time ago. Maybe a full clean/checkout? > > Klaas > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > wxlua-users mailing list > wxl...@li... > https://lists.sourceforge.net/lists/listinfo/wxlua-users > |
|
From: klaas.holwerda <kho...@xs...> - 2006-12-28 14:38:15
|
Philippe Quesnel wrote: > Hi > I tied to build wxLua on Linux, wxWidgets 2.6.3.2.1.5 > (tried both official sources 2.8.0.0 <http://2.8.0.0/> & nightly > snapshot wxLua_Snapshot_2006-12-27) > but I get this error : ?? The error is also on 2.8 or only on 2.6.3 ?? > > ./wxbind/src/gdi.cpp: In function 'int > wxLua_wxDisplay_GetClientArea(lua_State*)': > ./wxbind/src/gdi.cpp:11278: error: 'class wxDisplay' has no member > named 'GetClienetArea' But if i look in my wxWidgets2.8 i see in display.h that GetClientArea is there? And here with 2.8 it compiled fine. But i did see this error some time ago. Maybe a full clean/checkout? Klaas |
|
From: Philippe Q. <phi...@gm...> - 2006-12-28 11:59:51
|
Hi I tied to build wxLua on Linux, wxWidgets 2.6.3.2.1.5 (tried both official sources 2.8.0.0 & nightly snapshot wxLua_Snapshot_2006-12-27) but I get this error : ?? ./wxbind/src/gdi.cpp: In function 'int wxLua_wxDisplay_GetClientArea(lua_State*)': ./wxbind/src/gdi.cpp:11278: error: 'class wxDisplay' has no member named 'GetClientArea' do I need a newer wxWidgets ? can I keep the 'old' (current) version along w. a newer version ? (I think some installed apps are using wxWidgets, probably would stop working if I replace wxWidgets) thx Philippe |
|
From: Francesco M. <f18...@ya...> - 2006-12-28 10:25:10
|
Ganesh Gunasegaran ha scritto: > Hi, > > In the download page(http://wxlua.sourceforge.net/download.php), the > link to the linux autopackage file is > http://prdownloads.sourceforge.net/wxlua/wxlua-2.8.0.0.x86.package?download > instead of > http://prdownloads.sourceforge.net/wxlua/wxlua-2.8.0.0-1.x86.package?download Thanks for reporting it! I've fixed it. Francesco |
|
From: Ganesh G. <gan...@gm...> - 2006-12-28 06:23:26
|
Hi, In the download page(http://wxlua.sourceforge.net/download.php), the link to the linux autopackage file is http://prdownloads.sourceforge.net/wxlua/wxlua-2.8.0.0.x86.package?download instead of http://prdownloads.sourceforge.net/wxlua/wxlua-2.8.0.0-1.x86.package?download Cheers, Ganesh Gunasegaran. |
|
From: Francesco M. <f18...@ya...> - 2006-12-27 10:58:09
|
John Labenski ha scritto: > On 12/26/06, Francesco Montorsi <f18...@ya...> wrote: >>> Just tried building wxLua and have run into a couple problems... I'm not >>> that much of a make guru, but it looks like it could be a relatively >>> minor path issue (or not :). >>> >>> Here are some pasted error messages. Anyone have any idea? > > Here's what I get with the current CVS, where I have run $../configure > from the dir wxLua/config_osxu_mono > > g++ -o ../bin/wxlua app_wxlua_wxlua.o app_wxlua_lconsole.o -L../lib > -L/Users/emac/wx/wxLua/wxLua/config_osxu_mono/../modules/lua/lib > -lwxlua_macu_wxlua-2.8 -lwxlua_macu_wxbindstc-2.8 > -lwxlua_macu_wxbind-2.8 -lwxlua_macu_wxluasocket-2.8 > -lwxlua_macu_wxluadebug-2.8 -llua5.1 > -L/Users/emac/wx/wxWidgets/wxWidgets_a/wxWidgets/config_osxu_mono/lib > -framework QuickTime -framework IOKit -framework Carbon -framework > Cocoa -framework System > /Users/emac/wx/wxWidgets/wxWidgets_a/wxWidgets/config_osxu_mono/lib/libwx_macu_stc-2.8.a > /Users/emac/wx/wxWidgets/wxWidgets_a/wxWidgets/config_osxu_mono/lib/libwx_macu-2.8.a > -framework WebKit -lwxregexu-2.8 -lwxexpat-2.8 -lwxtiff-2.8 > -lwxjpeg-2.8 -lwxpng-2.8 -lz -lpthread -liconv > /usr/bin/ld: warning -L: directory name > (/Users/emac/wx/wxLua/wxLua/config_osxu_mono/../modules/lua/lib) does > not exist right - I've added it to the makefiles and when you compile with the builtin lua it's not useful but it's necessary when you compile with an external Lua, so it needs to stay. > /Developer/Tools/Rez -d __DARWIN__ -t APPL -i ../../modules -i ./../.. > -i /Users/emac/wx/wxLua/wxLua/config_osxu_mono/../modules/lua/include > -o ../bin/wxlua ../../art/wxlua.r > /Developer/Tools/SetFile -a C wxlua > ERROR: File Not Found. (-43) on file: wxlua > make[1]: *** [../bin/wxlua] Error 2 > make: *** [apps] Error 2 > [emac@eMac config_osxu_mono]$ dir bin > total 26816 > drwxr-xr-x 4 emac emac 136 Dec 26 19:11 . > drwxr-xr-x 16 emac emac 544 Dec 26 18:54 .. > -rwxr-xr-x 1 emac emac 167884 Dec 26 19:10 lua > -rwxr-xr-x 1 emac emac 13526188 Dec 26 19:11 wxlua > > The problem is that SetField has the wrong path to wxlua, it's correct > for lua itself. right. I've fixed this in CVS. Francesco |