calc: on editing invalidation of view with different zoom is wrong
[LibreOffice.git] / sc / source / ui / sidebar / NumberFormatControl.cxx
blob1060f0f5db453e5fdf5d63368f5aca10cb345f1a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <NumberFormatControl.hxx>
21 #include <cbnumberformat.hxx>
22 #include <svl/intitem.hxx>
23 #include <vcl/toolbox.hxx>
25 using namespace sc;
27 SFX_IMPL_TOOLBOX_CONTROL(ScNumberFormatControl, SfxUInt16Item);
29 ScNumberFormatControl::ScNumberFormatControl(sal_uInt16 nSlotId, ToolBoxItemId nId, ToolBox& rTbx)
30 : SfxToolBoxControl(nSlotId, nId, rTbx)
34 ScNumberFormatControl::~ScNumberFormatControl()
38 void ScNumberFormatControl::StateChangedAtToolBoxControl(sal_uInt16, SfxItemState eState,
39 const SfxPoolItem* pState)
41 ToolBoxItemId nId = GetId();
42 ToolBox& rTbx = GetToolBox();
43 ScNumberFormat* pComboBox = static_cast<ScNumberFormat*>(rTbx.GetItemWindow(nId));
45 DBG_ASSERT( pComboBox, "Control not found!" );
47 if(SfxItemState::DISABLED == eState)
48 pComboBox->Disable();
49 else
50 pComboBox->Enable();
52 rTbx.EnableItem(nId, SfxItemState::DISABLED != eState);
54 switch(eState)
56 case SfxItemState::DEFAULT:
58 const SfxUInt16Item* pItem = static_cast<const SfxUInt16Item*>(pState);
59 sal_uInt16 nVal = pItem->GetValue();
60 pComboBox->set_active(nVal);
61 break;
64 default:
65 break;
69 VclPtr<InterimItemWindow> ScNumberFormatControl::CreateItemWindow( vcl::Window *pParent )
71 VclPtr<ScNumberFormat> pControl = VclPtr<ScNumberFormat>::Create(pParent);
72 pControl->Show();
74 return pControl;
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */