diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 11:30:14 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 11:30:14 +0000 |
commit | 80a8955c40bae39e8ff1076ec5d806c82bf62700 (patch) | |
tree | bc1fea380a3e2ab28e4fce8c6798be18eafd5536 /svx | |
parent | 609ceb7a9d4cef28a9f8fbb10d53797fa6c69c5a (diff) |
INTEGRATION: CWS impressodf12 (1.11.350); FILE MERGED
2008/05/29 12:12:45 cl 1.11.350.4: #i75927# bullet rework
2008/05/26 11:37:24 cl 1.11.350.3: #i35937# code cleanup after bullet rework
2008/04/25 09:01:41 cl 1.11.350.2: RESYNC: (1.11-1.12); FILE MERGED
2008/04/21 15:31:49 tl 1.11.350.1: #i35937# EditEngine/outliner changes regarding number format and bullets
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/outliner/outleeng.hxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/svx/source/outliner/outleeng.hxx b/svx/source/outliner/outleeng.hxx index 947699e5f11a..3d9f287c4a91 100644 --- a/svx/source/outliner/outleeng.hxx +++ b/svx/source/outliner/outleeng.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: outleeng.hxx,v $ - * $Revision: 1.12 $ + * $Revision: 1.13 $ * * This file is part of OpenOffice.org. * @@ -42,6 +42,12 @@ class OutlinerEditEng : public EditEngine { Outliner* pOwner; +protected: + + // derived from EditEngine. Allows Outliner objetcs to provide + // bullet access to the EditEngine. + virtual const SvxNumberFormat* GetNumberFormat( USHORT nPara ) const; + public: OutlinerEditEng( Outliner* pOwner, SfxItemPool* pPool ); ~OutlinerEditEng(); @@ -56,7 +62,6 @@ public: virtual void StyleSheetChanged( SfxStyleSheet* pStyle ); virtual void ParaAttribsChanged( USHORT nPara ); - virtual void ParagraphHeightChanged( USHORT nPara ); virtual BOOL SpellNextDocument(); virtual XubString GetUndoComment( USHORT nUndoId ) const; @@ -69,6 +74,8 @@ public: virtual Rectangle GetBulletArea( USHORT nPara ); + virtual void SetParaAttribs( USHORT nPara, const SfxItemSet& rSet ); + // belongs into class Outliner, move there before incompatible update! Link aOutlinerNotifyHdl; NotifyList aNotifyCache; |