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_SVX_SOURCE_TABLE_TABLEHANDLES_HXX
21 #define INCLUDED_SVX_SOURCE_TABLE_TABLEHANDLES_HXX
22 
23 #include <svx/sdr/overlay/overlayobject.hxx>
24 
25 #include <svx/svdhdl.hxx>
26 
27 
28 namespace sdr { namespace table {
29 
30 enum TableEdgeState { Empty, Invisible, Visible };
31 
32 struct TableEdge
33 {
34     sal_Int32 mnStart;
35     sal_Int32 mnEnd;
36     TableEdgeState meState;
37 
TableEdgesdr::table::TableEdge38     TableEdge() : mnStart(0), mnEnd(0), meState(Empty) {}
39 };
40 
41 typedef std::vector< TableEdge > TableEdgeVector;
42 
43 class TableEdgeHdl : public SdrHdl
44 {
45 public:
46     TableEdgeHdl( const Point& rPnt, bool bHorizontal, sal_Int32 nMin, sal_Int32 nMax, sal_Int32 nEdges );
47 
48     sal_Int32 GetValidDragOffset( const SdrDragStat& rDrag ) const;
49 
50     virtual PointerStyle GetPointer() const override;
51 
52     void SetEdge( sal_Int32 nEdge, sal_Int32 nStart, sal_Int32 nEnd, TableEdgeState nState );
53 
IsHorizontalEdge() const54     bool IsHorizontalEdge() const { return mbHorizontal; }
55 
56     basegfx::B2DPolyPolygon getSpecialDragPoly(const SdrDragStat& rDrag) const;
57     void getPolyPolygon(basegfx::B2DPolyPolygon& rVisible, basegfx::B2DPolyPolygon& rInvisible, const SdrDragStat* pDrag) const;
58 
59 protected:
60     // create marker for this kind
61     virtual void CreateB2dIAObject() override;
62 
63 private:
64     bool const mbHorizontal;
65     sal_Int32 mnMin, mnMax;
66     TableEdgeVector maEdges;
67 };
68 
69 class TableBorderHdl : public SdrHdl
70 {
71 public:
72     TableBorderHdl(
73         const tools::Rectangle& rRect,
74         bool bAnimate);
75 
76     virtual PointerStyle GetPointer() const override;
getAnimate() const77     bool getAnimate() const { return mbAnimate; }
78 
79 protected:
80     // create marker for this kind
81     virtual void CreateB2dIAObject() override;
82 
83 private:
84     tools::Rectangle const maRectangle;
85 
86     bool const            mbAnimate : 1;
87 };
88 
89 } // end of namespace table
90 } // end of namespace sdr
91 
92 #endif
93 
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
95