Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / sw / source / uibase / utlui / wordcountctrl.cxx
blob66d520d99a2150d22614715bdfdd715404e54113
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/.
8 */
10 #include <swtypes.hxx>
11 #include <strings.hrc>
12 #include <wordcountctrl.hxx>
13 #include <svl/stritem.hxx>
14 #include <vcl/status.hxx>
16 SFX_IMPL_STATUSBAR_CONTROL(SwWordCountStatusBarControl, SfxStringItem);
18 SwWordCountStatusBarControl::SwWordCountStatusBarControl(
19 sal_uInt16 _nSlotId,
20 sal_uInt16 _nId,
21 StatusBar& rStb) :
22 SfxStatusBarControl(_nSlotId, _nId, rStb)
26 SwWordCountStatusBarControl::~SwWordCountStatusBarControl()
30 void SwWordCountStatusBarControl::StateChangedAtStatusBarControl(
31 sal_uInt16 /*nSID*/, SfxItemState eState, const SfxPoolItem* pState )
33 if (eState == SfxItemState::DEFAULT) // Can access pState
35 GetStatusBar().SetItemText( GetId(), static_cast<const SfxStringItem*>(pState)->GetValue() );
36 GetStatusBar().SetQuickHelpText(GetId(), SwResId(STR_WORDCOUNT_HINT));
38 else
40 GetStatusBar().SetItemText(GetId(), u"");
41 GetStatusBar().SetQuickHelpText(GetId(), u"");
45 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */