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
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user