diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-05 15:48:34 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-05 15:48:34 +0000 |
commit | 7b15cb14fff924ec24e96740c99c886255b837a9 (patch) | |
tree | a8f2e09a630815bd9336a38ddb442e06b6bca35c /sw | |
parent | 98726a271fd94ada7c42877d3cd5e43a1d1c312a (diff) |
INTEGRATION: CWS swnewlistlevelattrs_DEV300 (1.62.34); FILE MERGED
2008/02/13 10:55:52 od 1.62.34.2: #i85348# method <SwEditShell::SetCurNumRule(..)>
- parameter <bResetIndentAttrs>
2008/01/23 14:32:30 od 1.62.34.1: #i85348# method <SwEditShell::GetCurAttr(..)>
- renamed from <GetAttr(..)>
- added 2nd optional parameter <bMergeIndentValuesOfNumRule>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/editsh.hxx | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/sw/inc/editsh.hxx b/sw/inc/editsh.hxx index 4d2e65e0da6b..3a3bcd2c3377 100644 --- a/sw/inc/editsh.hxx +++ b/sw/inc/editsh.hxx @@ -4,9 +4,9 @@ * * $RCSfile: editsh.hxx,v $ * - * $Revision: 1.64 $ + * $Revision: 1.65 $ * - * last change: $Author: obo $ $Date: 2008-02-26 14:01:35 $ + * last change: $Author: kz $ $Date: 2008-03-05 16:48:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -278,7 +278,18 @@ public: // Anwenden / Entfernen von Attributen // liefert Attribute im angeforderten AttributSet. Wenn nicht eindeutig // steht im Set ein DONT_CARE !! - BOOL GetAttr( SfxItemSet& ) const; + // --> OD 2008-01-16 #newlistlevelattrs# + // Renaming method to <GetCurAttr(..)> indicating that the attributes at + // the current cursors are retrieved. + // Introduce 2nd optional parameter <bMergeIndentValuesOfNumRule>. + // If <bMergeIndentValuesOfNumRule> == TRUE, the indent attributes of + // the corresponding list level of an applied list style is merged into + // the requested item set as a LR-SPACE item, if corresponding node has not + // its own indent attributes and the position-and-space mode of the list + // level is SvxNumberFormat::LABEL_ALIGNMENT. + BOOL GetCurAttr( SfxItemSet& , + const bool bMergeIndentValuesOfNumRule = false ) const; + // <-- void SetAttr( const SfxPoolItem&, USHORT nFlags = 0 ); void SetAttr( const SfxItemSet&, USHORT nFlags = 0 ); @@ -460,7 +471,14 @@ public: // setzt, wenn noch keine Numerierung, sonst wird geaendert // arbeitet mit alten und neuen Regeln, nur Differenzen aktualisieren - void SetCurNumRule(const SwNumRule&); + // --> OD 2008-02-08 #newlistlevelattrs# + // Add optional parameter <bResetIndentAttrs> (default value FALSE). + // If <bResetIndentAttrs> equals true, the indent attributes "before text" + // and "first line indent" are additionally reset at the current selection, + // if the list style makes use of the new list level attributes. + void SetCurNumRule( const SwNumRule&, + const bool bResetIndentAttrs = false ); + // <-- // Absaetze ohne Numerierung, aber mit Einzuegen BOOL NoNum(); // Loeschen, Splitten der Aufzaehlungsliste |