From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- sc/source/ui/pagedlg/tphf.cxx | 262 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 262 insertions(+) create mode 100644 sc/source/ui/pagedlg/tphf.cxx (limited to 'sc/source/ui/pagedlg/tphf.cxx') diff --git a/sc/source/ui/pagedlg/tphf.cxx b/sc/source/ui/pagedlg/tphf.cxx new file mode 100644 index 000000000..cdf4802af --- /dev/null +++ b/sc/source/ui/pagedlg/tphf.cxx @@ -0,0 +1,262 @@ +/* -*- 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 . + */ + +#undef SC_DLLIMPLEMENTATION + +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +ScHFPage::ScHFPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet, sal_uInt16 nSetId) + : SvxHFPage(pPage, pController, rSet, nSetId) + , aDataSet(*rSet.GetPool(), svl::Items) + , nPageUsage(SvxPageUsage::All) + , pStyleDlg(nullptr) + , m_xBtnEdit(m_xBuilder->weld_button("buttonEdit")) +{ + SetExchangeSupport(); + + SfxViewShell* pSh = SfxViewShell::Current(); + ScTabViewShell* pViewSh = dynamic_cast< ScTabViewShell *>( pSh ); + m_xBtnEdit->show(); + + aDataSet.Put( rSet ); + + if ( pViewSh ) + { + ScViewData& rViewData = pViewSh->GetViewData(); + ScDocument& rDoc = rViewData.GetDocument(); + + aStrPageStyle = rDoc.GetPageStyle( rViewData.GetTabNo() ); + } + + m_xBtnEdit->connect_clicked(LINK(this, ScHFPage, BtnHdl)); + m_xTurnOnBox->connect_toggled(LINK(this, ScHFPage, TurnOnHdl)); + + if ( nId == SID_ATTR_PAGE_HEADERSET ) + m_xBtnEdit->set_help_id(HID_SC_HEADER_EDIT); + else + m_xBtnEdit->set_help_id(HID_SC_FOOTER_EDIT); +} + +ScHFPage::~ScHFPage() +{ + pStyleDlg = nullptr; +} + +void ScHFPage::Reset( const SfxItemSet* rSet ) +{ + SvxHFPage::Reset( rSet ); + TurnOnHdl(*m_xTurnOnBox); +} + +bool ScHFPage::FillItemSet( SfxItemSet* rOutSet ) +{ + bool bResult = SvxHFPage::FillItemSet( rOutSet ); + + if ( nId == SID_ATTR_PAGE_HEADERSET ) + { + rOutSet->Put( aDataSet.Get( ATTR_PAGE_HEADERLEFT ) ); + rOutSet->Put( aDataSet.Get( ATTR_PAGE_HEADERRIGHT ) ); + rOutSet->Put( aDataSet.Get( ATTR_PAGE_HEADERFIRST ) ); + } + else + { + rOutSet->Put( aDataSet.Get( ATTR_PAGE_FOOTERLEFT ) ); + rOutSet->Put( aDataSet.Get( ATTR_PAGE_FOOTERRIGHT ) ); + rOutSet->Put( aDataSet.Get( ATTR_PAGE_FOOTERFIRST ) ); + } + + return bResult; +} + +void ScHFPage::ActivatePage( const SfxItemSet& rSet ) +{ + sal_uInt16 nPageWhich = GetWhich( SID_ATTR_PAGE ); + const SvxPageItem& rPageItem = static_cast( + rSet.Get(nPageWhich)); + + nPageUsage = rPageItem.GetPageUsage(); + + if ( pStyleDlg ) + aStrPageStyle = pStyleDlg->GetStyleSheet().GetName(); + + aDataSet.Put( rSet.Get(ATTR_PAGE) ); + + SvxHFPage::ActivatePage( rSet ); +} + +DeactivateRC ScHFPage::DeactivatePage( SfxItemSet* pSetP ) +{ + if ( DeactivateRC::LeavePage == SvxHFPage::DeactivatePage( pSetP ) ) + if ( pSetP ) + FillItemSet( pSetP ); + + return DeactivateRC::LeavePage; +} + +// Handler: + +IMPL_LINK_NOARG(ScHFPage, TurnOnHdl, weld::Toggleable&, void) +{ + SvxHFPage::TurnOnHdl(*m_xTurnOnBox); + + if (m_xTurnOnBox->get_active()) + m_xBtnEdit->set_sensitive(true); + else + m_xBtnEdit->set_sensitive(false); +} + +IMPL_LINK_NOARG(ScHFPage, BtnHdl, weld::Button&, void) +{ + SfxViewShell* pViewSh = SfxViewShell::Current(); + + if ( !pViewSh ) + { + OSL_FAIL( "Current ViewShell not found." ); + return; + } + + if ( (m_xCntSharedBox->get_sensitive() && !m_xCntSharedBox->get_active()) || + (m_xCntSharedFirstBox->get_sensitive() && !m_xCntSharedFirstBox->get_active()) ) + { + sal_uInt16 nResId; + + if ( m_xCntSharedBox->get_sensitive() && !m_xCntSharedBox->get_active() && + m_xCntSharedFirstBox->get_sensitive() && !m_xCntSharedFirstBox->get_active() ) + { + nResId = ( nId == SID_ATTR_PAGE_HEADERSET ) + ? RID_SCDLG_HFED_HEADER + : RID_SCDLG_HFED_FOOTER; + } + else if (m_xCntSharedBox->get_sensitive() && !m_xCntSharedBox->get_active()) + { + nResId = ( nId == SID_ATTR_PAGE_HEADERSET ) + ? RID_SCDLG_HFEDIT_SHAREDFIRSTHEADER + : RID_SCDLG_HFEDIT_SHAREDFIRSTFOOTER; + } + else + { + OSL_ENSURE( m_xCntSharedFirstBox->get_sensitive() && !m_xCntSharedFirstBox->get_active(), "This should be logically impossible." ); + nResId = ( nId == SID_ATTR_PAGE_HEADERSET ) + ? RID_SCDLG_HFEDIT_SHAREDLEFTHEADER + : RID_SCDLG_HFEDIT_SHAREDLEFTFOOTER; + } + + ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create(); + + VclPtr pDlg(pFact->CreateScHFEditDlg( + GetFrameWeld(), aDataSet, aStrPageStyle, nResId)); + pDlg->StartExecuteAsync([this, pDlg](sal_Int32 nResult){ + if ( nResult == RET_OK ) + { + aDataSet.Put( *pDlg->GetOutputItemSet() ); + } + + pDlg->disposeOnce(); + }); + } + else + { + OUString aText; + SfxSingleTabDialogController aDlg(GetFrameWeld(), &aDataSet); + bool bRightPage = m_xCntSharedBox->get_active() || (SvxPageUsage::Left != nPageUsage); + + if ( nId == SID_ATTR_PAGE_HEADERSET ) + { + aText = ScResId( STR_PAGEHEADER ); + if ( bRightPage ) + aDlg.SetTabPage(ScRightHeaderEditPage::Create(aDlg.get_content_area(), &aDlg, &aDataSet)); + else + aDlg.SetTabPage(ScLeftHeaderEditPage::Create(aDlg.get_content_area(), &aDlg, &aDataSet)); + } + else + { + aText = ScResId( STR_PAGEFOOTER ); + if ( bRightPage ) + aDlg.SetTabPage(ScRightFooterEditPage::Create(aDlg.get_content_area(), &aDlg, &aDataSet)); + else + aDlg.SetTabPage(ScLeftFooterEditPage::Create(aDlg.get_content_area(), &aDlg, &aDataSet)); + } + + SvxNumType eNumType = aDataSet.Get(ATTR_PAGE).GetNumType(); + static_cast(aDlg.GetTabPage())->SetNumType(eNumType); + + aText += " (" + ScResId( STR_PAGESTYLE ) + + ": " + aStrPageStyle + ")"; + + aDlg.set_title(aText); + + if (aDlg.run() == RET_OK) + { + aDataSet.Put(*aDlg.GetOutputItemSet()); + } + } +} + + +ScHeaderPage::ScHeaderPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet) + : ScHFPage(pPage, pController, rSet, SID_ATTR_PAGE_HEADERSET) +{ +} + +std::unique_ptr ScHeaderPage::Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rCoreSet) +{ + return std::make_unique(pPage, pController, *rCoreSet); +} + +WhichRangesContainer ScHeaderPage::GetRanges() +{ + return SvxHeaderPage::GetRanges(); +} + + +ScFooterPage::ScFooterPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet) + : ScHFPage( pPage, pController, rSet, SID_ATTR_PAGE_FOOTERSET ) +{ +} + +std::unique_ptr ScFooterPage::Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rCoreSet) +{ + return std::make_unique(pPage, pController, *rCoreSet); +} + +WhichRangesContainer ScFooterPage::GetRanges() +{ + return SvxHeaderPage::GetRanges(); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3