tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / svx / source / sdr / properties / rectangleproperties.cxx
blob9242fa5f9ac58e09c845911cf2e5195d935bfdf2
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 #include <sdr/properties/rectangleproperties.hxx>
21 #include <svx/svdorect.hxx>
24 namespace sdr::properties
26 RectangleProperties::RectangleProperties(SdrObject& rObj)
27 : TextProperties(rObj)
31 RectangleProperties::RectangleProperties(const RectangleProperties& rProps, SdrObject& rObj)
32 : TextProperties(rProps, rObj)
36 RectangleProperties::~RectangleProperties()
40 std::unique_ptr<BaseProperties> RectangleProperties::Clone(SdrObject& rObj) const
42 return std::unique_ptr<BaseProperties>(new RectangleProperties(*this, rObj));
45 void RectangleProperties::ItemSetChanged(std::span< const SfxPoolItem* const > aChangedItems, sal_uInt16 nDeletedWhich, bool bAdjustTextFrameWidthAndHeight)
47 SdrRectObj& rObj = static_cast<SdrRectObj&>(GetSdrObject());
49 // call parent
50 TextProperties::ItemSetChanged(aChangedItems, nDeletedWhich, bAdjustTextFrameWidthAndHeight);
52 // local changes
53 rObj.SetXPolyDirty();
56 // set a new StyleSheet and broadcast
57 void RectangleProperties::SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr,
58 bool bBroadcast, bool bAdjustTextFrameWidthAndHeight)
60 // call parent (always first thing to do, may create the SfxItemSet)
61 TextProperties::SetStyleSheet(pNewStyleSheet, bDontRemoveHardAttr, bBroadcast, bAdjustTextFrameWidthAndHeight);
63 // local changes
64 SdrRectObj& rObj = static_cast<SdrRectObj&>(GetSdrObject());
65 rObj.SetXPolyDirty();
67 } // end of namespace
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */