LibreOffice Module sw (master) 1
wordcountctrl.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 */
9
10#include <swtypes.hxx>
11#include <strings.hrc>
12#include <wordcountctrl.hxx>
13#include <svl/stritem.hxx>
14#include <vcl/status.hxx>
15
17
19 sal_uInt16 _nSlotId,
20 sal_uInt16 _nId,
21 StatusBar& rStb) :
22 SfxStatusBarControl(_nSlotId, _nId, rStb)
23{
24}
25
27{
28}
29
31 sal_uInt16 /*nSID*/, SfxItemState eState, const SfxPoolItem* pState )
32{
33 if (eState == SfxItemState::DEFAULT) // Can access pState
34 {
35 GetStatusBar().SetItemText( GetId(), static_cast<const SfxStringItem*>(pState)->GetValue() );
36 GetStatusBar().SetQuickHelpText(GetId(), SwResId(STR_WORDCOUNT_HINT));
37 }
38 else
39 {
42 }
43}
44
45/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
StatusBar & GetStatusBar() const
sal_uInt16 GetId() const
void SetItemText(sal_uInt16 nItemId, const OUString &rText, int nCharsWidth=-1)
void SetQuickHelpText(sal_uInt16 nItemId, const OUString &rText)
Word count status bar control for Writer.
SwWordCountStatusBarControl(sal_uInt16 nSlotId, sal_uInt16 nId, StatusBar &rStb)
virtual ~SwWordCountStatusBarControl() override
virtual void StateChangedAtStatusBarControl(sal_uInt16 nSID, SfxItemState eState, const SfxPoolItem *pState) override
float u
const char GetValue[]
SfxItemState
OUString SwResId(TranslateId aId)
Definition: swmodule.cxx:168
SFX_IMPL_STATUSBAR_CONTROL(SwWordCountStatusBarControl, SfxStringItem)