/* -*- 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 .
*/ #pragma once
#include"portxt.hxx" #include <swfont.hxx>
#include <memory>
class SwFont;
// DropCap cache, global variable initialized/destroyed in txtinit.cxx // and used in txtdrop.cxx for initial calculation
class SwDropCapCache; extern SwDropCapCache *pDropCapCache;
// A drop portion can consist of one or more parts in order to allow // attribute changes inside them. class SwDropPortionPart
{
std::unique_ptr<SwDropPortionPart> m_pFollow;
std::unique_ptr<SwFont> m_pFnt;
TextFrameIndex m_nLen;
SwTwips m_nWidth; bool m_bJoinBorderWithNext; bool m_bJoinBorderWithPrev;
/// Text portion for the Format -> Paragraph -> Drop Caps functionality. class SwDropPortion : public SwTextPortion
{ friendclass SwDropCapCache;
std::unique_ptr<SwDropPortionPart> m_pPart; // due to script/attribute changes
sal_uInt16 m_nLines; // Line count
SwTwips m_nDropHeight; // Height
SwTwips m_nDropDescent; // Distance to the next line
SwTwips m_nDistance; // Distance to the text
SwTwips m_nFix; // Fixed position
SwTwips m_nY; // Y Offset
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.