LibreOffice Module sw (master) 1
wordcountdialog.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 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#include <officecfg/Office/Writer.hxx>
21#include <wordcountdialog.hxx>
22#include <docsh.hxx>
23#include <docstat.hxx>
24#include <swmodule.hxx>
25#include <view.hxx>
26#include <swwait.hxx>
27#include <wrtsh.hxx>
28#include <rtl/math.hxx>
29#include <svl/cjkoptions.hxx>
31#include <vcl/settings.hxx>
32#include <vcl/svapp.hxx>
33#include <comphelper/lok.hxx>
34
35#define IS_MOBILE_PHONE (comphelper::LibreOfficeKit::isActive() && SfxViewShell::Current() && SfxViewShell::Current()->isLOKMobilePhone())
36
38{
40}
41
42namespace
43{
44 void setValue(weld::Label& rWidget, sal_uLong nValue, const LocaleDataWrapper& rLocaleData)
45 {
46 rWidget.set_label(rLocaleData.getNum(nValue, 0));
47 }
48
49 void setDoubleValue(weld::Label& rWidget, double fValue)
50 {
51 OUString sValue(OUString::number(::rtl::math::round(fValue, 1)));
52 rWidget.set_label(sValue);
53 }
54}
55
56void SwWordCountFloatDlg::SetValues(const SwDocStat& rCurrent, const SwDocStat& rDoc)
57{
59 setValue(*m_xCurrentWordFT, rCurrent.nWord, rLocaleData);
60 setValue(*m_xCurrentCharacterFT, rCurrent.nChar, rLocaleData);
62 setValue(*m_xCurrentCjkcharsFT, rCurrent.nAsianWord, rLocaleData);
63 setValue(*m_xDocWordFT, rDoc.nWord, rLocaleData);
64 setValue(*m_xDocCharacterFT, rDoc.nChar, rLocaleData);
66 setValue(*m_xDocCjkcharsFT, rDoc.nAsianWord, rLocaleData);
67
68 if (m_xStandardizedPagesLabelFT->get_visible())
69 {
70 sal_Int64 nCharsPerStandardizedPage = officecfg::Office::Writer::WordCount::StandardizedPageSize::get();
71 setDoubleValue(*m_xCurrentStandardizedPagesFT,
72 static_cast<double>(rCurrent.nChar) / nCharsPerStandardizedPage);
73 setDoubleValue(*m_xDocStandardizedPagesFT,
74 static_cast<double>(rDoc.nChar) / nCharsPerStandardizedPage);
75 }
76
77 bool bShowCJK = (SvtCJKOptions::IsAnyEnabled() || rDoc.nAsianWord);
78 bool bToggleCJK = m_xCurrentCjkcharsFT->get_visible() != bShowCJK;
79 if (bToggleCJK)
80 {
81 showCJK(bShowCJK);
82 m_xDialog->resize_to_request(); //force resize of dialog
83 }
84}
85
87{
88 m_xCurrentCjkcharsFT->set_visible(bShowCJK);
89 m_xDocCjkcharsFT->set_visible(bShowCJK);
91 m_xCjkcharsLabelFT2->set_visible(bShowCJK);
92 m_xCjkcharsLabelFT->set_visible(bShowCJK);
93}
94
95void SwWordCountFloatDlg::showStandardizedPages(bool bShowStandardizedPages)
96{
97 m_xCurrentStandardizedPagesFT->set_visible(bShowStandardizedPages);
98 m_xDocStandardizedPagesFT->set_visible(bShowStandardizedPages);
100 m_xStandardizedPagesLabelFT2->set_visible(bShowStandardizedPages);
101 m_xStandardizedPagesLabelFT->set_visible(bShowStandardizedPages);
102}
103
105 SfxChildWindow* pChild,
106 weld::Window *pParent,
107 SfxChildWinInfo const * pInfo)
108 : SfxModelessDialogController(_pBindings, pChild, pParent, IS_MOBILE_PHONE ? OUString("modules/swriter/ui/wordcount-mobile.ui") : OUString("modules/swriter/ui/wordcount.ui"), "WordCountDialog")
109 , m_xCurrentWordFT(m_xBuilder->weld_label("selectwords"))
110 , m_xCurrentCharacterFT(m_xBuilder->weld_label("selectchars"))
111 , m_xCurrentCharacterExcludingSpacesFT(m_xBuilder->weld_label("selectcharsnospaces"))
112 , m_xCurrentCjkcharsFT(m_xBuilder->weld_label("selectcjkchars"))
113 , m_xCurrentStandardizedPagesFT(m_xBuilder->weld_label("selectstandardizedpages"))
114 , m_xDocWordFT(m_xBuilder->weld_label("docwords"))
115 , m_xDocCharacterFT(m_xBuilder->weld_label("docchars"))
116 , m_xDocCharacterExcludingSpacesFT(m_xBuilder->weld_label("doccharsnospaces"))
117 , m_xDocCjkcharsFT(m_xBuilder->weld_label("doccjkchars"))
118 , m_xDocStandardizedPagesFT(m_xBuilder->weld_label("docstandardizedpages"))
119 , m_xCjkcharsLabelFT(m_xBuilder->weld_label("cjkcharsft"))
120 , m_xCjkcharsLabelFT2(m_xBuilder->weld_label("cjkcharsft2"))
121 , m_xStandardizedPagesLabelFT(m_xBuilder->weld_label("standardizedpages"))
122 , m_xStandardizedPagesLabelFT2(m_xBuilder->weld_label("standardizedpages2"))
123{
126
127 Initialize(pInfo);
128}
129
131{
132 if (SwView* pView = GetActiveView())
133 {
134 SwWrtShell &rSh = pView->GetWrtShell();
135 SwDocStat aCurrCnt;
136 SwDocStat aDocStat;
137 {
138 auto& rDocShell(*pView->GetDocShell());
139 SwWait aWait(rDocShell, true);
140 auto aLock = rDocShell.LockAllViews();
141 rSh.StartAction();
142 rSh.CountWords( aCurrCnt );
143 aDocStat = rSh.GetUpdatedDocStat();
144 rSh.EndAction();
145 }
146 SetValues(aCurrCnt, aDocStat);
147 }
148}
149
150void SwWordCountFloatDlg::SetCounts(const SwDocStat &rCurrCnt, const SwDocStat &rDocStat)
151{
152 SetValues(rCurrCnt, rDocStat);
153}
154
155/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Reference< XExecutableDialog > m_xDialog
const LocaleDataWrapper & GetUILocaleDataWrapper() const
static const AllSettings & GetSettings()
OUString getNum(sal_Int64 nNumber, sal_uInt16 nDecimals, bool bUseThousandSep=true, bool bTrailingZeros=true) const
void Initialize(SfxChildWinInfo const *pInfo)
void StartAction()
Definition: crsrsh.cxx:226
void EndAction(const bool bIdleEnd=false)
Definition: crsrsh.cxx:243
void CountWords(SwDocStat &rStat) const
Count words in current selection.
Definition: editsh.cxx:1081
const SwDocStat & GetUpdatedDocStat()
Definition: editsh.cxx:432
static void SetCareDialog(const std::shared_ptr< weld::Window > &rNew)
Definition: viewsh.cxx:2661
Definition: view.hxx:146
void SetValues(const SwDocStat &rCurrent, const SwDocStat &rDoc)
void SetCounts(const SwDocStat &rCurrCnt, const SwDocStat &rDocStat)
std::unique_ptr< weld::Label > m_xCjkcharsLabelFT
std::unique_ptr< weld::Label > m_xDocCjkcharsFT
std::unique_ptr< weld::Label > m_xDocCharacterFT
std::unique_ptr< weld::Label > m_xCjkcharsLabelFT2
std::unique_ptr< weld::Label > m_xDocCharacterExcludingSpacesFT
std::unique_ptr< weld::Label > m_xCurrentCjkcharsFT
std::unique_ptr< weld::Label > m_xCurrentStandardizedPagesFT
std::unique_ptr< weld::Label > m_xDocStandardizedPagesFT
std::unique_ptr< weld::Label > m_xDocWordFT
std::unique_ptr< weld::Label > m_xCurrentCharacterFT
virtual ~SwWordCountFloatDlg() override
std::unique_ptr< weld::Label > m_xCurrentWordFT
SwWordCountFloatDlg(SfxBindings *pBindings, SfxChildWindow *pChild, weld::Window *pParent, SfxChildWinInfo const *pInfo)
std::unique_ptr< weld::Label > m_xStandardizedPagesLabelFT2
void showCJK(bool bShowCJK)
void showStandardizedPages(bool bShowStandardizedPages)
std::unique_ptr< weld::Label > m_xCurrentCharacterExcludingSpacesFT
std::unique_ptr< weld::Label > m_xStandardizedPagesLabelFT
Used by the UI to modify the document model.
Definition: wrtsh.hxx:97
virtual void set_label(const OUString &rText)=0
bool IsAnyEnabled()
css::uno::Reference< css::linguistic2::XProofreadingIterator > get(css::uno::Reference< css::uno::XComponentContext > const &context)
RegError REGISTRY_CALLTYPE setValue(RegKeyHandle hKey, rtl_uString *keyName, RegValueType valueType, RegValue pData, sal_uInt32 valueSize)
sal_uIntPtr sal_uLong
sal_uLong nWord
Definition: docstat.hxx:35
sal_uLong nCharExcludingSpaces
Definition: docstat.hxx:38
sal_uLong nAsianWord
Definition: docstat.hxx:36
sal_uLong nChar
Definition: docstat.hxx:37
SwView * GetActiveView()
Definition: swmodul1.cxx:115
#define IS_MOBILE_PHONE