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>
27 namespace sdr::properties
29 class TextProperties
: public AttributeProperties
32 // #i101556# versioning support
36 // create a new itemset
37 virtual std::unique_ptr
<SfxItemSet
> CreateObjectSpecificItemSet(SfxItemPool
& rPool
) override
;
39 // Do the ItemChange, may do special handling
40 virtual void ItemChange(const sal_uInt16 nWhich
, const SfxPoolItem
* pNewItem
= nullptr) override
;
42 // react on ItemSet changes
43 virtual void ItemSetChanged(const SfxItemSet
& rSet
) override
;
45 /// Get the TextProvider related to our SdrObject
46 virtual const svx::ITextProvider
& getTextProvider() const;
50 explicit TextProperties(SdrObject
& rObj
);
52 // constructor for copying, but using new object
53 TextProperties(const TextProperties
& rProps
, SdrObject
& rObj
);
56 virtual ~TextProperties() override
;
58 // Clone() operator, normally just calls the local copy constructor
59 virtual std::unique_ptr
<BaseProperties
> Clone(SdrObject
& rObj
) const override
;
61 // set a new StyleSheet and broadcast
62 virtual void SetStyleSheet(SfxStyleSheet
* pNewStyleSheet
, bool bDontRemoveHardAttr
) override
;
64 // force default attributes for a specific object type, called from
65 // DefaultProperties::GetObjectItemSet() if a new ItemSet is created
66 virtual void ForceDefaultAttributes() override
;
68 // force all attributes which come from styles to hard attributes
69 // to be able to live without the style.
70 virtual void ForceStyleToHardAttributes() override
;
72 // This is the notifier from SfxListener
73 virtual void Notify(SfxBroadcaster
& rBC
, const SfxHint
& rHint
) override
;
75 // Set single item at the local ItemSet. *Does not use* AllowItemChange(),
76 // ItemChange(), PostItemChange() and ItemSetChanged() calls.
77 void SetObjectItemNoBroadcast(const SfxPoolItem
& rItem
);
79 // #i101556# versioning support
80 virtual sal_uInt32
getVersion() const override
;
82 } // end of namespace sdr::properties
85 #endif // INCLUDED_SVX_SDR_PROPERTIES_TEXTPROPERTIES_HXX
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */