Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv3872/wxLua/modules/wxluadebug/include
Modified Files:
splttree.h staktree.h
Log Message:
cleanup the app wxlua editor, don't try to run all the notebook pages at once
make lconsole available for app wxLua
use wxCmdLineParser in app wxlua
push full args in app wxlua
fix splittree to scroll child for generic treectrl in 2.6.3
Index: staktree.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/staktree.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** staktree.h 8 Mar 2006 02:46:37 -0000 1.6
--- staktree.h 15 May 2006 04:48:37 -0000 1.7
***************
*** 49,53 ****
wxLuaStackDialog(wxWindow* parent, const wxString& title,
const wxPoint& pos, const wxSize& size,
! wxLuaInterface* luaInterface)
{
Init();
--- 49,53 ----
wxLuaStackDialog(wxWindow* parent, const wxString& title,
const wxPoint& pos, const wxSize& size,
! wxLuaInterface* luaInterface) : wxDialog()
{
Init();
***************
*** 102,110 ****
{
public:
! wxLuaStackTree( wxWindow *parent,
! wxWindowID id = wxID_ANY,
! const wxPoint &pt = wxDefaultPosition,
! const wxSize &sz = wxDefaultSize,
! long style = wxTR_HAS_BUTTONS);
virtual ~wxLuaStackTree();
--- 102,109 ----
{
public:
! wxLuaStackTree( wxWindow *parent, wxWindowID id = wxID_ANY,
! const wxPoint &pt = wxDefaultPosition,
! const wxSize &sz = wxDefaultSize,
! long style = wxTR_HAS_BUTTONS);
virtual ~wxLuaStackTree();
***************
*** 123,132 ****
{
public:
! wxLuaStackDataWindow( wxWindow *parent,
! wxWindowID id = wxID_ANY,
! const wxPoint &pos = wxDefaultPosition,
! const wxSize &sz = wxDefaultSize,
! long style = 0,
! bool fFirst = true);
// Overrides
--- 122,129 ----
{
public:
! wxLuaStackDataWindow( wxWindow *parent, wxWindowID id = wxID_ANY,
! const wxPoint &pos = wxDefaultPosition,
! const wxSize &sz = wxDefaultSize,
! long style = 0, bool fFirst = true);
// Overrides
Index: splttree.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/splttree.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** splttree.h 29 Jan 2006 15:45:40 -0000 1.6
--- splttree.h 15 May 2006 04:48:37 -0000 1.7
***************
*** 72,75 ****
--- 72,78 ----
bool noRefresh = false );
+ virtual void DoCalcScrolledPosition(int x, int y, int *xx, int *yy) const;
+ virtual void DoCalcUnscrolledPosition(int x, int y, int *xx, int *yy) const;
+
// In case we're using the generic tree control.
// Get the view start
|