1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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(
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
));
40 GetStatusBar().SetItemText(GetId(), u
"");
41 GetStatusBar().SetQuickHelpText(GetId(), u
"");
45 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */