diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-02-01 11:58:29 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-02-01 11:58:29 +0000 |
commit | 2a336ca3eae567ad45e12aeea8d0af14d7eb5bee (patch) | |
tree | 42ae1af6650aad0c96cfc1554abed9d59d585d1e /svx/source/outliner | |
parent | b05430250d2811759508e80f4bb53e073d0a7b9c (diff) |
INTEGRATION: CWS impress83 (1.63.8); FILE MERGED
2006/01/19 16:32:50 cl 1.63.8.1: #i60833# added BeginDropHdl and EndDropHdl for impress outliner view undo
Diffstat (limited to 'svx/source/outliner')
-rw-r--r-- | svx/source/outliner/outliner.cxx | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/svx/source/outliner/outliner.cxx b/svx/source/outliner/outliner.cxx index 4abf7b4e34b9..b173978f9b17 100644 --- a/svx/source/outliner/outliner.cxx +++ b/svx/source/outliner/outliner.cxx @@ -4,9 +4,9 @@ * * $RCSfile: outliner.cxx,v $ * - * $Revision: 1.64 $ + * $Revision: 1.65 $ * - * last change: $Author: hr $ $Date: 2006-01-24 16:50:45 $ + * last change: $Author: kz $ $Date: 2006-02-01 12:58:29 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -2357,6 +2357,28 @@ IMPL_LINK( Outliner, EditEngineNotifyHdl, EENotify*, pNotify ) return 0; } +/** sets a link that is called at the beginning of a drag operation at an edit view */ +void Outliner::SetBeginDropHdl( const Link& rLink ) +{ + pEditEngine->SetBeginDropHdl( rLink ); +} + +Link Outliner::GetBeginDropHdl() const +{ + return pEditEngine->GetBeginDropHdl(); +} + +/** sets a link that is called at the end of a drag operation at an edit view */ +void Outliner::SetEndDropHdl( const Link& rLink ) +{ + pEditEngine->SetEndDropHdl( rLink ); +} + +Link Outliner::GetEndDropHdl() const +{ + return pEditEngine->GetEndDropHdl(); +} + sal_Bool DrawPortionInfo::IsRTL() const { if(0xFF == mnBiDiLevel) |