Add Marathi autocorrect
[LibreOffice.git] / sw / source / uibase / inc / swuiccoll.hxx
blob8bdf59a22e403e9c5ade0b47795ad0035d255e6a
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 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_SWUICCOLL_HXX
20 #define INCLUDED_SW_SOURCE_UIBASE_INC_SWUICCOLL_HXX
22 #include <sfx2/tabdlg.hxx>
24 #include <ccoll.hxx>
26 class SwWrtShell;
27 class SwFormat;
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;
35 SwFormat* m_pFormat;
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;
54 public:
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 );
67 #endif
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */