1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 WRAP_POLYGON_HANDLER_HXX
21 #define WRAP_POLYGON_HANDLER_HXX
24 #include <com/sun/star/drawing/PointSequenceSequence.hpp>
25 #include <resourcemodel/LoggedResources.hxx>
26 #include <resourcemodel/Fraction.hxx>
28 namespace writerfilter
{
31 using namespace ::com::sun::star
;
32 using resourcemodel::Fraction
;
37 typedef ::std::deque
<awt::Point
> Points_t
;
38 typedef ::boost::shared_ptr
<WrapPolygon
> Pointer_t
;
45 virtual ~WrapPolygon();
47 void addPoint(const awt::Point
& rPoint
);
49 Points_t::const_iterator
begin() const;
50 Points_t::const_iterator
end() const;
51 Points_t::iterator
begin();
52 Points_t::iterator
end();
56 WrapPolygon::Pointer_t
move(const awt::Point
& rMove
);
57 WrapPolygon::Pointer_t
scale(const Fraction
& rFractionX
, const Fraction
& rFractionY
);
58 WrapPolygon::Pointer_t
correctWordWrapPolygon(const awt::Size
& rSrcSize
, const awt::Size
& rDstSize
);
59 drawing::PointSequenceSequence
getPointSequenceSequence() const;
62 class WrapPolygonHandler
: public LoggedProperties
66 virtual ~WrapPolygonHandler();
68 WrapPolygon::Pointer_t
getPolygon();
71 WrapPolygon::Pointer_t mpPolygon
;
77 virtual void lcl_attribute(Id Name
, Value
& val
);
78 virtual void lcl_sprm(Sprm
& sprm
);
84 #endif // WRAP_POLYGON_HANDLER_HXX
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */