From: Vadim Zeitlin Date: Thu, 20 Sep 2012 10:20:42 +0000 (+0000) Subject: Add wxStyledTextCtrl::AnnotationClearLine(). X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/95725e35d8bfa902349fea22349935dc260c591e Add wxStyledTextCtrl::AnnotationClearLine(). Simply set NULL annotation text for the given line. Closes #12960. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72518 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/changes.txt b/docs/changes.txt index c848a76727..341b9578e6 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -553,6 +553,7 @@ All (GUI): - Restore the original wxGrid col/row size when unhiding it (Michael Richards). - Fix text origin and extent computations in wxSVGFileDC (Neil Chittenden). - Show tooltips for the too long items in generic wxTreeCtrl (Steven Houchins). +- Add wxStyledTextCtrl::AnnotationClearLine() (sentieshar). wxGTK: diff --git a/include/wx/stc/stc.h b/include/wx/stc/stc.h index cfc3f85847..89c44a4cec 100644 --- a/include/wx/stc/stc.h +++ b/include/wx/stc/stc.h @@ -4495,6 +4495,9 @@ public: // Returns the current UseAntiAliasing setting. bool GetUseAntiAliasing(); + // Clear annotations from the given line. + void AnnotationClearLine(int line); + // The following methods are nearly equivalent to their similarly named diff --git a/interface/wx/stc/stc.h b/interface/wx/stc/stc.h index 02cc38093a..2247f3ebdf 100644 --- a/interface/wx/stc/stc.h +++ b/interface/wx/stc/stc.h @@ -3138,6 +3138,13 @@ public: */ void AnnotationClearAll(); + /** + Clear the annotations from the given line. + + @since 2.9.5 + */ + void AnnotationClearAll(int line); + /** Set the visibility for the annotations for a view */ diff --git a/src/stc/stc.cpp b/src/stc/stc.cpp index b607b3d92c..759030263b 100644 --- a/src/stc/stc.cpp +++ b/src/stc/stc.cpp @@ -4444,6 +4444,9 @@ bool wxStyledTextCtrl::GetUseAntiAliasing() { return m_swx->GetUseAntiAliasing(); } +void wxStyledTextCtrl::AnnotationClearLine(int line) { + SendMsg(SCI_ANNOTATIONSETTEXT, line, NULL); +} diff --git a/src/stc/stc.cpp.in b/src/stc/stc.cpp.in index 0313d2dae2..b7cfbc8ec1 100644 --- a/src/stc/stc.cpp.in +++ b/src/stc/stc.cpp.in @@ -582,6 +582,9 @@ bool wxStyledTextCtrl::GetUseAntiAliasing() { return m_swx->GetUseAntiAliasing(); } +void wxStyledTextCtrl::AnnotationClearLine(int line) { + SendMsg(SCI_ANNOTATIONSETTEXT, line, NULL); +} diff --git a/src/stc/stc.h.in b/src/stc/stc.h.in index 659ae4dc56..a10155c38b 100644 --- a/src/stc/stc.h.in +++ b/src/stc/stc.h.in @@ -237,6 +237,9 @@ public: // Returns the current UseAntiAliasing setting. bool GetUseAntiAliasing(); + // Clear annotations from the given line. + void AnnotationClearLine(int line); + // The following methods are nearly equivalent to their similarly named