/* -*- 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 #include #include #include using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; SvxFmAbsRecWin::SvxFmAbsRecWin(vcl::Window* pParent, SfxToolBoxControl* pController) : RecordItemWindow(pParent) , m_pController(pController) { m_xWidget->set_width_chars(6); SetSizePixel(m_xWidget->get_preferred_size()); } void SvxFmAbsRecWin::PositionFired(sal_Int64 nRecord) { SfxInt32Item aPositionParam( FN_PARAM_1, static_cast(nRecord) ); Any a; aPositionParam.QueryValue( a ); Sequence< PropertyValue > aArgs{ comphelper::makePropertyValue("Position", a) }; m_pController->Dispatch( ".uno:AbsoluteRecord", aArgs ); m_pController->updateStatus(); } SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxCtlAbsRec, SfxInt32Item ); SvxFmTbxCtlAbsRec::SvxFmTbxCtlAbsRec( sal_uInt16 nSlotId, ToolBoxItemId nId, ToolBox& rTbx ) :SfxToolBoxControl( nSlotId, nId, rTbx ) { } SvxFmTbxCtlAbsRec::~SvxFmTbxCtlAbsRec() { } void SvxFmTbxCtlAbsRec::StateChangedAtToolBoxControl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) { ToolBoxItemId nId = GetId(); ToolBox* pToolBox = &GetToolBox(); SvxFmAbsRecWin* pWin = static_cast( pToolBox->GetItemWindow(nId) ); assert(pWin && "Control not found!"); if (pState) { const SfxInt32Item* pItem = dynamic_cast< const SfxInt32Item* >( pState ); DBG_ASSERT( pItem, "SvxFmTbxCtlAbsRec::StateChanged: invalid item!" ); pWin->set_text(OUString::number(pItem ? pItem->GetValue() : -1)); } bool bEnable = SfxItemState::DISABLED != eState && pState; if (!bEnable) pWin->set_text(OUString()); // enabling/disabling of the window pToolBox->EnableItem(nId, bEnable); SfxToolBoxControl::StateChangedAtToolBoxControl( nSID, eState,pState ); } VclPtr SvxFmTbxCtlAbsRec::CreateItemWindow( vcl::Window* pParent ) { return VclPtrInstance(pParent, this); } SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxCtlRecText, SfxBoolItem ); SvxFmTbxCtlRecText::SvxFmTbxCtlRecText( sal_uInt16 nSlotId, ToolBoxItemId nId, ToolBox& rTbx ) :SfxToolBoxControl( nSlotId, nId, rTbx ) { rTbx.SetItemWindowNonInteractive(nId, true); } SvxFmTbxCtlRecText::~SvxFmTbxCtlRecText() { } VclPtr SvxFmTbxCtlRecText::CreateItemWindow( vcl::Window* pParent ) { OUString aText(SvxResId(RID_STR_REC_TEXT)); VclPtrInstance xFixedText(pParent, aText); xFixedText->Show(); return xFixedText; } SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxCtlRecFromText, SfxBoolItem ); SvxFmTbxCtlRecFromText::SvxFmTbxCtlRecFromText( sal_uInt16 nSlotId, ToolBoxItemId nId, ToolBox& rTbx ) :SfxToolBoxControl( nSlotId, nId, rTbx ) { rTbx.SetItemWindowNonInteractive(nId, true); } SvxFmTbxCtlRecFromText::~SvxFmTbxCtlRecFromText() { } VclPtr SvxFmTbxCtlRecFromText::CreateItemWindow( vcl::Window* pParent ) { OUString aText(SvxResId(RID_STR_REC_FROM_TEXT)); VclPtrInstance xFixedText(pParent, aText); xFixedText->Show(); return xFixedText; } SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxCtlRecTotal, SfxStringItem ); SvxFmTbxCtlRecTotal::SvxFmTbxCtlRecTotal( sal_uInt16 nSlotId, ToolBoxItemId nId, ToolBox& rTbx ) : SfxToolBoxControl( nSlotId, nId, rTbx ) { rTbx.SetItemWindowNonInteractive(nId, true); } SvxFmTbxCtlRecTotal::~SvxFmTbxCtlRecTotal() { } VclPtr SvxFmTbxCtlRecTotal::CreateItemWindow( vcl::Window* pParent ) { m_xFixedText.reset(VclPtr::Create(pParent, "123456")); m_xFixedText->set_label(""); m_xFixedText->Show(); return m_xFixedText; } void SvxFmTbxCtlRecTotal::StateChangedAtToolBoxControl( sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem* pState ) { // setting the FixedText if (GetSlotId() != SID_FM_RECORD_TOTAL) return; OUString aText; if (pState) aText = static_cast(pState)->GetValue(); else aText = "?"; m_xFixedText->set_label(aText); SfxToolBoxControl::StateChangedAtToolBoxControl( nSID, eState,pState ); } SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxNextRec, SfxBoolItem ); SvxFmTbxNextRec::SvxFmTbxNextRec( sal_uInt16 nSlotId, ToolBoxItemId nId, ToolBox& rTbx ) :SfxToolBoxControl( nSlotId, nId, rTbx ) { rTbx.SetItemBits(nId, rTbx.GetItemBits(nId) | ToolBoxItemBits::REPEAT); AllSettings aSettings = rTbx.GetSettings(); MouseSettings aMouseSettings = aSettings.GetMouseSettings(); aMouseSettings.SetButtonRepeat(aMouseSettings.GetButtonRepeat() / 4); aSettings.SetMouseSettings(aMouseSettings); rTbx.SetSettings(aSettings, true); } SFX_IMPL_TOOLBOX_CONTROL( SvxFmTbxPrevRec, SfxBoolItem ); SvxFmTbxPrevRec::SvxFmTbxPrevRec( sal_uInt16 nSlotId, ToolBoxItemId nId, ToolBox& rTbx ) :SfxToolBoxControl( nSlotId, nId, rTbx ) { rTbx.SetItemBits(nId, rTbx.GetItemBits(nId) | ToolBoxItemBits::REPEAT); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */