From 3fd21050572f232d9e2da20d7d1206cd59b63724 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Wed, 27 Feb 2008 08:54:40 +0000 Subject: [PATCH] Made wxRichTextCtrl cursors accessible git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@52136 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/richtext/richtextctrl.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/include/wx/richtext/richtextctrl.h b/include/wx/richtext/richtextctrl.h index 1cb55daf60..b10cc7fe0e 100644 --- a/include/wx/richtext/richtextctrl.h +++ b/include/wx/richtext/richtextctrl.h @@ -144,6 +144,20 @@ public: /// Get the threshold in character positions for doing layout optimization during sizing long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold; } +#if wxABI_VERSION >= 20808 + /// Set text cursor + void SetTextCursor(const wxCursor& cursor ) { m_textCursor = cursor; } + + /// Get text cursor + wxCursor GetTextCursor() const { return m_textCursor; } + + /// Set URL cursor + void SetURLCursor(const wxCursor& cursor ) { m_urlCursor = cursor; } + + /// Get URL cursor + wxCursor GetURLCursor() const { return m_urlCursor; } +#endif + // Operations // editing