|
LibreOffice Module svl (master) 1
|
#include <macitem.hxx>
Public Member Functions | |
| SvxMacroItem (const sal_uInt16 nId) | |
| virtual bool | operator== (const SfxPoolItem &) const override |
| virtual bool | GetPresentation (SfxItemPresentation ePres, MapUnit eCoreMetric, MapUnit ePresMetric, OUString &rText, const IntlWrapper &) const override |
| This virtual method allows to get a textual representation of the value for the SfxPoolItem subclasses. More... | |
| virtual SvxMacroItem * | Clone (SfxItemPool *pPool=nullptr) const override |
| const SvxMacroTableDtor & | GetMacroTable () const |
| void | SetMacroTable (const SvxMacroTableDtor &rTbl) |
| const SvxMacro & | GetMacro (SvMacroItemId nEvent) const |
| bool | HasMacro (SvMacroItemId nEvent) const |
| void | SetMacro (SvMacroItemId nEvent, const SvxMacro &) |
Public Member Functions inherited from SfxPoolItem | |
| void | AddRef (sal_uInt32 n=1) const |
| virtual | ~SfxPoolItem () |
| void | SetWhich (sal_uInt16 nId) |
| sal_uInt16 | Which () const |
| template<class T > | |
| T & | StaticWhichCast (TypedWhichId< T > nId) |
| template<class T > | |
| const T & | StaticWhichCast (TypedWhichId< T > nId) const |
| template<class T > | |
| T * | DynamicWhichCast (TypedWhichId< T > nId) |
| template<class T > | |
| const T * | DynamicWhichCast (TypedWhichId< T > nId) const |
| virtual bool | operator== (const SfxPoolItem &) const =0 |
| bool | operator!= (const SfxPoolItem &rItem) const |
| virtual bool | operator< (const SfxPoolItem &) const |
| virtual bool | IsSortable () const |
| virtual bool | HasLookup () const |
| virtual lookup_iterator | Lookup (lookup_iterator, lookup_iterator end) const |
| virtual bool | GetPresentation (SfxItemPresentation ePresentation, MapUnit eCoreMetric, MapUnit ePresentationMetric, OUString &rText, const IntlWrapper &rIntlWrapper) const |
| This virtual method allows to get a textual representation of the value for the SfxPoolItem subclasses. More... | |
| virtual void | ScaleMetrics (tools::Long lMult, tools::Long lDiv) |
| virtual bool | HasMetrics () const |
| virtual bool | QueryValue (css::uno::Any &rVal, sal_uInt8 nMemberId=0) const |
| virtual bool | PutValue (const css::uno::Any &rVal, sal_uInt8 nMemberId) |
| virtual SfxPoolItem * | Clone (SfxItemPool *pPool=nullptr) const =0 |
| std::unique_ptr< SfxPoolItem > | CloneSetWhich (sal_uInt16 nNewWhich) const |
| template<class T > | |
| std::unique_ptr< T > | CloneSetWhich (TypedWhichId< T > nId) const |
| sal_uInt32 | GetRefCount () const |
| SfxItemKind | GetKind () const |
| virtual void | dumpAsXml (xmlTextWriterPtr pWriter) const |
| virtual boost::property_tree::ptree | dumpAsJSON () const |
| virtual bool | IsVoidItem () const |
| Only SfxVoidItem shall and must return true for this. More... | |
Private Member Functions | |
| SvxMacroItem (const SvxMacroItem &)=default | |
Private Attributes | |
| SvxMacroTableDtor | aMacroTable |
Additional Inherited Members | |
Public Types inherited from SfxPoolItem | |
| typedef std::vector< SfxPoolItem * >::const_iterator | lookup_iterator |
Protected Member Functions inherited from SfxPoolItem | |
| SfxPoolItem (sal_uInt16 nWhich=0) | |
| SfxPoolItem (const SfxPoolItem &rCopy) | |
Definition at line 110 of file macitem.hxx.
|
inlineexplicit |
|
privatedefault |
|
overridevirtual |
|
inline |
Definition at line 145 of file macitem.hxx.
References aMacroTable, and SvxMacroTableDtor::Get().
|
inline |
Definition at line 124 of file macitem.hxx.
|
overridevirtual |
This virtual method allows to get a textual representation of the value for the SfxPoolItem subclasses.
It should be overridden by all UI-relevant SfxPoolItem subclasses.
Because the unit of measure of the value in the SfxItemPool is only queryable via
The corresponding unit of measure is passed as 'ePresentationMetric'.
SfxItemPresentation::Complete A complete textual representation could be created with semantic meaning (if applicable with unit of measure)
Example:
pSvxFontItem->GetPresentation( SFX_PRESENTATION_NAMELESS, ... ) "12pt" with return SfxItemPresentation::Nameless
pSvxColorItem->GetPresentation( SFX_PRESENTATION_COMPLETE, ... ) "red" with return SfxItemPresentation::Nameless Because the SvxColorItem does not know which color it represents it cannot provide a name, which is communicated by the return value
pSvxBorderItem->GetPresentation( SFX_PRESENTATION_COMPLETE, ... ) "1cm top border, 2cm left border, 0.2cm bottom border, ..."
!! SvxMacroTableDtor& rTbl = (SvxMacroTableDtor&)GetMacroTable(); SvxMacro* pMac = rTbl.First();
while ( pMac ) { rText += pMac->GetLibName(); rText += cpDelim; rText += pMac->GetMacName(); pMac = rTbl.Next(); if ( pMac ) rText += cpDelim; }
Reimplemented from SfxPoolItem.
Definition at line 206 of file macitem.cxx.
|
inline |
Definition at line 141 of file macitem.hxx.
References aMacroTable, and SvxMacroTableDtor::IsKeyValid().
|
overridevirtual |
| void SvxMacroItem::SetMacro | ( | SvMacroItemId | nEvent, |
| const SvxMacro & | rMacro | ||
| ) |
Definition at line 234 of file macitem.cxx.
References aMacroTable, and SvxMacroTableDtor::Insert().
|
inline |
Definition at line 125 of file macitem.hxx.
|
private |
Definition at line 132 of file macitem.hxx.
Referenced by GetMacro(), HasMacro(), operator==(), and SetMacro().