/* -*- 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 ScStyleDlg::ScStyleDlg(weld::Window* pParent, SfxStyleSheetBase& rStyleBase, bool bPage) : SfxStyleDialogController(pParent, bPage ? OUString("modules/scalc/ui/pagetemplatedialog.ui") : OUString("modules/scalc/ui/paratemplatedialog.ui"), bPage ? OString("PageTemplateDialog") : OString("ParaTemplateDialog"), rStyleBase ) , m_bPage(bPage) { SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create(); if (m_bPage) // page styles { AddTabPage("page", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_PAGE ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_PAGE ) ); AddTabPage("borders", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BORDER ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_BORDER ) ); AddTabPage("background", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BKG ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_BKG ) ); AddTabPage("header", &ScHeaderPage::Create, &ScHeaderPage::GetRanges ); AddTabPage("footer", &ScFooterPage::Create, &ScFooterPage::GetRanges ); AddTabPage("sheet", &ScTablePage::Create, &ScTablePage::GetRanges ); } else // cell format styles { SvtCJKOptions aCJKOptions; AddTabPage("numbers", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_NUMBERFORMAT ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_NUMBERFORMAT )); AddTabPage("font", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_CHAR_NAME ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_CHAR_NAME )); AddTabPage("fonteffects", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_CHAR_EFFECTS ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_CHAR_EFFECTS )); AddTabPage("alignment", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_ALIGNMENT ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_ALIGNMENT )); if ( aCJKOptions.IsAsianTypographyEnabled() ) { AddTabPage("asiantypo", pFact->GetTabPageCreatorFunc(RID_SVXPAGE_PARA_ASIAN), pFact->GetTabPageRangesFunc(RID_SVXPAGE_PARA_ASIAN)); } else RemoveTabPage("asiantypo"); AddTabPage("borders", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BORDER ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_BORDER )); AddTabPage("background", pFact->GetTabPageCreatorFunc( RID_SVXPAGE_BKG ), pFact->GetTabPageRangesFunc( RID_SVXPAGE_BKG )); AddTabPage("protection", &ScTabPageProtection::Create, &ScTabPageProtection::GetRanges); } } void ScStyleDlg::PageCreated(const OString& rPageId, SfxTabPage& rTabPage) { if (m_bPage) { SfxAllItemSet aSet(*(GetInputSetImpl()->GetPool())); if (rPageId == "page") { aSet.Put (SfxUInt16Item(sal_uInt16(SID_ENUM_PAGE_MODE), SVX_PAGE_MODE_CENTER)); rTabPage.PageCreated(aSet); } else if (rPageId == "header" || rPageId == "footer") { static_cast(rTabPage).SetStyleDlg( this ); static_cast(rTabPage).SetPageStyle( GetStyleSheet().GetName() ); static_cast(rTabPage).DisableDeleteQueryBox(); } else if (rPageId == "background") { aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, static_cast(SvxBackgroundTabFlags::SHOW_SELECTOR))); rTabPage.PageCreated(aSet); } } else { SfxObjectShell* pDocSh = SfxObjectShell::Current(); SfxAllItemSet aSet(*(GetInputSetImpl()->GetPool())); if (rPageId == "numbers") { const SfxPoolItem* pInfoItem = pDocSh->GetItem( SID_ATTR_NUMBERFORMAT_INFO ); OSL_ENSURE( pInfoItem, "NumberInfoItem not found!" ); aSet.Put ( static_cast(*pInfoItem) ); rTabPage.PageCreated(aSet); } else if (rPageId == "font") { const SfxPoolItem* pInfoItem = pDocSh->GetItem( SID_ATTR_CHAR_FONTLIST ); OSL_ENSURE( pInfoItem, "FontListItem not found!" ); aSet.Put (SvxFontListItem(static_cast(*pInfoItem).GetFontList(), SID_ATTR_CHAR_FONTLIST)); rTabPage.PageCreated(aSet); } else if (rPageId == "background") { rTabPage.PageCreated(aSet); } } } void ScStyleDlg::RefreshInputSet() { SfxItemSet* pItemSet = GetInputSetImpl(); pItemSet->ClearItem(); pItemSet->SetParent( GetStyleSheet().GetItemSet().GetParent() ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */