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_XDASH_HXX 21 #define INCLUDED_SVX_XDASH_HXX 22 23 24 25 26 #include <svx/svxdllapi.h> 27 #include <com/sun/star/drawing/DashStyle.hpp> 28 29 #include <vector> 30 31 class SVXCORE_DLLPUBLIC XDash final 32 { 33 css::drawing::DashStyle m_eDash; 34 sal_uInt16 m_nDots; 35 sal_uInt16 m_nDashes; 36 double m_nDotLen; 37 double m_nDashLen; 38 double m_nDistance; 39 40 public: 41 XDash(css::drawing::DashStyle eDash = css::drawing::DashStyle_RECT, 42 sal_uInt16 nDots = 1, double nDotLen = 20, 43 sal_uInt16 nDashes = 1, double nDashLen = 20, double nDistance = 20); 44 45 bool operator==(const XDash& rDash) const; 46 SetDashStyle(css::drawing::DashStyle eNewStyle)47 void SetDashStyle(css::drawing::DashStyle eNewStyle) { m_eDash = eNewStyle; } SetDots(sal_uInt16 nNewDots)48 void SetDots(sal_uInt16 nNewDots) { m_nDots = nNewDots; } SetDotLen(double nNewDotLen)49 void SetDotLen(double nNewDotLen) { m_nDotLen = nNewDotLen; } SetDashes(sal_uInt16 nNewDashes)50 void SetDashes(sal_uInt16 nNewDashes) { m_nDashes = nNewDashes; } SetDashLen(double nNewDashLen)51 void SetDashLen(double nNewDashLen) { m_nDashLen = nNewDashLen; } SetDistance(double nNewDistance)52 void SetDistance(double nNewDistance) { m_nDistance = nNewDistance; } 53 GetDashStyle() const54 css::drawing::DashStyle GetDashStyle() const { return m_eDash; } GetDots() const55 sal_uInt16 GetDots() const { return m_nDots; } GetDotLen() const56 double GetDotLen() const { return m_nDotLen; } GetDashes() const57 sal_uInt16 GetDashes() const { return m_nDashes; } GetDashLen() const58 double GetDashLen() const { return m_nDashLen; } GetDistance() const59 double GetDistance() const { return m_nDistance; } 60 61 // XDash is translated into an array of doubles which describe the lengths of the 62 // dashes, dots and empty passages. It returns the complete length of the full DashDot 63 // sequence and fills the given vector of doubles accordingly (also resizing, so deleting it). 64 double CreateDotDashArray(::std::vector< double >& rDotDashArray, double fLineWidth) const; 65 }; 66 67 #endif 68 69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 70
