Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19437/wxLua/bindings/wxwidgets
Modified Files:
appframe.i datetime.i windows.i
Log Message:
add more wxcomap26 checks
cleanup and simplify samples
Index: windows.i
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/windows.i,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** windows.i 2 Nov 2006 23:38:08 -0000 1.22
--- windows.i 22 Nov 2006 21:13:56 -0000 1.23
***************
*** 113,117 ****
virtual wxColour GetBackgroundColour() const
virtual wxBackgroundStyle GetBackgroundStyle() const
! wxSize GetBestFittingSize() const
virtual wxSize GetBestSize() const
wxCaret* GetCaret() const
--- 113,117 ----
virtual wxColour GetBackgroundColour() const
virtual wxBackgroundStyle GetBackgroundStyle() const
! wxSize GetBestFittingSize() const // deprecated in 2.8 use GetEffectiveMinSize
virtual wxSize GetBestSize() const
wxCaret* GetCaret() const
***************
*** 212,216 ****
virtual void SetBackgroundColour(const wxColour& colour)
virtual void SetBackgroundStyle(wxBackgroundStyle style)
! void SetBestFittingSize(const wxSize& size = wxDefaultSize)
void SetCaret(wxCaret *caret) const
%overload virtual void SetClientSize(const wxSize& size)
--- 212,216 ----
virtual void SetBackgroundColour(const wxColour& colour)
virtual void SetBackgroundStyle(wxBackgroundStyle style)
! void SetBestFittingSize(const wxSize& size = wxDefaultSize) // deprecated in 2.8 use SetInitialSize
void SetCaret(wxCaret *caret) const
%overload virtual void SetClientSize(const wxSize& size)
Index: datetime.i
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/datetime.i,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** datetime.i 2 Nov 2006 23:38:08 -0000 1.18
--- datetime.i 22 Nov 2006 21:13:56 -0000 1.19
***************
*** 15,20 ****
%function long wxGetUTCTime()
//%function wxLongLong wxGetLocalTimeMillis()
! %function void wxStartTimer()
! %function long wxGetElapsedTime(bool resetTimer = true)
%function void wxSleep(int secs)
%wxchkver25 %function void wxMilliSleep(unsigned long milliseconds)
--- 15,20 ----
%function long wxGetUTCTime()
//%function wxLongLong wxGetLocalTimeMillis()
! %wxcompat26 %function void wxStartTimer() // deprecated in 2.8 use wxStopWatch
! %wxcompat26 %function long wxGetElapsedTime(bool resetTimer = true) // deprecated in 2.8 use wxStopWatch
%function void wxSleep(int secs)
%wxchkver25 %function void wxMilliSleep(unsigned long milliseconds)
Index: appframe.i
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/appframe.i,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** appframe.i 6 Nov 2006 06:11:43 -0000 1.21
--- appframe.i 22 Nov 2006 21:13:56 -0000 1.22
***************
*** 294,298 ****
// wxAcceleratorEntry
! %function wxAcceleratorEntry* wxGetAccelFromString(const wxString& label)
%enum
--- 294,298 ----
// wxAcceleratorEntry
! %wxcompat26 %function wxAcceleratorEntry* wxGetAccelFromString(const wxString& label) // deprecated in 2.8 use wxAcceleratorEntry::Create() or FromString()
%enum
|