From: John L. <jr...@us...> - 2006-10-04 02:46:43
|
Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/include In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv23774/wxLua/modules/wxluadebug/include Modified Files: staktree.h wxldebug.h Log Message: add GetEventTypeName(int) to bindings to lookup event name string use sizers in stack dialog simplify the stackdialog by unifying all treectrl item adding better comments in headers Index: staktree.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/staktree.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** staktree.h 8 Sep 2006 22:43:46 -0000 1.12 --- staktree.h 2 Oct 2006 21:19:24 -0000 1.13 *************** *** 26,30 **** // ---------------------------------------------------------------------------- ! enum { ID_WXLUA_STACKDIALOG = 2000, --- 26,30 ---- // ---------------------------------------------------------------------------- ! enum { ID_WXLUA_STACKDIALOG = 2000, *************** *** 35,40 **** ID_WXLUA_STACKDIALOG_VALUE_SPLITWIN, ID_WXLUA_STACKDIALOG_VALUE_WIN1, ! ID_WXLUA_STACKDIALOG_VALUE_WIN2, ! ID_WXLUA_STACKDIALOG_DISMISS_BUTTON }; --- 35,39 ---- ID_WXLUA_STACKDIALOG_VALUE_SPLITWIN, ID_WXLUA_STACKDIALOG_VALUE_WIN1, ! ID_WXLUA_STACKDIALOG_VALUE_WIN2 }; *************** *** 63,74 **** wxLuaInterface* luaInterface); - void OnSizeWindow(wxSizeEvent& event); void OnSelectStack(wxCommandEvent &event); void OnItemExpanding(wxTreeEvent &event); - void OnCloseDialog(wxCommandEvent &event); void SelectStack(int nCurrentSel); void ItemExpanding(const wxTreeItemId &itemId); - void SizeWindow(int nWidth, int nHeight); void FillStackCombobox(const wxLuaDebugData& debugData); --- 62,70 ---- *************** *** 84,88 **** wxThinSplitterWindow *m_valueSplitter; wxSplitterScrolledWindow *m_scrolledWindow; - wxButton *m_dismissButton; wxLuaStackDataWindow *m_firstValueWindow; wxLuaStackDataWindow *m_secondValueWindow; --- 80,83 ---- Index: wxldebug.h =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/wxldebug.h,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** wxldebug.h 30 Sep 2006 18:20:03 -0000 1.25 --- wxldebug.h 2 Oct 2006 21:19:24 -0000 1.26 *************** *** 153,164 **** virtual wxLuaDebugData GetGlobalData(); ! // allows for this to be subclassed for use with the wxLuaDebuggerServer ! virtual bool IsDebugServer() const { return false; } wxLuaState GetwxLuaState() const { return m_wxlState; } protected: - int Ref(); - wxLuaState m_wxlState; wxArrayInt m_references; --- 153,162 ---- virtual wxLuaDebugData GetGlobalData(); ! // allows for this to be subclassed for use with the wxLuaDebuggerBase ! virtual bool IsDebugger() const { return false; } wxLuaState GetwxLuaState() const { return m_wxlState; } protected: wxLuaState m_wxlState; wxArrayInt m_references; |