/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/ #ifndef INCLUDED_SW_INC_FMTFTNTX_HXX #define INCLUDED_SW_INC_FMTFTNTX_HXX
enum SwFootnoteEndPosEnum
{
FTNEND_ATPGORDOCEND, ///< at page or document end
FTNEND_ATTXTEND, ///< at end of the current text end
FTNEND_ATTXTEND_OWNNUMSEQ, ///< -""- and with own number sequence
FTNEND_ATTXTEND_OWNNUMANDFMT, ///< -""- and with own numberformat
FTNEND_ATTXTEND_END
};
/** * SfxPoolItem subclass that is a wrapper around an SwFootnoteEndPosEnum, i.e. to decide where * footnotes or endnotes should be collected. Available on the UI as Format -> Sections -> <Name> -> * Options -> Footnotes/Endnotes. This is the shared base class for both footnotes and endnotes.
*/ class SW_DLLPUBLIC SwFormatFootnoteEndAtTextEnd : public SfxEnumItem<SwFootnoteEndPosEnum>
{
OUString m_sPrefix;
OUString m_sSuffix;
SvxNumberType m_aFormat;
sal_uInt16 m_nOffset;
/// SwFormatFootnoteEndAtTextEnd subclass, specific to footnotes, placed in the item set of an /// SwSectionFormat. class SW_DLLPUBLIC SwFormatFootnoteAtTextEnd final : public SwFormatFootnoteEndAtTextEnd
{ public:
DECLARE_ITEM_TYPE_FUNCTION(SwFormatFootnoteAtTextEnd)
SwFormatFootnoteAtTextEnd( SwFootnoteEndPosEnum ePos = FTNEND_ATPGORDOCEND )
: SwFormatFootnoteEndAtTextEnd( RES_FTN_AT_TXTEND, ePos )
{}
/// SwFormatFootnoteEndAtTextEnd subclass, specific to endnotes, placed in the item set of an /// SwSectionFormat. class SW_DLLPUBLIC SwFormatEndAtTextEnd final : public SwFormatFootnoteEndAtTextEnd
{ public:
DECLARE_ITEM_TYPE_FUNCTION(SwFormatEndAtTextEnd)
SwFormatEndAtTextEnd( SwFootnoteEndPosEnum ePos = FTNEND_ATPGORDOCEND )
: SwFormatFootnoteEndAtTextEnd( RES_END_AT_TXTEND, ePos )
{
SetNumType( SVX_NUM_ROMAN_LOWER );
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.