Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #ifndef INCLUDED_SVGIO_INC_SVGIO_SVGREADER_SVGTEXTPATHNODE_HXX
21 : #define INCLUDED_SVGIO_INC_SVGIO_SVGREADER_SVGTEXTPATHNODE_HXX
22 :
23 : #include <svgio/svgreader/svgnode.hxx>
24 : #include <svgio/svgreader/svgstyleattributes.hxx>
25 : #include <svgio/svgreader/svgpathnode.hxx>
26 :
27 : namespace svgio
28 : {
29 : namespace svgreader
30 : {
31 : class SvgTextPathNode : public SvgNode
32 : {
33 : private:
34 : /// use styles
35 : SvgStyleAttributes maSvgStyleAttributes;
36 :
37 : /// link to path content. If maXLink
38 : /// is set, the node can be fetched on demand
39 : OUString maXLink;
40 :
41 : /// variable scan values, dependent of given XAttributeList
42 : SvgNumber maStartOffset;
43 :
44 : /// bitfield
45 : bool mbMethod : 1; // true = align, false = stretch
46 : bool mbSpacing : 1; // true = auto, false = exact
47 :
48 : public:
49 : SvgTextPathNode(
50 : SvgDocument& rDocument,
51 : SvgNode* pParent);
52 : virtual ~SvgTextPathNode();
53 :
54 : virtual const SvgStyleAttributes* getSvgStyleAttributes() const SAL_OVERRIDE;
55 : virtual void parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent) SAL_OVERRIDE;
56 : void decomposePathNode(
57 : const drawinglayer::primitive2d::Primitive2DSequence& rPathContent,
58 : drawinglayer::primitive2d::Primitive2DSequence& rTarget,
59 : const basegfx::B2DPoint& rTextStart) const;
60 : bool isValid() const;
61 :
62 : /// StartOffset content
63 0 : const SvgNumber& getStartOffset() const { return maStartOffset; }
64 0 : void setStartOffset(const SvgNumber& rStartOffset = SvgNumber()) { maStartOffset = rStartOffset; }
65 :
66 : /// Method content
67 : bool getMethod() const { return mbMethod; }
68 0 : void setMethod(bool bNew) { mbMethod = bNew; }
69 :
70 : /// Spacing content
71 : bool getSpacing() const { return mbSpacing; }
72 0 : void setSpacing(bool bNew) { mbSpacing = bNew; }
73 : };
74 : } // end of namespace svgreader
75 : } // end of namespace svgio
76 :
77 : #endif // INCLUDED_SVGIO_INC_SVGIO_SVGREADER_SVGTEXTPATHNODE_HXX
78 :
79 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|