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 _SVX_XIT_HXX
21 : #define _SVX_XIT_HXX
22 :
23 : #include <svl/stritem.hxx>
24 : #include <svx/xtable.hxx>
25 : #include <svx/xdef.hxx>
26 : #include "svx/svxdllapi.h"
27 :
28 : /************************************************************************/
29 :
30 : class SfxItemPool;
31 : class NameOrIndex;
32 :
33 : typedef sal_Bool (*SvxCompareValueFunc)( const NameOrIndex* p1, const NameOrIndex* p2 );
34 :
35 : //-------------------
36 : // class NameOrIndex
37 : //-------------------
38 : class SVX_DLLPUBLIC NameOrIndex : public SfxStringItem
39 : {
40 : sal_Int32 nPalIndex;
41 :
42 : protected:
43 24422 : void Detach() { nPalIndex = -1; }
44 :
45 : public:
46 : TYPEINFO();
47 164 : NameOrIndex() { nPalIndex = -1; }
48 : NameOrIndex(sal_uInt16 nWhich, sal_Int32 nIndex);
49 : NameOrIndex(sal_uInt16 nWhich,
50 : const String& rName= String());
51 : NameOrIndex(sal_uInt16 nWhich, SvStream& rIn);
52 : NameOrIndex(const NameOrIndex& rNameOrIndex);
53 96830 : ~NameOrIndex() {};
54 :
55 : virtual int operator==(const SfxPoolItem& rItem) const;
56 : virtual SfxPoolItem* Clone(SfxItemPool* pPool = 0) const;
57 : virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nVer) const;
58 : virtual SvStream& Store(SvStream& rOut, sal_uInt16 nItemVersion ) const;
59 :
60 41655 : String GetName() const { return GetValue(); }
61 434 : void SetName(const String& rName) { SetValue(rName); }
62 0 : sal_Int32 GetIndex() const { return nPalIndex; }
63 : void SetIndex(sal_Int32 nIndex) { nPalIndex = nIndex; }
64 58448 : sal_Bool IsIndex() const { return (nPalIndex >= 0); }
65 :
66 : /** this static checks if the given NameOrIndex item has a unique name for its value.
67 : The returned String is a unique name for an item with this value in both given pools.
68 : Argument pPool2 can be null.
69 : If returned string equals NameOrIndex->GetName(), the name was already unique.
70 : */
71 : static String CheckNamedItem( const NameOrIndex* pCheckItem, const sal_uInt16 nWhich, const SfxItemPool* pPool1, const SfxItemPool* pPool2, SvxCompareValueFunc pCompareValueFunc, sal_uInt16 nPrefixResId, const XPropertyListRef &pDefaults );
72 : };
73 :
74 : #endif
75 :
76 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|