diff options
author | jp <jp@openoffice.org> | 2000-11-28 17:49:16 +0000 |
---|---|---|
committer | jp <jp@openoffice.org> | 2000-11-28 17:49:16 +0000 |
commit | ca066d9e5b78a448fcd02df30af8e7aea76fe5a6 (patch) | |
tree | 8f2846c2378591cf766317377739e6a30739c5d4 /sw/inc/extinput.hxx | |
parent | f94f90425a5d6097e7b1ceb2fe2ca790f821b96f (diff) |
Bug #80312#: OverwriteCursor for CJK
Diffstat (limited to 'sw/inc/extinput.hxx')
-rw-r--r-- | sw/inc/extinput.hxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sw/inc/extinput.hxx b/sw/inc/extinput.hxx index 483e02aaa81f..58ee2e66cf93 100644 --- a/sw/inc/extinput.hxx +++ b/sw/inc/extinput.hxx @@ -2,9 +2,9 @@ * * $RCSfile: extinput.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jp $ $Date: 2000-11-15 15:23:45 $ + * last change: $Author: jp $ $Date: 2000-11-28 18:49:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -75,7 +75,8 @@ class Font; class SwExtTextInput : public SwPaM { SvUShorts aAttrs; - BOOL bInsText; + BOOL bInsText : 1; + BOOL bIsOverwriteCursor : 1; public: SwExtTextInput( const SwPaM& rPam, Ring* pRing = 0 ); virtual ~SwExtTextInput(); @@ -86,6 +87,8 @@ public: const SvUShorts& GetAttrs() const { return aAttrs; } BOOL IsInsText() const { return bInsText; } void SetInsText( BOOL bFlag ) { bInsText = bFlag; } + BOOL IsOverwriteCursor() const { return bIsOverwriteCursor; } + void SetOverwriteCursor( BOOL bFlag ) { bIsOverwriteCursor = bFlag; } }; #endif //_EXTINPUT_HXX |