/* * 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 "ParaNumberingControl.hxx" #include "ParaPropertyPanel.hrc" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace com::sun::star; using namespace com::sun::star::uno; using namespace com::sun::star::beans; using namespace com::sun::star::lang; using namespace com::sun::star::text; namespace svx { namespace sidebar { Reference lcl_GetNumberingProvider() { return DefaultNumberingProvider::create( comphelper::getProcessComponentContext() ); } ParaNumberingControl::ParaNumberingControl( Window* pParent, svx::sidebar::ParaPropertyPanel& rPanel ) : PopupControl( pParent,SVX_RES(RID_POPUPPANEL_PARAPAGE_NUMBERING) ) , maNumberVS( this,SVX_RES(VS_NUMBERING) ) , maMoreButton( this,SVX_RES(CB_NUMBERING_MORE) ) , mrParaPropertyPanel( rPanel ) , mpBindings( mrParaPropertyPanel.GetBindings() ) { FreeResource(); maNumberVS.SetStyle( maNumberVS.GetStyle() | WB_NO_DIRECTSELECT ); maNumberVS.SetExtraSpacing( NUM_IMAGE_SPACING ); maNumberVS.SetItemWidth(NUM_IMAGE_WIDTH); maNumberVS.SetItemHeight(NUM_IMAGE_HEIGHT); Reference xDefNum = lcl_GetNumberingProvider(); if(xDefNum.is()) { Sequence< Sequence< PropertyValue > > aNumberings; Locale aLocale = GetSettings().GetLanguageTag().getLocale(); try { aNumberings = xDefNum->getDefaultContinuousNumberingLevels( aLocale ); } catch(Exception&) { } Reference xFormat(xDefNum, UNO_QUERY); maNumberVS.SetNumberingSettings(aNumberings, xFormat, aLocale); } maNumberVS.Show(); maNumberVS.SetSelectHdl( LINK(this, ParaNumberingControl, NumSelectHdl_Impl) ); maNumberVS.SetColor( GetSettings().GetStyleSettings().GetHighContrastMode() ? GetSettings().GetStyleSettings().GetMenuColor() : sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground ) ); maNumberVS.SetBackground( GetSettings().GetStyleSettings().GetHighContrastMode() ? GetSettings().GetStyleSettings().GetMenuColor() : sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground ) ); maMoreButton.SetClickHdl(LINK(this, ParaNumberingControl, MoreButtonClickHdl_Impl)); } ParaNumberingControl::~ParaNumberingControl() { } IMPL_LINK(ParaNumberingControl, NumSelectHdl_Impl, ValueSet*, EMPTYARG) { const sal_uInt16 nIdx = maNumberVS.GetSelectItemId(); SfxUInt16Item aItem( FN_SVX_SET_NUMBER, nIdx ); if (mpBindings) mpBindings->GetDispatcher()->Execute( FN_SVX_SET_NUMBER, SFX_CALLMODE_RECORD, &aItem, 0L ); mrParaPropertyPanel.EndNumberingPopupMode(); return 0; } IMPL_LINK(ParaNumberingControl, MoreButtonClickHdl_Impl, void*, EMPTYARG) { if (mpBindings) mpBindings->GetDispatcher()->Execute( SID_OUTLINE_BULLET, SFX_CALLMODE_ASYNCHRON ); mrParaPropertyPanel.EndNumberingPopupMode(); return 0; } void ParaNumberingControl::UpdateValueSet() { maNumberVS.StateChanged(STATE_CHANGE_STYLE); maNumberVS.StateChanged(STATE_CHANGE_INITSHOW); const sal_uInt16 nTypeIndex = mrParaPropertyPanel.GetNumTypeIndex(); if ( nTypeIndex != (sal_uInt16)0xFFFF ) maNumberVS.SelectItem( nTypeIndex ); else { maNumberVS.SelectItem(0); } maMoreButton.GrabFocus(); } }} // end of namespace sidebar