/* -*- 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_DRAWINGLAYER_ATTRIBUTE_SDRLINEATTRIBUTE_HXX #define INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRLINEATTRIBUTE_HXX #include #include #include #include #include // predefines namespace basegfx { class BColor; } namespace drawinglayer::attribute { class ImpSdrLineAttribute; } namespace drawinglayer::attribute { class DRAWINGLAYER_DLLPUBLIC SdrLineAttribute { public: typedef o3tl::cow_wrapper< ImpSdrLineAttribute > ImplType; private: ImplType mpSdrLineAttribute; public: /// constructors/assignmentoperator/destructor SdrLineAttribute( basegfx::B2DLineJoin eJoin, double fWidth, double fTransparence, const basegfx::BColor& rColor, css::drawing::LineCap eCap, std::vector< double >&& rDotDashArray, double fFullDotDashLen); SdrLineAttribute(); SdrLineAttribute(const SdrLineAttribute&); SdrLineAttribute(SdrLineAttribute&&); SdrLineAttribute& operator=(const SdrLineAttribute&); SdrLineAttribute& operator=(SdrLineAttribute&&); ~SdrLineAttribute(); // checks if the incarnation is default constructed bool isDefault() const; // compare operator bool operator==(const SdrLineAttribute& rCandidate) const; // data access basegfx::B2DLineJoin getJoin() const; double getWidth() const; double getTransparence() const; const basegfx::BColor& getColor() const; const ::std::vector< double >& getDotDashArray() const; double getFullDotDashLen() const; css::drawing::LineCap getCap() const; }; } // end of namespace drawinglayer::attribute #endif //INCLUDED_DRAWINGLAYER_ATTRIBUTE_SDRLINEATTRIBUTE_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 'distro/collabora/co-24.04.4'>distro/collabora/co-24.04.4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-04-30loplugin:ostr in packageNoel Grandin
2024-01-27Drop std::as_const from css::uno::Sequence iterationsMike Kaganski
2023-12-20package: ODF encryption: fix 2 GPG problemsMichael Stahl
2023-12-20tdf#105844 offapi,package,sfx2: use Argon2 for wholesome ODF encryptionMichael Stahl
2023-12-14OFFICE-3708: package: produce correct SHA256 URLMichael Stahl
2023-12-14tdf#105844 package: remove root document from manifest ...Michael Stahl
2023-12-14package: GPG encryption: prevent manifest:start-key-generation ...Michael Stahl
2023-12-13tdf#105844 package,sfx2: remove checksum infoleak when using AEADMichael Stahl
2023-12-11tdf#105844 offapi,package,sfx2,xmlsecurity: add AEAD w/ AES GCMMichael Stahl
2023-10-23Extended loplugin:ostr: Rewrite some O[U]StringLiteral -> O[U]StringStephan Bergmann
2023-10-20Extended loplugin:ostr: Automatic rewrite O[U]StringLiteral: packageStephan Bergmann
2023-06-26new loplugin:constexprliteralNoel Grandin
2023-01-15Merge SvXMLAttributeList to comphelper::AttributeListMike Kaganski
2022-01-30Recheck modules [o-r]* with IWYUGabor Kelemen
2021-11-26loplugin:stringliteraldefine in packageNoel Grandin
2021-11-24loplugin:stringliteraldefine in comphelperNoel Grandin
2021-03-25const OUString -> const OUStringLiteralMike Kaganski
2021-02-21loplugin:refcounting in package..saxNoel
2020-12-11Adapt the remaining OUString functions to std string_viewStephan Bergmann
2020-05-18package: ODF export: fix position of manifest:start-key-generation childMichael Stahl
2020-05-15package: OFFICE-3940 ODF 1.3 export of OpenPGP encryptionMichael Stahl
2019-10-15new loplugin:bufferaddNoel Grandin
2019-08-22Simplify Sequence iterations in packageArkadiy Illarionov
2018-07-30Add missing sal/log.hxx headersGabor Kelemen
2018-06-05package: fix pretty-printing in manifest exporterThorsten Behrens
2018-04-11new loplugin:unusedvariablemoreNoel Grandin
2018-03-14tdf#116351: fix re-use of AttributeList on PGP manifesthimajin100000
2018-03-05drop sax::tools::*base64 methodsNoel Grandin
2018-01-12More loplugin:cstylecast: packageStephan Bergmann
2017-12-07gpg4libre: add manifest entries for gpg encryptionThorsten Behrens
2017-10-23loplugin:includeform: packageStephan Bergmann
2017-07-31loplugin:oncevarNoel Grandin
2017-07-13use more OUString::operator== in forms..salNoel Grandin