LibreOffice Module svx (master) 1
oleproperties.cxx
Go to the documentation of this file.
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
21#include <svx/xfillit0.hxx>
22#include <svx/xlineit0.hxx>
23#include <svx/svdobj.hxx>
24#include <svx/svdmodel.hxx>
25
26namespace sdr::properties
27{
29 {
30 SfxStyleSheet* pStyleSheet(GetSdrObject().getSdrModelFromSdrObject().GetDefaultStyleSheetForSdrGrafObjAndSdrOle2Obj());
31
32 if(pStyleSheet)
33 {
34 // do not delete hard attributes when setting dsefault Style
35 SetStyleSheet(pStyleSheet, true, true);
36 }
37 else
38 {
39 SetMergedItem(XFillStyleItem(com::sun::star::drawing::FillStyle_NONE));
40 SetMergedItem(XLineStyleItem(com::sun::star::drawing::LineStyle_NONE));
41 }
42 }
43
46 {
47 }
48
50 : RectangleProperties(rProps, rObj)
51 {
52 }
53
55 {
56 }
57
58 std::unique_ptr<BaseProperties> OleProperties::Clone(SdrObject& rObj) const
59 {
60 return std::unique_ptr<BaseProperties>(new OleProperties(*this, rObj));
61 }
62
64 {
65 // call parent
67
68 // force ItemSet
70 }
71} // end of namespace
72
73/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Abstract DrawObject.
Definition: svdobj.hxx:260
virtual const SfxItemSet & GetObjectItemSet() const override
const SdrObject & GetSdrObject() const
Definition: properties.cxx:43
virtual void SetMergedItem(const SfxPoolItem &rItem)
Definition: properties.cxx:71
virtual void ForceDefaultAttributes() override
virtual std::unique_ptr< BaseProperties > Clone(SdrObject &rObj) const override
virtual void applyDefaultStyleSheetFromSdrModel() override
virtual ~OleProperties() override
virtual void SetStyleSheet(SfxStyleSheet *pNewStyleSheet, bool bDontRemoveHardAttr, bool bBroadcast) override
virtual void ForceDefaultAttributes() override