LibreOffice Module sw (master) 1
splittbl.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#include <wrtsh.hxx>
21#include <splittbl.hxx>
22#include <tblenum.hxx>
23
26
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"))
32 , m_rShell(rSh)
34{
35 // tdf#131759 - remember last used option in split table dialog
37 switch (m_nSplit)
38 {
40 m_xBoxAttrCopyWithParaRB->set_active(true);
41 break;
43 m_xBoxAttrCopyNoParaRB->set_active(true);
44 break;
46 m_xBorderCopyRB->set_active(true);
47 break;
50 default:
51 // Use the default value in case of an invalid option
53 }
54}
55
57{
59 if (m_xBoxAttrCopyWithParaRB->get_active())
61 else if (m_xBoxAttrCopyNoParaRB->get_active())
63 else if (m_xBorderCopyRB->get_active())
65
66 // tdf#131759 - remember last used option in split table dialog
68
70}
71
72/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void SplitTable(SplitTable_HeadlineOption eMode)
Split table at cursor position.
Definition: edtab.cxx:431
SplitTable_HeadlineOption m_nSplit
Definition: splittbl.hxx:36
std::unique_ptr< weld::RadioButton > m_xBoxAttrCopyWithParaRB
Definition: splittbl.hxx:31
static SplitTable_HeadlineOption m_eRememberedSplitOption
Definition: splittbl.hxx:39
SwSplitTableDlg(weld::Window *pParent, SwWrtShell &rSh)
Definition: splittbl.cxx:27
std::unique_ptr< weld::RadioButton > m_xBorderCopyRB
Definition: splittbl.hxx:33
SwWrtShell & m_rShell
Definition: splittbl.hxx:35
std::unique_ptr< weld::RadioButton > m_xBoxAttrCopyNoParaRB
Definition: splittbl.hxx:32
Used by the UI to modify the document model.
Definition: wrtsh.hxx:97
SplitTable_HeadlineOption
Definition: tblenum.hxx:55