1
0
Fork 0
libreoffice/sw/source/ui/chrdlg/break.cxx
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

251 lines
8.4 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <vcl/svapp.hxx>
#include <osl/diagnose.h>
#include <bitmaps.hlst>
#include <uitool.hxx>
#include <swtypes.hxx>
#include <wrtsh.hxx>
#include <view.hxx>
#include <viewopt.hxx>
#include <break.hxx>
#include <pagedesc.hxx>
#include <poolfmt.hxx>
#include <strings.hrc>
#include <SwStyleNameMapper.hxx>
void SwBreakDlg::rememberResult()
{
m_nKind = 0;
if (m_xLineBtn->get_active())
{
m_nKind = 1;
m_eClear = static_cast<SwLineBreakClear>(m_xLineClearBox->get_active());
}
else if(m_xColumnBtn->get_active())
m_nKind = 2;
else if(m_xPageBtn->get_active())
{
m_nKind = 3;
const int nPos = m_xPageCollBox->get_active();
if (nPos != 0 && nPos != -1)
{
m_aTemplate = m_xPageCollBox->get_active_text();
m_oPgNum.reset();
if (m_xPageNumBox->get_active())
{
m_oPgNum = o3tl::narrowing<sal_uInt16>(m_xPageNumEdit->get_value());
}
}
}
}
IMPL_LINK_NOARG(SwBreakDlg, ToggleHdl, weld::Toggleable&, void)
{
CheckEnable();
UpdateImage();
}
IMPL_LINK_NOARG(SwBreakDlg, ChangeHdl, weld::ComboBox&, void)
{
CheckEnable();
}
IMPL_LINK_NOARG(SwBreakDlg, LineClearHdl, weld::ComboBox&, void)
{
UpdateImage();
}
// Handler for Change Page Number
IMPL_LINK(SwBreakDlg, PageNumHdl, weld::Toggleable&, rBox, void)
{
if (rBox.get_active())
m_xPageNumEdit->set_value(1);
else
m_xPageNumEdit->set_text(OUString());
}
// By changing the Page number the checkbox is checked.
IMPL_LINK_NOARG(SwBreakDlg, PageNumModifyHdl, weld::SpinButton&, void)
{
m_xPageNumBox->set_active(true);
}
/*
* Ok-Handler;
* checks whether pagenumber nPage is a legal pagenumber (left pages with even
* numbers etc. for a page template with alternating pages)
*/
IMPL_LINK_NOARG(SwBreakDlg, OkHdl, weld::Button&, void)
{
if (m_xPageNumBox->get_active())
{
// In case of differing page descriptions, test validity
const int nPos = m_xPageCollBox->get_active();
// position 0 says 'Without'.
const SwPageDesc *pPageDesc;
if (nPos != 0 && nPos != -1)
pPageDesc = m_rSh.FindPageDescByName(m_xPageCollBox->get_active_text(), true);
else
pPageDesc = &m_rSh.GetPageDesc(m_rSh.GetCurPageDesc());
assert(pPageDesc && "Page description not found.");
const sal_uInt16 nUserPage = sal_uInt16(m_xPageNumEdit->get_value());
bool bOk = true;
switch(pPageDesc->GetUseOn())
{
case UseOnPage::Mirror:
case UseOnPage::All: break;
case UseOnPage::Left: bOk = 0 == nUserPage % 2; break;
case UseOnPage::Right: bOk = 1 == nUserPage % 2; break;
default:; //prevent warning
}
if(!bOk)
{
std::unique_ptr<weld::Dialog> xDialog(Application::CreateMessageDialog(m_xPageNumEdit.get(), VclMessageType::Info,
VclButtonsType::Ok, SwResId(STR_ILLEGAL_PAGENUM)));
xDialog->run();
m_xPageNumEdit->grab_focus();
return;
}
}
rememberResult();
m_xDialog->response(RET_OK);
}
SwBreakDlg::SwBreakDlg(weld::Window *pParent, SwWrtShell &rS)
: GenericDialogController(pParent, u"modules/swriter/ui/insertbreak.ui"_ustr, u"BreakDialog"_ustr)
, m_xLineBtn(m_xBuilder->weld_radio_button(u"linerb"_ustr))
, m_xLineClearText(m_xBuilder->weld_label(u"clearft"_ustr))
, m_xLineClearBox(m_xBuilder->weld_combo_box(u"clearlb"_ustr))
, m_xColumnBtn(m_xBuilder->weld_radio_button(u"columnrb"_ustr))
, m_xPageBtn(m_xBuilder->weld_radio_button(u"pagerb"_ustr))
, m_xPageCollText(m_xBuilder->weld_label(u"styleft"_ustr))
, m_xPageCollBox(m_xBuilder->weld_combo_box(u"stylelb"_ustr))
, m_xPageNumBox(m_xBuilder->weld_check_button(u"pagenumcb"_ustr))
, m_xPageNumEdit(m_xBuilder->weld_spin_button(u"pagenumsb"_ustr))
, m_xOkBtn(m_xBuilder->weld_button(u"ok"_ustr))
, m_xTypeImage(m_xBuilder->weld_image(u"imType"_ustr))
, m_rSh(rS)
, m_nKind(0)
, m_bHtmlMode(0 != ::GetHtmlMode(rS.GetView().GetDocShell()))
{
Link<weld::Toggleable&,void> aLk = LINK(this, SwBreakDlg, ToggleHdl);
m_xPageBtn->connect_toggled(aLk);
m_xLineBtn->connect_toggled(aLk);
m_xColumnBtn->connect_toggled(aLk);
m_xPageCollBox->connect_changed(LINK(this, SwBreakDlg, ChangeHdl));
m_xLineClearBox->connect_changed(LINK(this, SwBreakDlg, LineClearHdl));
m_xOkBtn->connect_clicked(LINK(this, SwBreakDlg, OkHdl));
m_xPageNumBox->connect_toggled(LINK(this, SwBreakDlg, PageNumHdl));
m_xPageNumEdit->connect_value_changed(LINK(this, SwBreakDlg, PageNumModifyHdl));
// Insert page description to Listbox
const size_t nCount = m_rSh.GetPageDescCnt();
for (size_t i = 0; i < nCount; ++i)
{
const SwPageDesc &rPageDesc = m_rSh.GetPageDesc(i);
::InsertStringSorted(u""_ustr, rPageDesc.GetName(), *m_xPageCollBox, 1 );
}
OUString aFormatName;
for (sal_uInt16 i = RES_POOLPAGE_BEGIN; i < RES_POOLPAGE_END; ++i)
{
aFormatName = SwStyleNameMapper::GetUIName( i, aFormatName );
if (m_xPageCollBox->find_text(aFormatName) == -1)
::InsertStringSorted(u""_ustr, aFormatName, *m_xPageCollBox, 1 );
}
//add landscape page
aFormatName = SwStyleNameMapper::GetUIName( RES_POOLPAGE_LANDSCAPE, aFormatName );
if (m_xPageCollBox->find_text(aFormatName) == -1)
::InsertStringSorted(u""_ustr, aFormatName, *m_xPageCollBox, 1);
CheckEnable();
m_xPageNumEdit->set_text(OUString());
UpdateImage();
}
void SwBreakDlg::CheckEnable()
{
bool bEnable = true;
if ( m_bHtmlMode )
{
m_xColumnBtn->set_sensitive(false);
m_xPageCollBox->set_sensitive(false);
bEnable = false;
}
else if(m_rSh.GetFrameType(nullptr,true)
& (FrameTypeFlags::FLY_ANY | FrameTypeFlags::HEADER | FrameTypeFlags::FOOTER | FrameTypeFlags::FOOTNOTE))
{
m_xPageBtn->set_sensitive(false);
if (m_xPageBtn->get_active())
m_xLineBtn->set_active(true);
bEnable = false;
}
const bool bPage = m_xPageBtn->get_active();
m_xPageCollText->set_sensitive(bPage);
m_xPageCollBox->set_sensitive(bPage);
bool bLine = m_xLineBtn->get_active();
m_xLineClearText->set_sensitive(bLine);
m_xLineClearBox->set_sensitive(bLine);
bEnable &= bPage;
if ( bEnable )
{
// position 0 says 'Without' page template.
const int nPos = m_xPageCollBox->get_active();
if (nPos == 0 || nPos == -1)
bEnable = false;
}
m_xPageNumBox->set_sensitive(bEnable);
m_xPageNumEdit->set_sensitive(bEnable);
}
void SwBreakDlg::UpdateImage()
{
if (m_xLineBtn->get_active())
{
switch (m_xLineClearBox->get_active())
{
case 0:
m_xTypeImage->set_from_icon_name(RID_BMP_LINEBREAK_NONE);
break;
case 1:
m_xTypeImage->set_from_icon_name(RID_BMP_LINEBREAK_LEFT);
break;
case 2:
m_xTypeImage->set_from_icon_name(RID_BMP_LINEBREAK_RIGHT);
break;
case 3:
m_xTypeImage->set_from_icon_name(RID_BMP_LINEBREAK_FULL);
break;
}
}
else if (m_xColumnBtn->get_active())
m_xTypeImage->set_from_icon_name(RID_BMP_COLBREAK);
else if (m_xPageBtn->get_active())
m_xTypeImage->set_from_icon_name(RID_BMP_PAGEBREAK);
else
m_xTypeImage->set_from_icon_name(""); //clear
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */