Line data Source code
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 : #include <svx/sdr/properties/graphicproperties.hxx>
21 : #include <svl/itemset.hxx>
22 : #include <svl/style.hxx>
23 : #include <svx/svddef.hxx>
24 : #include <editeng/eeitem.hxx>
25 : #include <svx/svdograf.hxx>
26 : #include <svx/sdgcpitm.hxx>
27 :
28 :
29 :
30 : namespace sdr
31 : {
32 : namespace properties
33 : {
34 : // create a new itemset
35 0 : SfxItemSet& GraphicProperties::CreateObjectSpecificItemSet(SfxItemPool& rPool)
36 : {
37 : return *(new SfxItemSet(rPool,
38 :
39 : // range from SdrAttrObj
40 : SDRATTR_START, SDRATTR_SHADOW_LAST,
41 : SDRATTR_MISC_FIRST, SDRATTR_MISC_LAST,
42 : SDRATTR_TEXTDIRECTION, SDRATTR_TEXTDIRECTION,
43 :
44 : // range from SdrGrafObj
45 : SDRATTR_GRAF_FIRST, SDRATTR_GRAF_LAST,
46 :
47 : // range from SdrTextObj
48 : EE_ITEMS_START, EE_ITEMS_END,
49 :
50 : // end
51 0 : 0, 0));
52 : }
53 :
54 0 : GraphicProperties::GraphicProperties(SdrObject& rObj)
55 0 : : RectangleProperties(rObj)
56 : {
57 0 : }
58 :
59 0 : GraphicProperties::GraphicProperties(const GraphicProperties& rProps, SdrObject& rObj)
60 0 : : RectangleProperties(rProps, rObj)
61 : {
62 0 : }
63 :
64 0 : GraphicProperties::~GraphicProperties()
65 : {
66 0 : }
67 :
68 0 : BaseProperties& GraphicProperties::Clone(SdrObject& rObj) const
69 : {
70 0 : return *(new GraphicProperties(*this, rObj));
71 : }
72 :
73 0 : void GraphicProperties::ItemSetChanged(const SfxItemSet& rSet)
74 : {
75 0 : SdrGrafObj& rObj = (SdrGrafObj&)GetSdrObject();
76 :
77 : // local changes
78 0 : rObj.SetXPolyDirty();
79 :
80 : // #i29367# Update GraphicAttr, too. This was formerly
81 : // triggered by SdrGrafObj::Notify, which is no longer
82 : // called nowadays. BTW: strictly speaking, the whole
83 : // ImpSetAttrToGrafInfostuff could
84 : // be dumped, when SdrGrafObj::aGrafInfo is removed and
85 : // always created on the fly for repaint.
86 0 : rObj.ImpSetAttrToGrafInfo();
87 :
88 : // call parent
89 0 : RectangleProperties::ItemSetChanged(rSet);
90 0 : }
91 :
92 0 : void GraphicProperties::SetStyleSheet(SfxStyleSheet* pNewStyleSheet, bool bDontRemoveHardAttr)
93 : {
94 0 : SdrGrafObj& rObj = (SdrGrafObj&)GetSdrObject();
95 :
96 : // local changes
97 0 : rObj.SetXPolyDirty();
98 :
99 : // call parent
100 0 : RectangleProperties::SetStyleSheet(pNewStyleSheet, bDontRemoveHardAttr);
101 :
102 : // local changes
103 0 : rObj.ImpSetAttrToGrafInfo();
104 0 : }
105 :
106 0 : void GraphicProperties::ForceDefaultAttributes()
107 : {
108 : // call parent
109 0 : RectangleProperties::ForceDefaultAttributes();
110 :
111 : // force ItemSet
112 0 : GetObjectItemSet();
113 :
114 0 : mpItemSet->Put( SdrGrafLuminanceItem( 0 ) );
115 0 : mpItemSet->Put( SdrGrafContrastItem( 0 ) );
116 0 : mpItemSet->Put( SdrGrafRedItem( 0 ) );
117 0 : mpItemSet->Put( SdrGrafGreenItem( 0 ) );
118 0 : mpItemSet->Put( SdrGrafBlueItem( 0 ) );
119 0 : mpItemSet->Put( SdrGrafGamma100Item( 100 ) );
120 0 : mpItemSet->Put( SdrGrafTransparenceItem( 0 ) );
121 0 : mpItemSet->Put( SdrGrafInvertItem( false ) );
122 0 : mpItemSet->Put( SdrGrafModeItem( GRAPHICDRAWMODE_STANDARD ) );
123 0 : mpItemSet->Put( SdrGrafCropItem( 0, 0, 0, 0 ) );
124 0 : }
125 : } // end of namespace properties
126 : } // end of namespace sdr
127 :
128 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|