diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-07-05 15:19:54 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-07-05 15:19:54 +0000 |
commit | 90fd07320af47d321ee2e630a49cdd543f352ac1 (patch) | |
tree | 145a236471b901f687dd90e2d840fa3e2897a762 /forms/source | |
parent | e4028488a57131ddc58180ae675a4060e98bb60b (diff) |
INTEGRATION: CWS frmcontrols04 (1.2.18); FILE MERGED
2004/06/23 09:03:44 fs 1.2.18.1: #i24694# #i24686# HideInactiveSelection and BorderColor also for the rich text model
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/richtext/richtextimplcontrol.cxx | 18 | ||||
-rw-r--r-- | forms/source/richtext/richtextimplcontrol.hxx | 7 |
2 files changed, 20 insertions, 5 deletions
diff --git a/forms/source/richtext/richtextimplcontrol.cxx b/forms/source/richtext/richtextimplcontrol.cxx index 7000be64360e..af7e3baaa044 100644 --- a/forms/source/richtext/richtextimplcontrol.cxx +++ b/forms/source/richtext/richtextimplcontrol.cxx @@ -2,9 +2,9 @@ * * $RCSfile: richtextimplcontrol.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2004-05-07 16:13:04 $ + * last change: $Author: obo $ $Date: 2004-07-05 16:19:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -700,11 +700,23 @@ namespace frm //-------------------------------------------------------------------- void RichTextControlImpl::SetBackgroundColor( const Color& _rColor ) { - Wallpaper aWallpaper( _rColor ); + Wallpaper aWallpaper( _rColor ); m_pAntiImpl->SetBackground( aWallpaper ); m_pViewport->SetBackground( aWallpaper ); } + //-------------------------------------------------------------------- + void RichTextControlImpl::SetHideInactiveSelection( bool _bHide ) + { + m_pViewport->SetHideInactiveSelection( _bHide ); + } + + //-------------------------------------------------------------------- + bool RichTextControlImpl::GetHideInactiveSelection() const + { + return m_pViewport->GetHideInactiveSelection( ); + } + //........................................................................ } // namespace frm //........................................................................ diff --git a/forms/source/richtext/richtextimplcontrol.hxx b/forms/source/richtext/richtextimplcontrol.hxx index a0afa25910cb..b66133413acf 100644 --- a/forms/source/richtext/richtextimplcontrol.hxx +++ b/forms/source/richtext/richtextimplcontrol.hxx @@ -2,9 +2,9 @@ * * $RCSfile: richtextimplcontrol.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2004-05-07 16:13:15 $ + * last change: $Author: obo $ $Date: 2004-07-05 16:19:54 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -195,6 +195,9 @@ namespace frm void SetReadOnly( bool _bReadOnly ); bool IsReadOnly() const; + void SetHideInactiveSelection( bool _bHide ); + bool GetHideInactiveSelection() const; + /// draws the control onto a given output device void Draw( OutputDevice* _pDev, const Point& _rPos, const Size& _rSize, ULONG _nFlags ); |