/* -*- 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 #include #include #include #include #include #include #include #include namespace { class SdParagraphNumTabPage : public SfxTabPage { public: SdParagraphNumTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet); static std::unique_ptr Create( weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet ); static WhichRangesContainer GetRanges(); virtual bool FillItemSet( SfxItemSet* rSet ) override; virtual void Reset( const SfxItemSet* rSet ) override; private: bool mbModified; std::unique_ptr m_xNewStartCB; std::unique_ptr m_xNewStartNumberCB; std::unique_ptr m_xNewStartNF; DECL_LINK( ImplNewStartHdl, weld::Toggleable&, void ); }; } SdParagraphNumTabPage::SdParagraphNumTabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rAttr) : SfxTabPage(pPage, pController, "modules/sdraw/ui/paranumberingtab.ui", "DrawParaNumbering", &rAttr) , mbModified(false) , m_xNewStartCB(m_xBuilder->weld_check_button("checkbuttonCB_NEW_START")) , m_xNewStartNumberCB(m_xBuilder->weld_check_button("checkbuttonCB_NUMBER_NEW_START")) , m_xNewStartNF(m_xBuilder->weld_spin_button("spinbuttonNF_NEW_START")) { m_xNewStartCB->connect_toggled(LINK(this, SdParagraphNumTabPage, ImplNewStartHdl)); m_xNewStartNumberCB->connect_toggled(LINK(this, SdParagraphNumTabPage, ImplNewStartHdl)); } std::unique_ptr SdParagraphNumTabPage::Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet * rAttrSet) { return std::make_unique(pPage, pController, *rAttrSet); } WhichRangesContainer SdParagraphNumTabPage::GetRanges() { return WhichRangesContainer(svl::Items); } bool SdParagraphNumTabPage::FillItemSet( SfxItemSet* rSet ) { if (m_xNewStartCB->get_state_changed_from_saved() || m_xNewStartNumberCB->get_state_changed_from_saved()|| m_xNewStartNF->get_value_changed_from_saved()) { mbModified = true; bool bNewStartChecked = TRISTATE_TRUE == m_xNewStartCB->get_state(); bool bNumberNewStartChecked = TRISTATE_TRUE == m_xNewStartNumberCB->get_state(); rSet->Put(SfxBoolItem(ATTR_NUMBER_NEWSTART, bNewStartChecked)); const sal_Int16 nStartAt = static_cast(m_xNewStartNF->get_value()); rSet->Put(SfxInt16Item(ATTR_NUMBER_NEWSTART_AT, bNumberNewStartChecked && bNewStartChecked ? nStartAt : -1)); } return mbModified; } void SdParagraphNumTabPage::Reset( const SfxItemSet* rSet ) { SfxItemState eItemState = rSet->GetItemState( ATTR_NUMBER_NEWSTART ); if(eItemState > SfxItemState::DEFAULT ) { const SfxBoolItem& rStart = rSet->Get(ATTR_NUMBER_NEWSTART); m_xNewStartCB->set_state( rStart.GetValue() ? TRISTATE_TRUE : TRISTATE_FALSE ); } else { m_xNewStartCB->set_state(TRISTATE_INDET); m_xNewStartCB->set_sensitive(false); } m_xNewStartCB->save_state(); eItemState = rSet->GetItemState( ATTR_NUMBER_NEWSTART_AT); if( eItemState > SfxItemState::DEFAULT ) { sal_Int16 nNewStart = rSet->Get(ATTR_NUMBER_NEWSTART_AT).GetValue(); m_xNewStartNumberCB->set_active(-1 != nNewStart); if(-1 == nNewStart) nNewStart = 1; m_xNewStartNF->set_value(nNewStart); } else { m_xNewStartCB->set_state(TRISTATE_INDET); } ImplNewStartHdl(*m_xNewStartCB); m_xNewStartNF->save_value(); m_xNewStartNumberCB->save_state(); mbModified = false; } IMPL_LINK_NOARG(SdParagraphNumTabPage, ImplNewStartHdl, weld::Toggleable&, void) { bool bEnable = m_xNewStartCB->get_active(); m_xNewStartNumberCB->set_sensitive(bEnable); m_xNewStartNF->set_sensitive(bEnable && m_xNewStartNumberCB->get_active()); } SdParagraphDlg::SdParagraphDlg(weld::Window* pParent, const SfxItemSet* pAttr) : SfxTabDialogController(pParent, "modules/sdraw/ui/drawparadialog.ui", "DrawParagraphPropertiesDialog", pAttr) { AddTabPage( "labelTP_PARA_STD", RID_SVXPAGE_STD_PARAGRAPH); if( SvtCJKOptions::IsAsianTypographyEnabled() ) AddTabPage( "labelTP_PARA_ASIAN", RID_SVXPAGE_PARA_ASIAN); else RemoveTabPage( "labelTP_PARA_ASIAN" ); AddTabPage( "labelTP_PARA_ALIGN", RID_SVXPAGE_ALIGN_PARAGRAPH); static const bool bShowParaNumbering = ( getenv( "SD_SHOW_NUMBERING_PAGE" ) != nullptr ); if( bShowParaNumbering ) AddTabPage( "labelNUMBERING", SdParagraphNumTabPage::Create, SdParagraphNumTabPage::GetRanges ); else RemoveTabPage( "labelNUMBERING" ); AddTabPage("labelTP_TABULATOR", RID_SVXPAGE_TABULATOR); } void SdParagraphDlg::PageCreated(const OString& rId, SfxTabPage &rPage) { SfxAllItemSet aSet(*(GetInputSetImpl()->GetPool())); if (rId == "labelTP_PARA_STD") { aSet.Put(SfxUInt32Item(SID_SVXSTDPARAGRAPHTABPAGE_ABSLINEDIST, MM50/2)); rPage.PageCreated(aSet); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */