Bump version to 4.3-4
[LibreOffice.git] / writerfilter / source / dmapper / WrapPolygonHandler.hxx
blob371e310bc567ae28579fcf44a3ee89a35a4ead3d
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_WRITERFILTER_SOURCE_DMAPPER_WRAPPOLYGONHANDLER_HXX
21 #define INCLUDED_WRITERFILTER_SOURCE_DMAPPER_WRAPPOLYGONHANDLER_HXX
23 #include <deque>
24 #include <com/sun/star/drawing/PointSequenceSequence.hpp>
25 #include <resourcemodel/LoggedResources.hxx>
26 #include <resourcemodel/Fraction.hxx>
28 namespace writerfilter {
29 namespace dmapper {
31 class WrapPolygon
33 public:
34 typedef ::std::deque<css::awt::Point> Points_t;
35 typedef ::boost::shared_ptr<WrapPolygon> Pointer_t;
37 private:
38 Points_t mPoints;
40 public:
41 WrapPolygon();
42 virtual ~WrapPolygon();
44 void addPoint(const css::awt::Point & rPoint);
46 Points_t::const_iterator begin() const;
47 Points_t::const_iterator end() const;
48 Points_t::iterator begin();
49 Points_t::iterator end();
51 size_t size() const;
53 WrapPolygon::Pointer_t move(const css::awt::Point & rMove);
54 WrapPolygon::Pointer_t scale(const resourcemodel::Fraction & rFractionX, const resourcemodel::Fraction & rFractionY);
55 WrapPolygon::Pointer_t correctWordWrapPolygon(const css::awt::Size & rSrcSize);
56 css::drawing::PointSequenceSequence getPointSequenceSequence() const;
59 class WrapPolygonHandler : public LoggedProperties
61 public:
62 WrapPolygonHandler();
63 virtual ~WrapPolygonHandler();
65 WrapPolygon::Pointer_t getPolygon();
67 private:
68 WrapPolygon::Pointer_t mpPolygon;
70 sal_Int32 mnX;
71 sal_Int32 mnY;
73 // Properties
74 virtual void lcl_attribute(Id Name, Value & val) SAL_OVERRIDE;
75 virtual void lcl_sprm(Sprm & sprm) SAL_OVERRIDE;
81 #endif // INCLUDED_WRITERFILTER_SOURCE_DMAPPER_WRAPPOLYGONHANDLER_HXX
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */