use insert function instead of for loop
[LibreOffice.git] / oox / source / drawingml / diagram / layoutatomvisitorbase.hxx
blob49c83f67455de4ccd4cfc4a624114c6442370794
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_OOX_SOURCE_DRAWINGML_DIAGRAM_LAYOUTATOMVISITORBASE_HXX
21 #define INCLUDED_OOX_SOURCE_DRAWINGML_DIAGRAM_LAYOUTATOMVISITORBASE_HXX
23 #include "diagram.hxx"
24 #include "diagramlayoutatoms.hxx"
26 namespace oox::drawingml {
28 struct LayoutAtomVisitor
30 virtual ~LayoutAtomVisitor() {}
31 virtual void visit(ConstraintAtom& rAtom) = 0;
32 virtual void visit(RuleAtom& rAtom) = 0;
33 virtual void visit(AlgAtom& rAtom) = 0;
34 virtual void visit(ForEachAtom& rAtom) = 0;
35 virtual void visit(ConditionAtom& rAtom) = 0;
36 virtual void visit(ChooseAtom& rAtom) = 0;
37 virtual void visit(LayoutNode& rAtom) = 0;
38 virtual void visit(ShapeAtom& rAtom) = 0;
41 // basic visitor implementation that follows if/else and for-each nodes
42 // and keeps track of current position in data tree
43 class LayoutAtomVisitorBase : public LayoutAtomVisitor
45 public:
46 LayoutAtomVisitorBase(const Diagram& rDgm, const svx::diagram::Point* pRootPoint) :
47 mrDgm(rDgm),
48 mpCurrentNode(pRootPoint),
49 mnCurrIdx(0),
50 mnCurrStep(0),
51 mnCurrCnt(0),
52 meLookFor(LAYOUT_NODE)
55 void defaultVisit(LayoutAtom const& rAtom);
57 using LayoutAtomVisitor::visit;
58 virtual void visit(ForEachAtom& rAtom) override;
59 virtual void visit(ConditionAtom& rAtom) override;
60 virtual void visit(ChooseAtom& rAtom) override;
61 virtual void visit(LayoutNode& rAtom) override;
63 protected:
64 const Diagram& mrDgm;
65 const svx::diagram::Point* mpCurrentNode;
66 sal_Int32 mnCurrIdx;
67 sal_Int32 mnCurrStep;
68 sal_Int32 mnCurrCnt;
69 enum {LAYOUT_NODE, CONSTRAINT, ALGORITHM, RULE} meLookFor;
72 class ShallowPresNameVisitor : public LayoutAtomVisitorBase
74 public:
75 explicit ShallowPresNameVisitor(const Diagram& rDgm, const svx::diagram::Point* pRootPoint) :
76 LayoutAtomVisitorBase(rDgm, pRootPoint),
77 mnCnt(0)
80 using LayoutAtomVisitorBase::visit;
81 virtual void visit(ConstraintAtom& rAtom) override;
82 virtual void visit(RuleAtom& rAtom) override;
83 virtual void visit(AlgAtom& rAtom) override;
84 virtual void visit(ForEachAtom& rAtom) override;
85 virtual void visit(LayoutNode& rAtom) override;
86 virtual void visit(ShapeAtom& rAtom) override;
88 size_t getCount() const { return mnCnt; }
90 private:
91 size_t mnCnt;
96 #endif
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */