added ViewStart() as synonym for GetViewStart() in WXWIN_COMPATIBILITY_2_2 mode
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15874 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -99,9 +99,6 @@ public:
|
|||||||
|
|
||||||
// Get the view start
|
// Get the view start
|
||||||
virtual void GetViewStart(int *x, int *y) const;
|
virtual void GetViewStart(int *x, int *y) const;
|
||||||
// Compatibility
|
|
||||||
void ViewStart(int *x, int *y) const
|
|
||||||
{ GetViewStart( x, y ); }
|
|
||||||
|
|
||||||
// translate between scrolled and unscrolled coordinates
|
// translate between scrolled and unscrolled coordinates
|
||||||
void CalcScrolledPosition(int x, int y, int *xx, int *yy) const
|
void CalcScrolledPosition(int x, int y, int *xx, int *yy) const
|
||||||
@@ -162,6 +159,11 @@ public:
|
|||||||
// Overridden from wxWindows due callback being static
|
// Overridden from wxWindows due callback being static
|
||||||
virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE );
|
virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE );
|
||||||
|
|
||||||
|
#if WXWIN_COMPATIBILITY_2_2
|
||||||
|
// Compatibility
|
||||||
|
void ViewStart(int *x, int *y) const { GetViewStart( x, y ); }
|
||||||
|
#endif // WXWIN_COMPATIBILITY_2_2
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
wxWindow *m_targetWindow;
|
wxWindow *m_targetWindow;
|
||||||
int m_xScrollPixelsPerLine;
|
int m_xScrollPixelsPerLine;
|
||||||
|
@@ -99,9 +99,6 @@ public:
|
|||||||
|
|
||||||
// Get the view start
|
// Get the view start
|
||||||
virtual void GetViewStart(int *x, int *y) const;
|
virtual void GetViewStart(int *x, int *y) const;
|
||||||
// Compatibility
|
|
||||||
void ViewStart(int *x, int *y) const
|
|
||||||
{ GetViewStart( x, y ); }
|
|
||||||
|
|
||||||
// translate between scrolled and unscrolled coordinates
|
// translate between scrolled and unscrolled coordinates
|
||||||
void CalcScrolledPosition(int x, int y, int *xx, int *yy) const
|
void CalcScrolledPosition(int x, int y, int *xx, int *yy) const
|
||||||
@@ -162,6 +159,11 @@ public:
|
|||||||
// Overridden from wxWindows due callback being static
|
// Overridden from wxWindows due callback being static
|
||||||
virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE );
|
virtual void SetScrollPos( int orient, int pos, bool refresh = TRUE );
|
||||||
|
|
||||||
|
#if WXWIN_COMPATIBILITY_2_2
|
||||||
|
// Compatibility
|
||||||
|
void ViewStart(int *x, int *y) const { GetViewStart( x, y ); }
|
||||||
|
#endif // WXWIN_COMPATIBILITY_2_2
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
wxWindow *m_targetWindow;
|
wxWindow *m_targetWindow;
|
||||||
int m_xScrollPixelsPerLine;
|
int m_xScrollPixelsPerLine;
|
||||||
|
@@ -139,6 +139,11 @@ public:
|
|||||||
// once it is fixed!
|
// once it is fixed!
|
||||||
void OnScroll(wxScrollWinEvent& event) { HandleOnScroll(event); }
|
void OnScroll(wxScrollWinEvent& event) { HandleOnScroll(event); }
|
||||||
|
|
||||||
|
#if WXWIN_COMPATIBILITY_2_2
|
||||||
|
// Compatibility only, don't use
|
||||||
|
void ViewStart(int *x, int *y) const { GetViewStart( x, y ); }
|
||||||
|
#endif // WXWIN_COMPATIBILITY_2_2
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// get pointer to our scroll rect if we use it or NULL
|
// get pointer to our scroll rect if we use it or NULL
|
||||||
const wxRect *GetRect() const
|
const wxRect *GetRect() const
|
||||||
|
Reference in New Issue
Block a user