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 #ifndef INCLUDED_SVX_SDR_PROPERTIES_TEXTPROPERTIES_HXX
21 #define INCLUDED_SVX_SDR_PROPERTIES_TEXTPROPERTIES_HXX
23 #include <svx/itextprovider.hxx>
24 #include <sdr/properties/attributeproperties.hxx>
31 class TextProperties
: public AttributeProperties
34 // #i101556# versioning support
38 // create a new itemset
39 virtual std::unique_ptr
<SfxItemSet
> CreateObjectSpecificItemSet(SfxItemPool
& rPool
) override
;
41 // Do the ItemChange, may do special handling
42 virtual void ItemChange(const sal_uInt16 nWhich
, const SfxPoolItem
* pNewItem
= nullptr) override
;
44 // react on ItemSet changes
45 virtual void ItemSetChanged(const SfxItemSet
& rSet
) override
;
47 /// Get the TextProvider related to our SdrObject
48 virtual const svx::ITextProvider
& getTextProvider() const;
52 explicit TextProperties(SdrObject
& rObj
);
54 // constructor for copying, but using new object
55 TextProperties(const TextProperties
& rProps
, SdrObject
& rObj
);
58 virtual ~TextProperties() override
;
60 // Clone() operator, normally just calls the local copy constructor
61 virtual std::unique_ptr
<BaseProperties
> Clone(SdrObject
& rObj
) const override
;
63 // set a new StyleSheet and broadcast
64 virtual void SetStyleSheet(SfxStyleSheet
* pNewStyleSheet
, bool bDontRemoveHardAttr
) override
;
66 // force default attributes for a specific object type, called from
67 // DefaultProperties::GetObjectItemSet() if a new ItemSet is created
68 virtual void ForceDefaultAttributes() override
;
70 // force all attributes which come from styles to hard attributes
71 // to be able to live without the style.
72 virtual void ForceStyleToHardAttributes() override
;
74 // This is the notifier from SfxListener
75 virtual void Notify(SfxBroadcaster
& rBC
, const SfxHint
& rHint
) override
;
77 // Set single item at the local ItemSet. *Does not use* AllowItemChange(),
78 // ItemChange(), PostItemChange() and ItemSetChanged() calls.
79 void SetObjectItemNoBroadcast(const SfxPoolItem
& rItem
);
81 // #i101556# versioning support
82 virtual sal_uInt32
getVersion() const override
;
84 } // end of namespace properties
85 } // end of namespace sdr
88 #endif // INCLUDED_SVX_SDR_PROPERTIES_TEXTPROPERTIES_HXX
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */