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 <rtl/ustring.hxx>
21 : #include <svl/itemset.hxx>
22 : #include <svl/poolitem.hxx>
23 : #include <tools/stream.hxx>
24 :
25 0 : SfxSetItem::SfxSetItem( sal_uInt16 which, const SfxItemSet &rSet) :
26 : SfxPoolItem(which),
27 0 : pSet(rSet.Clone(true))
28 : {
29 0 : }
30 :
31 :
32 :
33 0 : SfxSetItem::SfxSetItem( sal_uInt16 which, SfxItemSet *pS) :
34 : SfxPoolItem(which),
35 0 : pSet(pS)
36 : {
37 : DBG_ASSERT(pS, "SfxSetItem without set constructed" );
38 0 : }
39 :
40 :
41 :
42 0 : SfxSetItem::SfxSetItem( const SfxSetItem& rCopy, SfxItemPool *pPool ) :
43 0 : SfxPoolItem(rCopy.Which()),
44 0 : pSet(rCopy.pSet->Clone(true, pPool))
45 : {
46 0 : }
47 :
48 :
49 :
50 0 : SfxSetItem::~SfxSetItem()
51 : {
52 0 : delete pSet; pSet = 0;
53 0 : }
54 :
55 :
56 :
57 0 : bool SfxSetItem::operator==( const SfxPoolItem& rCmp) const
58 : {
59 : DBG_ASSERT( SfxPoolItem::operator==( rCmp ), "unequal type" );
60 0 : return *pSet == *(((const SfxSetItem &)rCmp).pSet);
61 : }
62 :
63 :
64 :
65 0 : SfxItemPresentation SfxSetItem::GetPresentation
66 : (
67 : SfxItemPresentation /*ePresentation*/,
68 : SfxMapUnit /*eCoreMetric*/,
69 : SfxMapUnit /*ePresentationMetric*/,
70 : OUString& /*rText*/,
71 : const IntlWrapper *
72 : ) const
73 : {
74 0 : return SFX_ITEM_PRESENTATION_NONE;
75 : }
76 :
77 :
78 :
79 0 : SvStream& SfxSetItem::Store(SvStream& rStream, sal_uInt16) const
80 : {
81 0 : GetItemSet().Store(rStream);
82 0 : return rStream;
83 : }
84 :
85 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|