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 : OUString m_aValue;
33 :
34 : public:
35 : TYPEINFO();
36 :
37 115307 : CntUnencodedStringItem(sal_uInt16 which = 0): SfxPoolItem(which)
38 115307 : { DBG_CTOR(CntUnencodedStringItem, 0); }
39 :
40 84384 : CntUnencodedStringItem(sal_uInt16 which, const OUString & rTheValue):
41 84384 : SfxPoolItem(which), m_aValue(rTheValue)
42 84384 : { DBG_CTOR(CntUnencodedStringItem, 0); }
43 :
44 113452 : CntUnencodedStringItem(const CntUnencodedStringItem & rItem):
45 113452 : SfxPoolItem(rItem), m_aValue(rItem.m_aValue)
46 113452 : { DBG_CTOR(CntUnencodedStringItem, 0); }
47 :
48 311519 : 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 : OUString & 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 96235 : const OUString & GetValue() const { return m_aValue; }
72 :
73 : inline void SetValue(const OUString & rTheValue);
74 : };
75 :
76 2617 : inline void CntUnencodedStringItem::SetValue(const OUString & rTheValue)
77 : {
78 : DBG_ASSERT(GetRefCount() == 0,
79 : "CntUnencodedStringItem::SetValue(): Pooled item");
80 2617 : m_aValue = rTheValue;
81 2617 : }
82 :
83 : #endif // _SVTOOLS_CUSTRITM_HXX
84 :
85 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|