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 #include <svx/svdoattr.hxx>
21 #include <svx/svdmodel.hxx>
22 #include <svl/hint.hxx>
23 #include <svl/itemset.hxx>
24 #include <svx/xdef.hxx>
25 #include <svx/xlineit0.hxx>
26 #include <svx/xfillit0.hxx>
27 #include <svx/xlnwtit.hxx>
28 #include <svx/sdr/properties/properties.hxx>
30 using namespace com::sun::star
;
32 SdrAttrObj::SdrAttrObj(SdrModel
& rSdrModel
)
33 : SdrObject(rSdrModel
)
37 SdrAttrObj::SdrAttrObj(SdrModel
& rSdrModel
, SdrAttrObj
const& rSource
)
38 : SdrObject(rSdrModel
, rSource
)
42 SdrAttrObj::~SdrAttrObj() {}
44 const tools::Rectangle
& SdrAttrObj::GetSnapRect() const
48 const_cast<SdrAttrObj
*>(this)->RecalcSnapRect();
49 const_cast<SdrAttrObj
*>(this)->m_bSnapRectDirty
= false;
55 // syntactical sugar for ItemSet accesses
56 void SdrAttrObj::Notify(SfxBroadcaster
& /*rBC*/, const SfxHint
& rHint
)
58 bool bDataChg(SfxHintId::DataChanged
== rHint
.GetId());
62 tools::Rectangle aBoundRect
= GetLastBoundRect();
64 SetBoundAndSnapRectsDirty(/*bNotMyself*/ true);
66 // This may have led to object change
68 BroadcastObjectChange();
69 SendUserCall(SdrUserCallType::ChangeAttr
, aBoundRect
);
73 sal_Int32
SdrAttrObj::ImpGetLineWdt() const
77 if (drawing::LineStyle_NONE
!= GetObjectItem(XATTR_LINESTYLE
).GetValue())
79 nRetval
= GetObjectItem(XATTR_LINEWIDTH
).GetValue();
85 bool SdrAttrObj::HasFill() const
88 && GetProperties().GetObjectItemSet().Get(XATTR_FILLSTYLE
).GetValue()
89 != drawing::FillStyle_NONE
;
92 bool SdrAttrObj::HasLine() const
94 return GetProperties().GetObjectItemSet().Get(XATTR_LINESTYLE
).GetValue()
95 != drawing::LineStyle_NONE
;
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */