bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / svx / xit.hxx
blob871a13468b7ec5be37c30c1cff75d532a20d32a7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_XIT_HXX
21 #define INCLUDED_SVX_XIT_HXX
23 #include <svl/stritem.hxx>
24 #include <svx/xtable.hxx>
25 #include <svx/xdef.hxx>
26 #include <svx/svxdllapi.h>
28 /************************************************************************/
30 class SfxItemPool;
31 class NameOrIndex;
33 typedef bool (*SvxCompareValueFunc)( const NameOrIndex* p1, const NameOrIndex* p2 );
36 // class NameOrIndex
38 class SVX_DLLPUBLIC NameOrIndex : public SfxStringItem
40 sal_Int32 nPalIndex;
42 protected:
43 void Detach() { nPalIndex = -1; }
45 public:
46 NameOrIndex() { nPalIndex = -1; }
47 NameOrIndex(sal_uInt16 nWhich, sal_Int32 nIndex);
48 NameOrIndex(sal_uInt16 nWhich, const OUString& rName);
49 NameOrIndex(const NameOrIndex& rNameOrIndex);
51 virtual bool operator==(const SfxPoolItem& rItem) const override;
52 virtual SfxPoolItem* Clone(SfxItemPool* pPool = nullptr) const override;
54 OUString const & GetName() const { return GetValue(); }
55 void SetName(const OUString& rName) { SetValue(rName); }
56 bool IsIndex() const { return (nPalIndex >= 0); }
58 /** this static checks if the given NameOrIndex item has a unique name for its value.
59 The returned String is a unique name for an item with this value in both given pools.
60 Argument pPool2 can be null.
61 If returned string equals NameOrIndex->GetName(), the name was already unique.
63 static OUString CheckNamedItem( const NameOrIndex* pCheckItem, const sal_uInt16 nWhich, const SfxItemPool* pPool1, SvxCompareValueFunc pCompareValueFunc, const char* pPrefixResId, const XPropertyListRef &pDefaults );
65 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
68 #endif
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */