/* -*- 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_TXTFLCNT_HXX #define INCLUDED_SW_INC_TXTFLCNT_HXX #include "txatbase.hxx" class SwFlyInContentFrame; class SwFrame; class SwTextNode; class SwDoc; // Attribute for line-bound frames (without end index). class SwTextFlyCnt final : public SwTextAttr { SwFlyInContentFrame *GetFlyFrame_( const SwFrame *pCurrFrame ); public: SwTextFlyCnt( const SfxPoolItemHolder& rAttr, sal_Int32 nStart ); // Sets anchor in pFormat and void SetAnchor( const SwTextNode *pNode ); inline SwFlyInContentFrame *GetFlyFrame( const SwFrame *pCurrFrame ); inline const SwFlyInContentFrame *GetFlyFrame( const SwFrame *pCurrFrame ) const; // creates for itself a new FlyFrameFormat. void CopyFlyFormat( SwDoc& rDoc ); }; inline SwFlyInContentFrame *SwTextFlyCnt::GetFlyFrame( const SwFrame *pCurrFrame ) { return GetFlyFrame_( pCurrFrame ); } inline const SwFlyInContentFrame *SwTextFlyCnt::GetFlyFrame( const SwFrame *pCurrFrame ) const { return const_cast(this)->GetFlyFrame_( pCurrFrame ); } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ n value='distro/collabora/cd-5.3'>distro/collabora/cd-5.3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/xmlsecurity/qa
AgeCommit message (Expand)Author
2024-03-28tdf#146619 Remove unused #includes from C/C++ filesRafał Dobrakowski
2024-01-30tdf#105844 unotest,xmlsecurity: fix tests on MacOSXMichael Stahl
2024-01-23Make wholesome ODF package encryption the defaultThorsten Behrens
2024-01-11Fix typoAndrea Gelmini
2024-01-11tdf#105844 add test for ODF wholesome encryption with macro signatureMichael Stahl
2024-01-03UnoApiTest::loadFromURL -> UnoApiTest::loadFromFileMike Kaganski
2023-11-19Extended loplugin:ostr: xmlsecurityStephan Bergmann
2023-10-20Extended loplugin:ostr: Automatic rewrite O[U]StringLiteral: xmlsecurityStephan Bergmann
2023-10-15Repurpose loplugin:stringstatic for O[U]String vars that can be constexprStephan Bergmann
2023-08-27Fix typoAndrea Gelmini
2023-08-26XMLSecurity Module Documentation UpdateTokieSan
2023-06-16tdf#146547 sfx2: allow read-only documents to be modifiedMichael Stahl
2023-05-16xmlsecurity: do not run the test with HAVE_FEATURE_PDFIMPORTXisco Fauli
2023-04-17Remove some unused includesMiklos Vajna
2023-01-05Revert all the recent loplugin:unocast changesStephan Bergmann
2022-12-22loplugin:unocast (xmlsecurity::Certificate)Stephan Bergmann
2022-12-01CppunitTest_xmlsecurity_signing2: inherit from UnoApiXmlTestXisco Fauli
2022-11-23UnoApiTest: factor out createTempFileXisco Fauli
2022-11-23CppunitTest_xmlsecurity_signing: inherit from UnoApiXmlTestXisco Fauli
2022-09-29split utl::TempFile into fast and named variantsNoel Grandin
2022-09-29use more string_view in xmlsecurityNoel Grandin
2022-07-29Verify signing certificate cryptographically before use in testsMike Kaganski
2022-07-20tdf#127236 vcl: fix missing encryption of PDF images during exportMiklos Vajna
2022-05-05tdf#145312: xmlsecurity_pdfsigning: Add unittestXisco Fauli
2022-05-03Just use Any ctor instead of makeAny in xmlsecurityStephan Bergmann
2022-03-01Fix the test failing when invalid certificate is in cert storeMike Kaganski
2021-11-24Rename o3tl::underlyingEnumValue to o3tl::to_underlying to match C++23Mike Kaganski