diff options
author | Luke Dixon <6b8b4567@gmail.com> | 2010-11-16 23:37:09 +0000 |
---|---|---|
committer | Jonas Finnemann Jensen <jopsen@gmail.com> | 2010-11-17 22:21:52 +0100 |
commit | 82018908adb34a02f05e76aef8e4fbbb77762288 (patch) | |
tree | aef7c292eb21b2ccf4345bb74bc964221243d704 /starmath/inc/view.hxx | |
parent | 8b74b7f9375fe6775add941330bfb052b2059e8d (diff) |
Draw a visible line under the current line in the visual formula editor.
Diffstat (limited to 'starmath/inc/view.hxx')
-rw-r--r-- | starmath/inc/view.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/starmath/inc/view.hxx b/starmath/inc/view.hxx index ff2b6b226ba9..dbdef14195b8 100644 --- a/starmath/inc/view.hxx +++ b/starmath/inc/view.hxx @@ -57,11 +57,13 @@ class SmGraphicWindow : public ScrollableWindow // old style editing pieces Rectangle aCursorRect; bool bIsCursorVisible; - - AutoTimer aCaretBlinkTimer; + bool bIsLineVisible; + AutoTimer aCaretBlinkTimer; public: bool IsCursorVisible() const { return bIsCursorVisible; } void ShowCursor(bool bShow); + bool IsLineVisible() const { return bIsLineVisible; } + void ShowLine(bool bShow); const SmNode * SetCursorPos(USHORT nRow, USHORT nCol); protected: void SetIsCursorVisible(bool bVis) { bIsCursorVisible = bVis; } |