1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_SWUICCOLL_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_INC_SWUICCOLL_HXX
22 #include <sfx2/tabdlg.hxx>
29 /// The Condition tab on the paragraph style dialog for conditional styles, e.g. Text Body.
30 class SwCondCollPage final
: public SfxTabPage
32 std::vector
<OUString
> m_aStrArr
;
34 const CommandStruct
*m_pCmds
;
37 std::unique_ptr
<weld::TreeView
> m_xTbLinks
;
38 std::unique_ptr
<weld::TreeView
> m_xStyleLB
;
39 std::unique_ptr
<weld::ComboBox
> m_xFilterLB
;
40 std::unique_ptr
<weld::Button
> m_xRemovePB
;
41 std::unique_ptr
<weld::Button
> m_xAssignPB
;
43 virtual DeactivateRC
DeactivatePage(SfxItemSet
*pSet
) override
;
45 DECL_LINK(AssignRemoveTreeListBoxHdl
, weld::TreeView
&, bool);
46 DECL_LINK(AssignRemoveClickHdl
, weld::Button
&, void);
47 DECL_LINK(SelectTreeListBoxHdl
, weld::TreeView
&, void);
48 DECL_LINK(SelectListBoxHdl
, weld::ComboBox
&, void);
49 void AssignRemove(const weld::Widget
*);
50 void SelectHdl(const weld::Widget
*);
52 static const WhichRangesContainer s_aPageRg
;
55 SwCondCollPage(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
&rSet
);
56 virtual ~SwCondCollPage() override
;
58 static std::unique_ptr
<SfxTabPage
> Create(weld::Container
* pPage
, weld::DialogController
* pController
, const SfxItemSet
*rSet
);
59 static const WhichRangesContainer
& GetRanges() { return s_aPageRg
; }
61 virtual bool FillItemSet( SfxItemSet
*rSet
) override
;
62 virtual void Reset (const SfxItemSet
*rSet
) override
;
64 void SetCollection( SwFormat
* pFormat
);
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */