Branch data 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 : : #ifndef _SVTOOLS_CUSTRITM_HXX
21 : : #define _SVTOOLS_CUSTRITM_HXX
22 : :
23 : : #include "svl/svldllapi.h"
24 : : #include <tools/debug.hxx>
25 : : #include <svl/poolitem.hxx>
26 : :
27 : : //============================================================================
28 : : DBG_NAMEEX_VISIBILITY(CntUnencodedStringItem, SVL_DLLPUBLIC)
29 : :
30 : : class SVL_DLLPUBLIC CntUnencodedStringItem: public SfxPoolItem
31 : : {
32 : : XubString m_aValue;
33 : :
34 : : public:
35 : : TYPEINFO();
36 : :
37 [ + - ]: 174690 : CntUnencodedStringItem(sal_uInt16 which = 0): SfxPoolItem(which)
38 : 174690 : { DBG_CTOR(CntUnencodedStringItem, 0); }
39 : :
40 : 172365 : CntUnencodedStringItem(sal_uInt16 which, const XubString & rTheValue):
41 [ + - ]: 172365 : SfxPoolItem(which), m_aValue(rTheValue)
42 : 172365 : { DBG_CTOR(CntUnencodedStringItem, 0); }
43 : :
44 : 184257 : CntUnencodedStringItem(const CntUnencodedStringItem & rItem):
45 [ + - ]: 184257 : SfxPoolItem(rItem), m_aValue(rItem.m_aValue)
46 : 184257 : { DBG_CTOR(CntUnencodedStringItem, 0); }
47 : :
48 [ + - ][ - + ]: 525598 : virtual ~CntUnencodedStringItem() { DBG_DTOR(CntUnencodedStringItem, 0); }
49 : :
50 : : virtual int operator ==(const SfxPoolItem & rItem) const;
51 : :
52 : : virtual int Compare(const SfxPoolItem & rWith) const;
53 : :
54 : : virtual int Compare(SfxPoolItem const & rWith,
55 : : IntlWrapper const & rIntlWrapper) const;
56 : :
57 : : virtual SfxItemPresentation GetPresentation(SfxItemPresentation,
58 : : SfxMapUnit, SfxMapUnit,
59 : : XubString & rText,
60 : : const IntlWrapper * = 0)
61 : : const;
62 : :
63 : : virtual bool QueryValue(com::sun::star::uno::Any& rVal,
64 : : sal_uInt8 nMemberId = 0) const;
65 : :
66 : : virtual bool PutValue(const com::sun::star::uno::Any& rVal,
67 : : sal_uInt8 nMemberId = 0);
68 : :
69 : : virtual SfxPoolItem * Clone(SfxItemPool * = 0) const;
70 : :
71 : 190481 : const XubString & GetValue() const { return m_aValue; }
72 : :
73 : : inline void SetValue(const XubString & rTheValue);
74 : : };
75 : :
76 : 3627 : inline void CntUnencodedStringItem::SetValue(const XubString & rTheValue)
77 : : {
78 : : DBG_ASSERT(GetRefCount() == 0,
79 : : "CntUnencodedStringItem::SetValue(): Pooled item");
80 : 3627 : m_aValue = rTheValue;
81 : 3627 : }
82 : :
83 : : #endif // _SVTOOLS_CUSTRITM_HXX
84 : :
85 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|