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 .
21 #include <splittbl.hxx>
22 #include <tblenum.hxx>
24 SplitTable_HeadlineOption
SwSplitTableDlg::m_eRememberedSplitOption
25 = SplitTable_HeadlineOption::ContentCopy
;
27 SwSplitTableDlg::SwSplitTableDlg(weld::Window
* pParent
, SwWrtShell
& rSh
)
28 : GenericDialogController(pParent
, "modules/swriter/ui/splittable.ui", "SplitTableDialog")
29 , m_xBoxAttrCopyWithParaRB(m_xBuilder
->weld_radio_button("customheadingapplystyle"))
30 , m_xBoxAttrCopyNoParaRB(m_xBuilder
->weld_radio_button("customheading"))
31 , m_xBorderCopyRB(m_xBuilder
->weld_radio_button("noheading"))
33 , m_nSplit(SplitTable_HeadlineOption::ContentCopy
)
35 // tdf#131759 - remember last used option in split table dialog
36 m_nSplit
= m_eRememberedSplitOption
;
39 case SplitTable_HeadlineOption::BoxAttrAllCopy
:
40 m_xBoxAttrCopyWithParaRB
->set_active(true);
42 case SplitTable_HeadlineOption::BoxAttrCopy
:
43 m_xBoxAttrCopyNoParaRB
->set_active(true);
45 case SplitTable_HeadlineOption::BorderCopy
:
46 m_xBorderCopyRB
->set_active(true);
48 case SplitTable_HeadlineOption::NONE
:
49 case SplitTable_HeadlineOption::ContentCopy
:
51 // Use the default value in case of an invalid option
52 m_nSplit
= SplitTable_HeadlineOption::ContentCopy
;
56 void SwSplitTableDlg::Apply()
58 m_nSplit
= SplitTable_HeadlineOption::ContentCopy
;
59 if (m_xBoxAttrCopyWithParaRB
->get_active())
60 m_nSplit
= SplitTable_HeadlineOption::BoxAttrAllCopy
;
61 else if (m_xBoxAttrCopyNoParaRB
->get_active())
62 m_nSplit
= SplitTable_HeadlineOption::BoxAttrCopy
;
63 else if (m_xBorderCopyRB
->get_active())
64 m_nSplit
= SplitTable_HeadlineOption::BorderCopy
;
66 // tdf#131759 - remember last used option in split table dialog
67 m_eRememberedSplitOption
= m_nSplit
;
69 m_rShell
.SplitTable(m_nSplit
);
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */