tdf#163083: try to release lock to avoid deadlock
[LibreOffice.git] / sw / inc / ccoll.hxx
blob5c9d1f8b9c715a408abe36a0fdba9c6ac3e447fa
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 .
19 #pragma once
21 #include <rtl/ustring.hxx>
22 #include <svl/poolitem.hxx>
23 #include <tools/solar.h>
24 #include "swdllapi.h"
26 enum class Master_CollCondition;
28 #define COND_COMMAND_COUNT 28
30 struct CommandStruct
32 Master_CollCondition nCnd;
33 sal_uInt32 nSubCond;
36 sal_Int16 GetCommandContextIndex( std::u16string_view rContextName );
37 OUString GetCommandContextByIndex( sal_Int16 nIndex );
39 class SW_DLLPUBLIC SwCondCollItem final : public SfxPoolItem
41 static const CommandStruct s_aCmds[COND_COMMAND_COUNT];
43 OUString m_sStyles[COND_COMMAND_COUNT];
45 public:
46 SwCondCollItem();
47 virtual ~SwCondCollItem() override;
49 SwCondCollItem(SwCondCollItem const &) = default;
50 SwCondCollItem(SwCondCollItem &&) = default;
51 SwCondCollItem & operator =(SwCondCollItem const &) = delete; // due to SfxPoolItem
52 SwCondCollItem & operator =(SwCondCollItem &&) = delete; // due to SfxPoolItem
54 virtual SwCondCollItem* Clone( SfxItemPool *pPool = nullptr ) const override;
55 virtual bool operator==( const SfxPoolItem& ) const override;
57 static const CommandStruct* GetCmds() { return s_aCmds; }
59 OUString GetStyle(sal_uInt16 nPos) const;
60 void SetStyle(const OUString* pStyle, sal_uInt16 nPos);
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */