LibreOffice Module sw (master) 1
edfcol.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 <sal/config.h>
21
22#include <string_view>
23
24#include <editsh.hxx>
25
26#include <com/sun/star/container/XEnumerationAccess.hpp>
27#include <com/sun/star/container/XContentEnumerationAccess.hpp>
28#include <com/sun/star/document/XActionLockable.hpp>
29#include <com/sun/star/document/XDocumentProperties.hpp>
30#include <com/sun/star/drawing/FillStyle.hpp>
31#include <com/sun/star/drawing/HomogenMatrix3.hpp>
32#include <com/sun/star/drawing/LineStyle.hpp>
33#include <com/sun/star/drawing/XShape.hpp>
34#include <com/sun/star/drawing/XEnhancedCustomShapeDefaulter.hpp>
35#include <com/sun/star/lang/XMultiServiceFactory.hpp>
36#include <com/sun/star/lang/XServiceInfo.hpp>
37#include <com/sun/star/style/XStyleFamiliesSupplier.hpp>
38#include <com/sun/star/text/RelOrientation.hpp>
39#include <com/sun/star/text/TextContentAnchorType.hpp>
40#include <com/sun/star/text/VertOrientation.hpp>
41#include <com/sun/star/text/WrapTextMode.hpp>
42#include <com/sun/star/text/XTextContent.hpp>
43#include <com/sun/star/text/XTextDocument.hpp>
44#include <com/sun/star/text/XTextField.hpp>
45#include <com/sun/star/text/XTextRange.hpp>
46#include <com/sun/star/text/XParagraphAppend.hpp>
47#include <com/sun/star/text/XParagraphCursor.hpp>
48#include <com/sun/star/awt/FontWeight.hpp>
49#include <com/sun/star/rdf/XMetadatable.hpp>
50#include <com/sun/star/security/DocumentDigitalSignatures.hpp>
51#include <com/sun/star/security/XCertificate.hpp>
52
59#include <comphelper/string.hxx>
60#include <editeng/unoprnms.hxx>
64#include <svl/cryptosign.hxx>
65#include <svl/sigstruct.hxx>
66#include <utility>
67#include <vcl/svapp.hxx>
68#include <vcl/weld.hxx>
69#include <vcl/virdev.hxx>
70
71#include <redline.hxx>
72#include <poolfmt.hxx>
73#include <hintids.hxx>
74#include <doc.hxx>
75#include <IDocumentUndoRedo.hxx>
76#include <ndtxt.hxx>
77#include <paratr.hxx>
78#include <viewopt.hxx>
79#include <SwRewriter.hxx>
80#include <numrule.hxx>
81#include <swundo.hxx>
82#include <docary.hxx>
83#include <docsh.hxx>
84#include <unoprnms.hxx>
85#include <rootfrm.hxx>
86#include <pagefrm.hxx>
87#include <txtfrm.hxx>
88#include <rdfhelper.hxx>
90
91#include <unoparagraph.hxx>
92#include <strings.hrc>
93#include <undobj.hxx>
95#include <txtatr.hxx>
96#include <fmtmeta.hxx>
97#include <unotxdoc.hxx>
98#include <unotextbodyhf.hxx>
99#include <unoport.hxx>
100
103
104constexpr OUStringLiteral WATERMARK_NAME = u"PowerPlusWaterMarkObject";
105#define WATERMARK_AUTO_SIZE sal_uInt32(1)
106
107namespace
108{
109constexpr OUStringLiteral MetaFilename(u"tscp/bails.rdf");
110constexpr OUStringLiteral MetaNS(u"urn:bails");
111constexpr OUStringLiteral ParagraphSignatureRDFNamespace = u"urn:bails:loext:paragraph:signature:";
112constexpr OUStringLiteral ParagraphSignatureIdRDFName = u"urn:bails:loext:paragraph:signature:id";
113constexpr OUStringLiteral ParagraphSignatureDigestRDFName = u":digest";
114constexpr OUStringLiteral ParagraphSignatureDateRDFName = u":date";
115constexpr OUStringLiteral ParagraphSignatureUsageRDFName = u":usage";
116constexpr OUStringLiteral ParagraphSignatureLastIdRDFName = u"urn:bails:loext:paragraph:signature:lastid";
117constexpr OUStringLiteral ParagraphClassificationNameRDFName = u"urn:bails:loext:paragraph:classification:name";
118constexpr OUStringLiteral ParagraphClassificationValueRDFName = u"urn:bails:loext:paragraph:classification:value";
119constexpr OUStringLiteral ParagraphClassificationAbbrRDFName = u"urn:bails:loext:paragraph:classification:abbreviation";
120constexpr OUStringLiteral ParagraphClassificationFieldNamesRDFName = u"urn:bails:loext:paragraph:classification:fields";
121constexpr OUStringLiteral MetadataFieldServiceName = u"com.sun.star.text.textfield.MetadataField";
122constexpr OUStringLiteral DocInfoServiceName = u"com.sun.star.text.TextField.DocInfo.Custom";
123
125std::vector<OUString> lcl_getUsedPageStyles(SwViewShell const * pShell)
126{
127 std::vector<OUString> aReturn;
128
129 SwRootFrame* pLayout = pShell->GetLayout();
130 for (SwFrame* pFrame = pLayout->GetLower(); pFrame; pFrame = pFrame->GetNext())
131 {
132 SwPageFrame* pPage = static_cast<SwPageFrame*>(pFrame);
133 if (const SwPageDesc *pDesc = pPage->FindPageDesc())
134 aReturn.push_back(pDesc->GetName());
135 }
136
137 return aReturn;
138}
139
141uno::Reference<text::XTextField> lcl_findField(const uno::Reference<text::XText>& xText, const OUString& rServiceName, std::u16string_view rFieldName)
142{
143 uno::Reference<text::XTextField> xField;
144 uno::Reference<container::XEnumerationAccess> xParagraphEnumerationAccess(xText, uno::UNO_QUERY);
145 uno::Reference<container::XEnumeration> xParagraphs = xParagraphEnumerationAccess->createEnumeration();
146 while (xParagraphs->hasMoreElements())
147 {
148 uno::Reference<container::XEnumerationAccess> xTextPortionEnumerationAccess(xParagraphs->nextElement(), uno::UNO_QUERY);
149 uno::Reference<container::XEnumeration> xTextPortions = xTextPortionEnumerationAccess->createEnumeration();
150 while (xTextPortions->hasMoreElements())
151 {
152 uno::Reference<beans::XPropertySet> xTextPortion(xTextPortions->nextElement(), uno::UNO_QUERY);
153 OUString aTextPortionType;
154 xTextPortion->getPropertyValue(UNO_NAME_TEXT_PORTION_TYPE) >>= aTextPortionType;
155 if (aTextPortionType != UNO_NAME_TEXT_FIELD)
156 continue;
157
158 uno::Reference<lang::XServiceInfo> xTextField;
159 xTextPortion->getPropertyValue(UNO_NAME_TEXT_FIELD) >>= xTextField;
160 if (!xTextField->supportsService(rServiceName))
161 continue;
162
163 OUString aName;
164 uno::Reference<beans::XPropertySet> xPropertySet(xTextField, uno::UNO_QUERY);
165 xPropertySet->getPropertyValue(UNO_NAME_NAME) >>= aName;
166 if (aName == rFieldName)
167 {
168 xField = uno::Reference<text::XTextField>(xTextField, uno::UNO_QUERY);
169 break;
170 }
171 }
172 }
173
174 return xField;
175}
176
178bool lcl_hasField(const uno::Reference<text::XText>& xText, const OUString& rServiceName, std::u16string_view rFieldName)
179{
180 return lcl_findField(xText, rServiceName, rFieldName).is();
181}
182
184uno::Reference<drawing::XShape> lcl_getWatermark(const uno::Reference<text::XText>& xText,
185 const OUString& rServiceName, OUString& rShapeName, bool& bSuccess)
186{
187 bSuccess = false;
188 uno::Reference<container::XEnumerationAccess> xParagraphEnumerationAccess(xText, uno::UNO_QUERY);
189 uno::Reference<container::XEnumeration> xParagraphs = xParagraphEnumerationAccess->createEnumeration();
190 while (xParagraphs->hasMoreElements())
191 {
192 uno::Reference<container::XEnumerationAccess> xTextPortionEnumerationAccess(xParagraphs->nextElement(), uno::UNO_QUERY);
193 if (!xTextPortionEnumerationAccess.is())
194 continue;
195
196 bSuccess = true;
197
198 uno::Reference<container::XEnumeration> xTextPortions = xTextPortionEnumerationAccess->createEnumeration();
199 while (xTextPortions->hasMoreElements())
200 {
201 uno::Reference<beans::XPropertySet> xTextPortion(xTextPortions->nextElement(), uno::UNO_QUERY);
202 OUString aTextPortionType;
203 xTextPortion->getPropertyValue(UNO_NAME_TEXT_PORTION_TYPE) >>= aTextPortionType;
204 if (aTextPortionType != "Frame")
205 continue;
206
207 uno::Reference<container::XContentEnumerationAccess> xContentEnumerationAccess(xTextPortion, uno::UNO_QUERY);
208 if (!xContentEnumerationAccess.is())
209 continue;
210
211 uno::Reference<container::XEnumeration> xEnumeration = xContentEnumerationAccess->createContentEnumeration("com.sun.star.text.TextContent");
212 if (!xEnumeration->hasMoreElements())
213 continue;
214
215 uno::Reference<lang::XServiceInfo> xWatermark(xEnumeration->nextElement(), uno::UNO_QUERY);
216 if (!xWatermark->supportsService(rServiceName))
217 continue;
218
219 uno::Reference<container::XNamed> xNamed(xWatermark, uno::UNO_QUERY);
220
221 if (!xNamed->getName().match(WATERMARK_NAME))
222 continue;
223
224 rShapeName = xNamed->getName();
225
226 uno::Reference<drawing::XShape> xShape(xWatermark, uno::UNO_QUERY);
227 return xShape;
228 }
229 }
230
231 return uno::Reference<drawing::XShape>();
232}
233
236OString lcl_getParagraphBodyText(const uno::Reference<text::XTextContent>& xText)
237{
238 OUStringBuffer strBuf;
239 uno::Reference<container::XEnumerationAccess> xTextPortionEnumerationAccess(xText, uno::UNO_QUERY);
240 if (!xTextPortionEnumerationAccess.is())
241 return OString();
242
243 uno::Reference<container::XEnumeration> xTextPortions = xTextPortionEnumerationAccess->createEnumeration();
244 while (xTextPortions->hasMoreElements())
245 {
246 uno::Any elem = xTextPortions->nextElement();
247
248 //TODO: Consider including hidden and conditional texts/portions.
249 OUString aTextPortionType;
250 uno::Reference<beans::XPropertySet> xPropertySet(elem, uno::UNO_QUERY);
251 xPropertySet->getPropertyValue(UNO_NAME_TEXT_PORTION_TYPE) >>= aTextPortionType;
252 if (aTextPortionType == "Text")
253 {
254 uno::Reference<text::XTextRange> xTextRange(elem, uno::UNO_QUERY);
255 if (xTextRange.is())
256 strBuf.append(xTextRange->getString());
257 }
258 }
259
260 // Cleanup the dummy characters added by fields (which we exclude).
264
265 return strBuf.makeStringAndClear().trim().toUtf8();
266}
267
268template <typename T>
269std::map<OUString, OUString> lcl_getRDFStatements(const uno::Reference<frame::XModel>& xModel,
270 const T& xRef)
271{
272 try
273 {
274 const css::uno::Reference<css::rdf::XResource> xSubject(xRef, uno::UNO_QUERY);
275 return SwRDFHelper::getStatements(xModel, MetaNS, xSubject);
276 }
277 catch (const ::css::uno::Exception&)
278 {
279 }
280
281 return std::map<OUString, OUString>();
282}
283
285std::pair<OUString, OUString> lcl_getFieldRDFByPrefix(const uno::Reference<frame::XModel>& xModel,
286 const uno::Reference<css::text::XTextField>& xField,
287 std::u16string_view sPrefix)
288{
289 for (const auto& pair : lcl_getRDFStatements(xModel, xField))
290 {
291 if (pair.first.startsWith(sPrefix))
292 return pair;
293 }
294
295 return std::make_pair(OUString(), OUString());
296}
297
299template <typename T>
300std::pair<OUString, OUString> lcl_getRDF(const uno::Reference<frame::XModel>& xModel,
301 const T& xRef,
302 const OUString& sRDFName)
303{
304 const std::map<OUString, OUString> aStatements = lcl_getRDFStatements(xModel, xRef);
305 const auto it = aStatements.find(sRDFName);
306 return (it != aStatements.end()) ? std::make_pair(it->first, it->second) : std::make_pair(OUString(), OUString());
307}
308
311bool lcl_IsParagraphSignatureField(const uno::Reference<frame::XModel>& xModel,
312 const uno::Reference<css::text::XTextField>& xField)
313{
314 return (lcl_getRDF(xModel, xField, ParagraphSignatureIdRDFName).first == ParagraphSignatureIdRDFName);
315}
316
317uno::Reference<text::XTextField> lcl_findFieldByRDF(const uno::Reference<frame::XModel>& xModel,
318 const uno::Reference<text::XTextContent>& xParagraph,
319 const OUString& sRDFName,
320 std::u16string_view sRDFValue)
321{
322 uno::Reference<container::XEnumerationAccess> xTextPortionEnumerationAccess(xParagraph, uno::UNO_QUERY);
323 if (!xTextPortionEnumerationAccess.is())
324 return uno::Reference<text::XTextField>();
325
326 uno::Reference<container::XEnumeration> xTextPortions = xTextPortionEnumerationAccess->createEnumeration();
327 if (!xTextPortions.is())
328 return uno::Reference<text::XTextField>();
329
330 while (xTextPortions->hasMoreElements())
331 {
332 uno::Reference<beans::XPropertySet> xTextPortion(xTextPortions->nextElement(), uno::UNO_QUERY);
333 OUString aTextPortionType;
334 xTextPortion->getPropertyValue(UNO_NAME_TEXT_PORTION_TYPE) >>= aTextPortionType;
335 if (aTextPortionType != UNO_NAME_TEXT_FIELD)
336 continue;
337
338 uno::Reference<lang::XServiceInfo> xTextField;
339 xTextPortion->getPropertyValue(UNO_NAME_TEXT_FIELD) >>= xTextField;
340 if (!xTextField->supportsService(MetadataFieldServiceName))
341 continue;
342
343 uno::Reference<text::XTextField> xField(xTextField, uno::UNO_QUERY);
344 const std::pair<OUString, OUString> pair = lcl_getRDF(xModel, xField, sRDFName);
345 if (pair.first == sRDFName && (sRDFValue.empty() || sRDFValue == pair.second))
346 return xField;
347 }
348
349 return uno::Reference<text::XTextField>();
350}
351
352struct SignatureDescr
353{
354 OUString msSignature;
355 OUString msUsage;
356 OUString msDate;
357
358 bool isValid() const { return !msSignature.isEmpty(); }
359};
360
361SignatureDescr lcl_getSignatureDescr(const uno::Reference<frame::XModel>& xModel,
362 const uno::Reference<css::text::XTextContent>& xParagraph,
363 std::u16string_view sFieldId)
364{
365 SignatureDescr aDescr;
366
367 const OUString prefix = ParagraphSignatureRDFNamespace + sFieldId;
368 const std::map<OUString, OUString> aStatements = lcl_getRDFStatements(xModel, xParagraph);
369
370 const auto itSig = aStatements.find(prefix + ParagraphSignatureDigestRDFName);
371 aDescr.msSignature = (itSig != aStatements.end() ? itSig->second : OUString());
372
373 const auto itDate = aStatements.find(prefix + ParagraphSignatureDateRDFName);
374 aDescr.msDate = (itDate != aStatements.end() ? itDate->second : OUString());
375
376 const auto itUsage = aStatements.find(prefix + ParagraphSignatureUsageRDFName);
377 aDescr.msUsage = (itUsage != aStatements.end() ? itUsage->second : OUString());
378
379 return aDescr;
380}
381
382SignatureDescr lcl_getSignatureDescr(const uno::Reference<frame::XModel>& xModel,
383 const uno::Reference<css::text::XTextContent>& xParagraph,
384 const uno::Reference<css::text::XTextField>& xField)
385{
386 const OUString sFieldId = lcl_getRDF(xModel, xField, ParagraphSignatureIdRDFName).second;
387 if (!sFieldId.isEmpty())
388 return lcl_getSignatureDescr(xModel, xParagraph, sFieldId);
389
390 return SignatureDescr();
391}
392
394std::pair<bool, OUString> lcl_MakeParagraphSignatureFieldText(const SignatureDescr& aDescr,
395 const OString& utf8Text)
396{
397 OUString msg = SwResId(STR_INVALID_SIGNATURE);
398 bool valid = false;
399
400 if (aDescr.isValid())
401 {
402 const char* pData = utf8Text.getStr();
403 const std::vector<unsigned char> data(pData, pData + utf8Text.getLength());
404
405 OString encSignature;
406 if (aDescr.msSignature.convertToString(&encSignature, RTL_TEXTENCODING_UTF8, 0))
407 {
408 const std::vector<unsigned char> sig(svl::crypto::DecodeHexString(encSignature));
409 SignatureInformation aInfo(0);
410 valid = svl::crypto::Signing::Verify(data, false, sig, aInfo);
411 valid = valid
412 && aInfo.nStatus == xml::crypto::SecurityOperationStatus_OPERATION_SUCCEEDED;
413
414 assert(aInfo.GetSigningCertificate()); // it was valid
415 msg = SwResId(STR_SIGNED_BY) + ": " + aInfo.GetSigningCertificate()->X509Subject + ", " +
416 aDescr.msDate;
417 msg += (!aDescr.msUsage.isEmpty() ? (" (" + aDescr.msUsage + "): ") : OUString(": "));
418 msg += (valid ? SwResId(STR_VALID) : SwResId(STR_INVALID));
419 }
420 }
421
422 return std::make_pair(valid, msg);
423}
424
426std::pair<bool, OUString>
427lcl_MakeParagraphSignatureFieldText(const uno::Reference<frame::XModel>& xModel,
428 const uno::Reference<css::text::XTextContent>& xParagraph,
429 const uno::Reference<css::text::XTextField>& xField,
430 const OString& utf8Text)
431{
432 const SignatureDescr aDescr = lcl_getSignatureDescr(xModel, xParagraph, xField);
433 return lcl_MakeParagraphSignatureFieldText(aDescr, utf8Text);
434}
435
437OUString lcl_getNextSignatureId(const uno::Reference<frame::XModel>& xModel,
438 const uno::Reference<text::XTextContent>& xParagraph)
439{
440 const OUString sFieldId = lcl_getRDF(xModel, xParagraph, ParagraphSignatureLastIdRDFName).second;
441 return OUString::number(!sFieldId.isEmpty() ? sFieldId.toInt32() + 1 : 1);
442}
443
445uno::Reference<text::XTextField> lcl_InsertParagraphSignature(const uno::Reference<frame::XModel>& xModel,
446 const uno::Reference<text::XTextContent>& xParagraph,
447 const OUString& signature,
448 const OUString& usage)
449{
450 uno::Reference<lang::XMultiServiceFactory> xMultiServiceFactory(xModel, uno::UNO_QUERY);
451 auto xField = uno::Reference<text::XTextField>(xMultiServiceFactory->createInstance(MetadataFieldServiceName), uno::UNO_QUERY);
452
453 // Add the signature at the end.
454 xField->attach(xParagraph->getAnchor()->getEnd());
455
456 const OUString sId = lcl_getNextSignatureId(xModel, xParagraph);
457
458 const css::uno::Reference<css::rdf::XResource> xSubject(xField, uno::UNO_QUERY);
459 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xSubject, ParagraphSignatureIdRDFName, sId);
460
461 // First convert the UTC UNIX timestamp to a tools::DateTime then to local time.
462 DateTime aDateTime = DateTime::CreateFromUnixTime(time(nullptr));
463 aDateTime.ConvertToLocalTime();
464 OUStringBuffer rBuffer;
465 rBuffer.append(static_cast<sal_Int32>(aDateTime.GetYear()));
466 rBuffer.append('-');
467 if (aDateTime.GetMonth() < 10)
468 rBuffer.append('0');
469 rBuffer.append(static_cast<sal_Int32>(aDateTime.GetMonth()));
470 rBuffer.append('-');
471 if (aDateTime.GetDay() < 10)
472 rBuffer.append('0');
473 rBuffer.append(static_cast<sal_Int32>(aDateTime.GetDay()));
474
475 // Now set the RDF on the paragraph, since that's what is preserved in .doc(x).
476 const css::uno::Reference<css::rdf::XResource> xParaSubject(xParagraph, uno::UNO_QUERY);
477 const OUString prefix = ParagraphSignatureRDFNamespace + sId;
478 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xParaSubject, ParagraphSignatureLastIdRDFName, sId);
479 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xParaSubject, prefix + ParagraphSignatureDigestRDFName, signature);
480 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xParaSubject, prefix + ParagraphSignatureUsageRDFName, usage);
481 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xParaSubject, prefix + ParagraphSignatureDateRDFName, rBuffer.makeStringAndClear());
482
483 return xField;
484}
485
487bool lcl_DoUpdateParagraphSignatureField(SwDoc& rDoc,
488 const uno::Reference<css::text::XTextField>& xField,
489 const OUString& sDisplayText)
490{
491 // Disable undo to avoid introducing noise when we edit the metadata field.
492 const bool isUndoEnabled = rDoc.GetIDocumentUndoRedo().DoesUndo();
493 rDoc.GetIDocumentUndoRedo().DoUndo(false);
494 comphelper::ScopeGuard const g([&rDoc, isUndoEnabled]() {
495 rDoc.GetIDocumentUndoRedo().DoUndo(isUndoEnabled);
496 });
497
498 try
499 {
500 uno::Reference<css::text::XTextRange> xText(xField, uno::UNO_QUERY);
501 const OUString curText = xText->getString();
502 if (curText != sDisplayText)
503 {
504 xText->setString(sDisplayText);
505 return true;
506 }
507 }
508 catch (const uno::Exception&)
509 {
510 // We failed; avoid crashing.
511 DBG_UNHANDLED_EXCEPTION("sw.uno", "Failed to update paragraph signature");
512 }
513
514 return false;
515}
516
518bool lcl_UpdateParagraphSignatureField(SwDoc& rDoc,
519 const uno::Reference<frame::XModel>& xModel,
520 const uno::Reference<css::text::XTextContent>& xParagraph,
521 const uno::Reference<css::text::XTextField>& xField,
522 const OString& utf8Text)
523{
524 const OUString sDisplayText
525 = lcl_MakeParagraphSignatureFieldText(xModel, xParagraph, xField, utf8Text).second;
526 return lcl_DoUpdateParagraphSignatureField(rDoc, xField, sDisplayText);
527}
528
529void lcl_RemoveParagraphMetadataField(const uno::Reference<css::text::XTextField>& xField)
530{
531 uno::Reference<css::text::XTextRange> xParagraph(xField->getAnchor());
532 xParagraph->getText()->removeTextContent(xField);
533}
534
537bool lcl_IsParagraphClassificationField(const uno::Reference<frame::XModel>& xModel,
538 const uno::Reference<css::text::XTextField>& xField,
539 std::u16string_view sKey)
540{
541 const std::pair<OUString, OUString> rdfPair = lcl_getRDF(xModel, xField, ParagraphClassificationNameRDFName);
542 return rdfPair.first == ParagraphClassificationNameRDFName && (sKey.empty() || rdfPair.second == sKey);
543}
544
545uno::Reference<text::XTextField> lcl_FindParagraphClassificationField(const uno::Reference<frame::XModel>& xModel,
546 const rtl::Reference<SwXParagraph>& xParagraph,
547 std::u16string_view sKey = u"")
548{
549 uno::Reference<text::XTextField> xTextField;
550
551 if (!xParagraph.is())
552 return xTextField;
553
554 // Enumerate text portions to find metadata fields. This is expensive, best to enumerate fields only.
555 rtl::Reference<SwXTextPortionEnumeration> xTextPortions = xParagraph->createTextFieldsEnumeration();
556 while (xTextPortions->hasMoreElements())
557 {
558 uno::Reference<beans::XPropertySet> xTextPortion(xTextPortions->nextElement(), uno::UNO_QUERY);
559 OUString aTextPortionType;
560 xTextPortion->getPropertyValue(UNO_NAME_TEXT_PORTION_TYPE) >>= aTextPortionType;
561 if (aTextPortionType != UNO_NAME_TEXT_FIELD)
562 continue;
563
564 uno::Reference<lang::XServiceInfo> xServiceInfo;
565 xTextPortion->getPropertyValue(UNO_NAME_TEXT_FIELD) >>= xServiceInfo;
566 if (!xServiceInfo->supportsService(MetadataFieldServiceName))
567 continue;
568
569 uno::Reference<text::XTextField> xField(xServiceInfo, uno::UNO_QUERY);
570 if (lcl_IsParagraphClassificationField(xModel, xField, sKey))
571 {
572 xTextField = xField;
573 break;
574 }
575 }
576
577 return xTextField;
578}
579
581uno::Reference<text::XTextField> lcl_InsertParagraphClassification(const uno::Reference<frame::XModel>& xModel,
582 const uno::Reference<text::XTextContent>& xParent)
583{
584 uno::Reference<lang::XMultiServiceFactory> xMultiServiceFactory(xModel, uno::UNO_QUERY);
585 auto xField = uno::Reference<text::XTextField>(xMultiServiceFactory->createInstance(MetadataFieldServiceName), uno::UNO_QUERY);
586
587 // Add the classification at the start.
588 xField->attach(xParent->getAnchor()->getStart());
589 return xField;
590}
591
593bool lcl_UpdateParagraphClassificationField(SwDoc* pDoc,
594 const uno::Reference<frame::XModel>& xModel,
595 const uno::Reference<css::text::XTextContent>& xTextNode,
596 const OUString& sKey,
597 const OUString& sValue,
598 const OUString& sDisplayText)
599{
600 // Disable undo to avoid introducing noise when we edit the metadata field.
601 const bool isUndoEnabled = pDoc->GetIDocumentUndoRedo().DoesUndo();
602 pDoc->GetIDocumentUndoRedo().DoUndo(false);
603 comphelper::ScopeGuard const g([pDoc, isUndoEnabled] () {
604 pDoc->GetIDocumentUndoRedo().DoUndo(isUndoEnabled);
605 });
606
607 uno::Reference<text::XTextField> xField = lcl_InsertParagraphClassification(xModel, xTextNode);
608
609 css::uno::Reference<css::rdf::XResource> xFieldSubject(xField, uno::UNO_QUERY);
610 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xFieldSubject, sKey, sValue);
611 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xFieldSubject, ParagraphClassificationNameRDFName, sKey);
612 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xFieldSubject, ParagraphClassificationValueRDFName, sValue);
613
614 css::uno::Reference<css::rdf::XResource> xNodeSubject(xTextNode, uno::UNO_QUERY);
615 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xNodeSubject, sKey, sValue);
616
617 return lcl_DoUpdateParagraphSignatureField(*pDoc, xField, sDisplayText);
618}
619
620void lcl_ValidateParagraphSignatures(SwDoc& rDoc, const uno::Reference<text::XTextContent>& xParagraph, const bool updateDontRemove)
621{
622 SwDocShell* pDocShell = rDoc.GetDocShell();
623 if (!pDocShell)
624 return;
625
626 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
627
628 // Check if the paragraph is signed.
629 try
630 {
631 const std::pair<OUString, OUString> pair = lcl_getRDF(xModel, xParagraph, ParagraphSignatureLastIdRDFName);
632 if (pair.second.isEmpty())
633 return;
634 }
635 catch (const ::css::uno::Exception&)
636 {
637 return;
638 }
639
640 uno::Reference<container::XEnumerationAccess> xTextPortionEnumerationAccess(xParagraph, uno::UNO_QUERY);
641 if (!xTextPortionEnumerationAccess.is())
642 return;
643
644 uno::Reference<container::XEnumeration> xTextPortions = xTextPortionEnumerationAccess->createEnumeration();
645 if (!xTextPortions.is())
646 return;
647
648 // Get the text (without fields).
649 const OString utf8Text = lcl_getParagraphBodyText(xParagraph);
650 if (utf8Text.isEmpty())
651 return;
652
653 while (xTextPortions->hasMoreElements())
654 {
655 uno::Reference<beans::XPropertySet> xTextPortion(xTextPortions->nextElement(), uno::UNO_QUERY);
656 OUString aTextPortionType;
657 xTextPortion->getPropertyValue(UNO_NAME_TEXT_PORTION_TYPE) >>= aTextPortionType;
658 if (aTextPortionType != UNO_NAME_TEXT_FIELD)
659 continue;
660
661 uno::Reference<lang::XServiceInfo> xTextField;
662 xTextPortion->getPropertyValue(UNO_NAME_TEXT_FIELD) >>= xTextField;
663 if (!xTextField->supportsService(MetadataFieldServiceName))
664 continue;
665
666 uno::Reference<text::XTextField> xField(xTextField, uno::UNO_QUERY);
667 if (!lcl_IsParagraphSignatureField(xModel, xField))
668 {
669 continue;
670 }
671
672 if (updateDontRemove)
673 {
674 lcl_UpdateParagraphSignatureField(rDoc, xModel, xParagraph, xField, utf8Text);
675 }
676 else if (!lcl_MakeParagraphSignatureFieldText(xModel, xParagraph, xField, utf8Text).first)
677 {
678 rDoc.GetIDocumentUndoRedo().StartUndo(SwUndoId::PARA_SIGN_ADD, nullptr);
679 rDoc.GetIDocumentUndoRedo().AppendUndo(
680 std::make_unique<SwUndoParagraphSigning>(rDoc, xField, xParagraph, false));
681 lcl_RemoveParagraphMetadataField(xField);
682 rDoc.GetIDocumentUndoRedo().EndUndo(SwUndoId::PARA_SIGN_ADD, nullptr);
683 }
684 }
685}
686
687} // anonymous namespace
688
690{
691 return *GetDoc()->GetDfltTextFormatColl();
692}
693
695{
696 return GetDoc()->GetTextFormatColls()->size();
697}
698
700{
701 return *((*(GetDoc()->GetTextFormatColls()))[nFormatColl]);
702}
703
704static void insertFieldToDocument(uno::Reference<lang::XMultiServiceFactory> const & rxMultiServiceFactory,
705 uno::Reference<text::XText> const & rxText, uno::Reference<text::XParagraphCursor> const & rxParagraphCursor,
706 OUString const & rsKey)
707{
708 uno::Reference<beans::XPropertySet> xField(rxMultiServiceFactory->createInstance(DocInfoServiceName), uno::UNO_QUERY);
709 xField->setPropertyValue(UNO_NAME_NAME, uno::Any(rsKey));
710 uno::Reference<text::XTextContent> xTextContent(xField, uno::UNO_QUERY);
711
712 rxText->insertTextContent(rxParagraphCursor, xTextContent, false);
713}
714
715static void removeAllClassificationFields(std::u16string_view rPolicy, uno::Reference<text::XText> const & rxText)
716{
717 uno::Reference<container::XEnumerationAccess> xParagraphEnumerationAccess(rxText, uno::UNO_QUERY);
718 uno::Reference<container::XEnumeration> xParagraphs = xParagraphEnumerationAccess->createEnumeration();
719 while (xParagraphs->hasMoreElements())
720 {
721 uno::Reference<container::XEnumerationAccess> xTextPortionEnumerationAccess(xParagraphs->nextElement(), uno::UNO_QUERY);
722 uno::Reference<container::XEnumeration> xTextPortions = xTextPortionEnumerationAccess->createEnumeration();
723 while (xTextPortions->hasMoreElements())
724 {
725 uno::Reference<beans::XPropertySet> xTextPortion(xTextPortions->nextElement(), uno::UNO_QUERY);
726 OUString aTextPortionType;
727 xTextPortion->getPropertyValue(UNO_NAME_TEXT_PORTION_TYPE) >>= aTextPortionType;
728 if (aTextPortionType != UNO_NAME_TEXT_FIELD)
729 continue;
730
731 uno::Reference<lang::XServiceInfo> xTextField;
732 xTextPortion->getPropertyValue(UNO_NAME_TEXT_FIELD) >>= xTextField;
733 if (!xTextField->supportsService(DocInfoServiceName))
734 continue;
735
736 OUString aName;
737 uno::Reference<beans::XPropertySet> xPropertySet(xTextField, uno::UNO_QUERY);
738 xPropertySet->getPropertyValue(UNO_NAME_NAME) >>= aName;
739 if (aName.startsWith(rPolicy))
740 {
741 uno::Reference<text::XTextField> xField(xTextField, uno::UNO_QUERY);
742 rxText->removeTextContent(xField);
743 }
744 }
745 }
746}
747
748static sal_Int32 getNumberOfParagraphs(uno::Reference<text::XText> const & xText)
749{
750 uno::Reference<container::XEnumerationAccess> xParagraphEnumAccess(xText, uno::UNO_QUERY);
751 uno::Reference<container::XEnumeration> xParagraphEnum = xParagraphEnumAccess->createEnumeration();
752 sal_Int32 nResult = 0;
753 while (xParagraphEnum->hasMoreElements())
754 {
755 xParagraphEnum->nextElement();
756 nResult++;
757 }
758 return nResult;
759}
760
761static void equaliseNumberOfParagraph(std::vector<svx::ClassificationResult> const & rResults, uno::Reference<text::XText> const & xText)
762{
763 sal_Int32 nNumberOfParagraphs = 0;
764 for (svx::ClassificationResult const & rResult : rResults)
765 {
766 if (rResult.meType == svx::ClassificationType::PARAGRAPH)
767 nNumberOfParagraphs++;
768 }
769
770 while (getNumberOfParagraphs(xText) < nNumberOfParagraphs)
771 {
772 uno::Reference<text::XParagraphAppend> xParagraphAppend(xText, uno::UNO_QUERY);
773 xParagraphAppend->finishParagraph(uno::Sequence<beans::PropertyValue>());
774 }
775}
776
777void SwEditShell::ApplyAdvancedClassification(std::vector<svx::ClassificationResult> const & rResults)
778{
779 SwDocShell* pDocShell = GetDoc()->GetDocShell();
780 if (!pDocShell)
781 return;
782
783 const SfxObjectShell* pObjSh = SfxObjectShell::Current();
784 if (!pObjSh)
785 return;
786
787 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
788 uno::Reference<style::XStyleFamiliesSupplier> xStyleFamiliesSupplier(xModel, uno::UNO_QUERY);
789 uno::Reference<container::XNameAccess> xStyleFamilies = xStyleFamiliesSupplier->getStyleFamilies();
790 uno::Reference<container::XNameAccess> xStyleFamily(xStyleFamilies->getByName("PageStyles"), uno::UNO_QUERY);
791
792 uno::Reference<lang::XMultiServiceFactory> xMultiServiceFactory(xModel, uno::UNO_QUERY);
793
794 uno::Reference<document::XDocumentProperties> xDocumentProperties = pObjSh->getDocProperties();
795
797 const std::vector<OUString> aUsedPageStyles = lcl_getUsedPageStyles(this);
798 for (const OUString& rPageStyleName : aUsedPageStyles)
799 {
800 uno::Reference<beans::XPropertySet> xPageStyle(xStyleFamily->getByName(rPageStyleName), uno::UNO_QUERY);
801
802 // HEADER
803 bool bHeaderIsOn = false;
804 xPageStyle->getPropertyValue(UNO_NAME_HEADER_IS_ON) >>= bHeaderIsOn;
805 uno::Reference<text::XText> xHeaderText;
806 if (bHeaderIsOn)
807 xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT) >>= xHeaderText;
808 if (xHeaderText.is())
809 removeAllClassificationFields(sPolicy, xHeaderText);
810
811 // FOOTER
812 bool bFooterIsOn = false;
813 xPageStyle->getPropertyValue(UNO_NAME_FOOTER_IS_ON) >>= bFooterIsOn;
814 uno::Reference<text::XText> xFooterText;
815 if (bFooterIsOn)
816 xPageStyle->getPropertyValue(UNO_NAME_FOOTER_TEXT) >>= xFooterText;
817 if (xFooterText.is())
818 removeAllClassificationFields(sPolicy, xFooterText);
819 }
820
821 // Clear properties
822 uno::Reference<beans::XPropertyContainer> xPropertyContainer = xDocumentProperties->getUserDefinedProperties();
824
825 SfxClassificationHelper aHelper(xDocumentProperties);
826
827 // Apply properties from the BA policy
828 for (svx::ClassificationResult const & rResult : rResults)
829 {
830 if (rResult.meType == svx::ClassificationType::CATEGORY)
831 {
832 aHelper.SetBACName(rResult.msName, SfxClassificationHelper::getPolicyType());
833 }
834 }
835
837
838 // Insert origin document property
840
841 // Insert full text as document property
843
844 for (const OUString& rPageStyleName : aUsedPageStyles)
845 {
846 uno::Reference<beans::XPropertySet> xPageStyle(xStyleFamily->getByName(rPageStyleName), uno::UNO_QUERY);
847
848 // HEADER
849 bool bHeaderIsOn = false;
850 xPageStyle->getPropertyValue(UNO_NAME_HEADER_IS_ON) >>= bHeaderIsOn;
851 if (!bHeaderIsOn)
852 xPageStyle->setPropertyValue(UNO_NAME_HEADER_IS_ON, uno::Any(true));
853 uno::Reference<text::XText> xHeaderText;
854 xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT) >>= xHeaderText;
855 equaliseNumberOfParagraph(rResults, xHeaderText);
856
857 // FOOTER
858 bool bFooterIsOn = false;
859 xPageStyle->getPropertyValue(UNO_NAME_FOOTER_IS_ON) >>= bFooterIsOn;
860 if (!bFooterIsOn)
861 xPageStyle->setPropertyValue(UNO_NAME_FOOTER_IS_ON, uno::Any(true));
862 uno::Reference<text::XText> xFooterText;
863 xPageStyle->getPropertyValue(UNO_NAME_FOOTER_TEXT) >>= xFooterText;
864 equaliseNumberOfParagraph(rResults, xFooterText);
865
866 // SET/DELETE WATERMARK
867 SfxWatermarkItem aWatermarkItem;
868 aWatermarkItem.SetText(aHelper.GetDocumentWatermark());
869 SetWatermark(aWatermarkItem);
870
871 uno::Reference<text::XParagraphCursor> xHeaderParagraphCursor(xHeaderText->createTextCursor(), uno::UNO_QUERY);
872 uno::Reference<text::XParagraphCursor> xFooterParagraphCursor(xFooterText->createTextCursor(), uno::UNO_QUERY);
873
874 sal_Int32 nParagraph = -1;
875
876 for (svx::ClassificationResult const & rResult : rResults)
877 {
878 switch(rResult.meType)
879 {
881 {
882 OUString sKey = aCreator.makeNumberedTextKey();
883
884 svx::classification::addOrInsertDocumentProperty(xPropertyContainer, sKey, rResult.msName);
885 insertFieldToDocument(xMultiServiceFactory, xHeaderText, xHeaderParagraphCursor, sKey);
886 insertFieldToDocument(xMultiServiceFactory, xFooterText, xFooterParagraphCursor, sKey);
887 }
888 break;
889
891 {
892 OUString sKey = aCreator.makeCategoryNameKey();
893 insertFieldToDocument(xMultiServiceFactory, xHeaderText, xHeaderParagraphCursor, sKey);
894 insertFieldToDocument(xMultiServiceFactory, xFooterText, xFooterParagraphCursor, sKey);
895 }
896 break;
897
899 {
900 OUString sKey = aCreator.makeNumberedMarkingKey();
901 svx::classification::addOrInsertDocumentProperty(xPropertyContainer, sKey, rResult.msName);
902 insertFieldToDocument(xMultiServiceFactory, xHeaderText, xHeaderParagraphCursor, sKey);
903 insertFieldToDocument(xMultiServiceFactory, xFooterText, xFooterParagraphCursor, sKey);
904 }
905 break;
906
908 {
909 OUString sKey = aCreator.makeNumberedIntellectualPropertyPartKey();
910 svx::classification::addOrInsertDocumentProperty(xPropertyContainer, sKey, rResult.msName);
911 insertFieldToDocument(xMultiServiceFactory, xHeaderText, xHeaderParagraphCursor, sKey);
912 insertFieldToDocument(xMultiServiceFactory, xFooterText, xFooterParagraphCursor, sKey);
913 }
914 break;
915
917 {
918 nParagraph++;
919
920 if (nParagraph != 0) // only jump to next paragraph, if we aren't at the first paragraph
921 {
922 xHeaderParagraphCursor->gotoNextParagraph(false);
923 xFooterParagraphCursor->gotoNextParagraph(false);
924 }
925
926 xHeaderParagraphCursor->gotoStartOfParagraph(false);
927 xFooterParagraphCursor->gotoStartOfParagraph(false);
928
929 uno::Reference<beans::XPropertySet> xHeaderPropertySet(xHeaderParagraphCursor, uno::UNO_QUERY_THROW);
930 uno::Reference<beans::XPropertySet> xFooterPropertySet(xFooterParagraphCursor, uno::UNO_QUERY_THROW);
931 if (rResult.msName == "BOLD")
932 {
933 xHeaderPropertySet->setPropertyValue("CharWeight", uno::Any(awt::FontWeight::BOLD));
934 xFooterPropertySet->setPropertyValue("CharWeight", uno::Any(awt::FontWeight::BOLD));
935 }
936 else
937 {
938 xHeaderPropertySet->setPropertyValue("CharWeight", uno::Any(awt::FontWeight::NORMAL));
939 xFooterPropertySet->setPropertyValue("CharWeight", uno::Any(awt::FontWeight::NORMAL));
940 }
941 }
942 break;
943
944 default:
945 break;
946 }
947 }
948 }
949}
950
951std::vector<svx::ClassificationResult> SwEditShell::CollectAdvancedClassification()
952{
953 std::vector<svx::ClassificationResult> aResult;
954
955 SwDocShell* pDocShell = GetDoc()->GetDocShell();
956 if (!pDocShell)
957 return aResult;
958
959 const SfxObjectShell* pObjSh = SfxObjectShell::Current();
960 if (!pObjSh)
961 return aResult;
962
963 const OUString sBlank;
964
965 uno::Reference<document::XDocumentProperties> xDocumentProperties = pObjSh->getDocProperties();
966 uno::Reference<beans::XPropertyContainer> xPropertyContainer = xDocumentProperties->getUserDefinedProperties();
968
969 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
970 uno::Reference<style::XStyleFamiliesSupplier> xStyleFamiliesSupplier(xModel, uno::UNO_QUERY);
971 uno::Reference<container::XNameAccess> xStyleFamilies = xStyleFamiliesSupplier->getStyleFamilies();
972 uno::Reference<container::XNameAccess> xStyleFamily(xStyleFamilies->getByName("PageStyles"), uno::UNO_QUERY);
973
974 std::vector<OUString> aPageStyles = lcl_getUsedPageStyles(this);
975 OUString aPageStyleString = aPageStyles.back();
976 uno::Reference<beans::XPropertySet> xPageStyle(xStyleFamily->getByName(aPageStyleString), uno::UNO_QUERY);
977
978 bool bHeaderIsOn = false;
979 xPageStyle->getPropertyValue(UNO_NAME_HEADER_IS_ON) >>= bHeaderIsOn;
980 if (!bHeaderIsOn)
981 {
982 const OUString aValue = svx::classification::getProperty(xPropertyContainer, aCreator.makeCategoryNameKey());
983 if (!aValue.isEmpty())
984 aResult.push_back({ svx::ClassificationType::CATEGORY, aValue, sBlank, sBlank });
985
986 return aResult;
987 }
988
989 uno::Reference<text::XText> xHeaderText;
990 xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT) >>= xHeaderText;
991
992 uno::Reference<container::XEnumerationAccess> xParagraphEnumerationAccess(xHeaderText, uno::UNO_QUERY);
993 uno::Reference<container::XEnumeration> xParagraphs = xParagraphEnumerationAccess->createEnumeration();
994
995 // set to true if category was found in the header
996 bool bFoundClassificationCategory = false;
997
998 while (xParagraphs->hasMoreElements())
999 {
1000 uno::Reference<container::XEnumerationAccess> xTextPortionEnumerationAccess(xParagraphs->nextElement(), uno::UNO_QUERY);
1001 if (!xTextPortionEnumerationAccess.is())
1002 continue;
1003 uno::Reference<container::XEnumeration> xTextPortions = xTextPortionEnumerationAccess->createEnumeration();
1004
1005 // Check font weight
1006 uno::Reference<beans::XPropertySet> xParagraphPropertySet(xTextPortionEnumerationAccess, uno::UNO_QUERY_THROW);
1007 uno::Any aAny = xParagraphPropertySet->getPropertyValue("CharWeight");
1008
1009 OUString sWeight = (aAny.get<float>() >= awt::FontWeight::BOLD) ? OUString("BOLD") : OUString("NORMAL");
1010
1011 aResult.push_back({ svx::ClassificationType::PARAGRAPH, sWeight, sBlank, sBlank });
1012
1013 // Process portions
1014 while (xTextPortions->hasMoreElements())
1015 {
1016 uno::Reference<beans::XPropertySet> xTextPortion(xTextPortions->nextElement(), uno::UNO_QUERY);
1017 OUString aTextPortionType;
1018 xTextPortion->getPropertyValue(UNO_NAME_TEXT_PORTION_TYPE) >>= aTextPortionType;
1019 if (aTextPortionType != UNO_NAME_TEXT_FIELD)
1020 continue;
1021
1022 uno::Reference<lang::XServiceInfo> xTextField;
1023 xTextPortion->getPropertyValue(UNO_NAME_TEXT_FIELD) >>= xTextField;
1024 if (!xTextField->supportsService(DocInfoServiceName))
1025 continue;
1026
1027 OUString aName;
1028 uno::Reference<beans::XPropertySet> xPropertySet(xTextField, uno::UNO_QUERY);
1029 xPropertySet->getPropertyValue(UNO_NAME_NAME) >>= aName;
1030
1031 if (aCreator.isMarkingTextKey(aName))
1032 {
1033 const OUString aValue = svx::classification::getProperty(xPropertyContainer, aName);
1034 if (!aValue.isEmpty())
1035 aResult.push_back({ svx::ClassificationType::TEXT, aValue, sBlank, sBlank });
1036 }
1037 else if (aCreator.isCategoryNameKey(aName))
1038 {
1039 const OUString aValue = svx::classification::getProperty(xPropertyContainer, aName);
1040 if (!aValue.isEmpty())
1041 aResult.push_back({ svx::ClassificationType::CATEGORY, aValue, sBlank, sBlank });
1042 bFoundClassificationCategory = true;
1043 }
1044 else if (aCreator.isCategoryIdentifierKey(aName))
1045 {
1046 const OUString aValue = svx::classification::getProperty(xPropertyContainer, aName);
1047 if (!aValue.isEmpty())
1048 aResult.push_back({ svx::ClassificationType::CATEGORY, sBlank, sBlank, aValue });
1049 bFoundClassificationCategory = true;
1050 }
1051 else if (aCreator.isMarkingKey(aName))
1052 {
1053 const OUString aValue = svx::classification::getProperty(xPropertyContainer, aName);
1054 if (!aValue.isEmpty())
1055 aResult.push_back({ svx::ClassificationType::MARKING, aValue, sBlank, sBlank });
1056 }
1057 else if (aCreator.isIntellectualPropertyPartKey(aName))
1058 {
1059 const OUString aValue = svx::classification::getProperty(xPropertyContainer, aName);
1060 if (!aValue.isEmpty())
1061 aResult.push_back({ svx::ClassificationType::INTELLECTUAL_PROPERTY_PART, aValue, sBlank, sBlank });
1062 }
1063 }
1064 }
1065
1066 if (!bFoundClassificationCategory)
1067 {
1068 const OUString aValue = svx::classification::getProperty(xPropertyContainer, aCreator.makeCategoryNameKey());
1069 if (!aValue.isEmpty())
1070 aResult.push_back({ svx::ClassificationType::CATEGORY, aValue, sBlank, sBlank });
1071 }
1072
1073 return aResult;
1074}
1075
1077{
1078 SwDocShell* pDocShell = GetDoc()->GetDocShell();
1079 if (!pDocShell)
1080 return;
1081
1083
1084 const bool bHadWatermark = !aHelper.GetDocumentWatermark().isEmpty();
1085
1086 // This updates the infobar as well.
1087 aHelper.SetBACName(rName, eType);
1088
1089 // Insert origin document property
1090 uno::Reference<beans::XPropertyContainer> xPropertyContainer = pDocShell->getDocProperties()->getUserDefinedProperties();
1093
1094 bool bHeaderIsNeeded = aHelper.HasDocumentHeader();
1095 bool bFooterIsNeeded = aHelper.HasDocumentFooter();
1096 OUString aWatermark = aHelper.GetDocumentWatermark();
1097 bool bWatermarkIsNeeded = !aWatermark.isEmpty();
1098
1099 if (!bHeaderIsNeeded && !bFooterIsNeeded && !bWatermarkIsNeeded && !bHadWatermark)
1100 return;
1101
1102 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
1103 uno::Reference<style::XStyleFamiliesSupplier> xStyleFamiliesSupplier(xModel, uno::UNO_QUERY);
1104 uno::Reference<container::XNameAccess> xStyleFamilies = xStyleFamiliesSupplier->getStyleFamilies();
1105 uno::Reference<container::XNameAccess> xStyleFamily(xStyleFamilies->getByName("PageStyles"), uno::UNO_QUERY);
1106 const uno::Sequence<OUString> aStyles = xStyleFamily->getElementNames();
1107
1108 for (const OUString& rPageStyleName : aStyles)
1109 {
1110 uno::Reference<beans::XPropertySet> xPageStyle(xStyleFamily->getByName(rPageStyleName), uno::UNO_QUERY);
1111 uno::Reference<lang::XMultiServiceFactory> xMultiServiceFactory(xModel, uno::UNO_QUERY);
1112
1113 if (bHeaderIsNeeded || bWatermarkIsNeeded || bHadWatermark)
1114 {
1115 // If the header is off, turn it on.
1116 bool bHeaderIsOn = false;
1117 xPageStyle->getPropertyValue(UNO_NAME_HEADER_IS_ON) >>= bHeaderIsOn;
1118 if (!bHeaderIsOn)
1119 xPageStyle->setPropertyValue(UNO_NAME_HEADER_IS_ON, uno::Any(true));
1120
1121 // If the header already contains a document header field, no need to do anything.
1122 uno::Reference<text::XText> xHeaderText;
1123 xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT) >>= xHeaderText;
1124
1125 if (bHeaderIsNeeded)
1126 {
1127 if (!lcl_hasField(xHeaderText, DocInfoServiceName, Concat2View(SfxClassificationHelper::PROP_PREFIX_INTELLECTUALPROPERTY() + SfxClassificationHelper::PROP_DOCHEADER())))
1128 {
1129 // Append a field to the end of the header text.
1130 uno::Reference<beans::XPropertySet> xField(xMultiServiceFactory->createInstance(DocInfoServiceName), uno::UNO_QUERY);
1132 uno::Reference<text::XTextContent> xTextContent(xField, uno::UNO_QUERY);
1133 xHeaderText->insertTextContent(xHeaderText->getEnd(), xTextContent, /*bAbsorb=*/false);
1134 }
1135 }
1136
1137 SfxWatermarkItem aWatermarkItem;
1138 aWatermarkItem.SetText(aWatermark);
1139 SetWatermark(aWatermarkItem);
1140 }
1141
1142 if (bFooterIsNeeded)
1143 {
1144 // If the footer is off, turn it on.
1145 bool bFooterIsOn = false;
1146 xPageStyle->getPropertyValue(UNO_NAME_FOOTER_IS_ON) >>= bFooterIsOn;
1147 if (!bFooterIsOn)
1148 xPageStyle->setPropertyValue(UNO_NAME_FOOTER_IS_ON, uno::Any(true));
1149
1150 // If the footer already contains a document header field, no need to do anything.
1151 uno::Reference<text::XText> xFooterText;
1152 xPageStyle->getPropertyValue(UNO_NAME_FOOTER_TEXT) >>= xFooterText;
1154 if (!lcl_hasField(xFooterText, DocInfoServiceName, sFooter))
1155 {
1156 // Append a field to the end of the footer text.
1157 uno::Reference<beans::XPropertySet> xField(xMultiServiceFactory->createInstance(DocInfoServiceName), uno::UNO_QUERY);
1158 xField->setPropertyValue(UNO_NAME_NAME, uno::Any(sFooter));
1159 uno::Reference<text::XTextContent> xTextContent(xField, uno::UNO_QUERY);
1160 xFooterText->insertTextContent(xFooterText->getEnd(), xTextContent, /*bAbsorb=*/false);
1161 }
1162 }
1163 }
1164}
1165
1166// We pass xParent and xNodeSubject even though they point to the same thing because the UNO_QUERY is
1167// on a performance-sensitive path.
1169 const uno::Reference<frame::XModel>& xModel,
1170 const rtl::Reference<SwXParagraph>& xParent,
1171 const css::uno::Reference<css::rdf::XResource>& xNodeSubject,
1172 std::vector<svx::ClassificationResult> aResults)
1173{
1174 if (!xNodeSubject.is())
1175 return;
1176
1177 // Remove all paragraph classification fields.
1178 for (;;)
1179 {
1180 uno::Reference<text::XTextField> xTextField = lcl_FindParagraphClassificationField(xModel, xParent);
1181 if (!xTextField.is())
1182 break;
1183 lcl_RemoveParagraphMetadataField(xTextField);
1184 }
1185
1186 if (aResults.empty())
1187 return;
1188
1189 // Since we always insert at the start of the paragraph,
1190 // need to insert in reverse order.
1191 std::reverse(aResults.begin(), aResults.end());
1192 // Ignore "PARAGRAPH" types
1193 aResults.erase(std::remove_if(aResults.begin(),
1194 aResults.end(),
1195 [](const svx::ClassificationResult& rResult)-> bool
1196 { return rResult.meType == svx::ClassificationType::PARAGRAPH; }),
1197 aResults.end());
1198
1200 std::vector<OUString> aFieldNames;
1201 for (size_t nIndex = 0; nIndex < aResults.size(); ++nIndex)
1202 {
1203 const svx::ClassificationResult& rResult = aResults[nIndex];
1204
1205 const bool isLast = nIndex == 0;
1206 const bool isFirst = (nIndex == aResults.size() - 1);
1207 OUString sKey;
1208 OUString sValue = rResult.msName;
1209 switch (rResult.meType)
1210 {
1212 {
1213 sKey = aKeyCreator.makeNumberedTextKey();
1214 }
1215 break;
1216
1218 {
1219 if (rResult.msIdentifier.isEmpty())
1220 {
1221 sKey = aKeyCreator.makeCategoryNameKey();
1222 }
1223 else
1224 {
1225 sValue = rResult.msIdentifier;
1226 sKey = aKeyCreator.makeCategoryIdentifierKey();
1227 }
1228 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xNodeSubject, ParagraphClassificationAbbrRDFName, rResult.msAbbreviatedName);
1229 }
1230 break;
1231
1233 {
1234 sKey = aKeyCreator.makeNumberedMarkingKey();
1235 }
1236 break;
1237
1239 {
1240 sKey = aKeyCreator.makeNumberedIntellectualPropertyPartKey();
1241 }
1242 break;
1243
1244 default:
1245 break;
1246 }
1247
1248 OUString sDisplayText = (isFirst ? ("(" + rResult.msAbbreviatedName) : rResult.msAbbreviatedName);
1249 if (isLast)
1250 sDisplayText += ")";
1251 lcl_UpdateParagraphClassificationField(pDoc, xModel, xParent, sKey, sValue, sDisplayText);
1252 aFieldNames.emplace_back(sKey);
1253 }
1254
1255 // Correct the order
1256 std::reverse(aFieldNames.begin(), aFieldNames.end());
1257 OUStringBuffer sFieldNames;
1258 bool first = true;
1259 for (const OUString& rFieldName : aFieldNames)
1260 {
1261 if (!first)
1262 sFieldNames.append("/");
1263 sFieldNames.append(rFieldName);
1264 first = false;
1265 }
1266
1267 const OUString sOldFieldNames = lcl_getRDF(xModel, xNodeSubject, ParagraphClassificationFieldNamesRDFName).second;
1268 SwRDFHelper::removeStatement(xModel, MetaNS, xNodeSubject, ParagraphClassificationFieldNamesRDFName, sOldFieldNames);
1269 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xNodeSubject, ParagraphClassificationFieldNamesRDFName, sFieldNames.makeStringAndClear());
1270}
1271
1272void SwEditShell::ApplyParagraphClassification(std::vector<svx::ClassificationResult> aResults)
1273{
1274 SwDocShell* pDocShell = GetDoc()->GetDocShell();
1275 if (!pDocShell || !GetCursor() || !GetCursor()->Start())
1276 return;
1277
1278 SwTextNode* pNode = GetCursor()->Start()->GetNode().GetTextNode();
1279 if (pNode == nullptr)
1280 return;
1281
1282 // Prevent recursive validation since this is triggered on node updates, which we do below.
1283 const bool bOldValidationFlag = SetParagraphSignatureValidation(false);
1284 comphelper::ScopeGuard const g([this, bOldValidationFlag]() {
1285 SetParagraphSignatureValidation(bOldValidationFlag);
1286 });
1287
1288 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
1290 lcl_ApplyParagraphClassification(GetDoc(), xModel, xParent, css::uno::Reference<css::rdf::XResource>(xParent), std::move(aResults));
1291}
1292
1293static std::vector<svx::ClassificationResult> lcl_CollectParagraphClassification(const uno::Reference<frame::XModel>& xModel, const uno::Reference<text::XTextContent>& xParagraph)
1294{
1295 std::vector<svx::ClassificationResult> aResult;
1296
1297 uno::Reference<container::XEnumerationAccess> xTextPortionEnumerationAccess(xParagraph, uno::UNO_QUERY);
1298 if (!xTextPortionEnumerationAccess.is())
1299 return aResult;
1300
1301 uno::Reference<container::XEnumeration> xTextPortions = xTextPortionEnumerationAccess->createEnumeration();
1302
1304
1305 while (xTextPortions->hasMoreElements())
1306 {
1307 uno::Reference<beans::XPropertySet> xTextPortion(xTextPortions->nextElement(), uno::UNO_QUERY);
1308 OUString aTextPortionType;
1309 xTextPortion->getPropertyValue(UNO_NAME_TEXT_PORTION_TYPE) >>= aTextPortionType;
1310 if (aTextPortionType != UNO_NAME_TEXT_FIELD)
1311 continue;
1312
1313 uno::Reference<lang::XServiceInfo> xField;
1314 xTextPortion->getPropertyValue(UNO_NAME_TEXT_FIELD) >>= xField;
1315 if (!xField->supportsService(MetadataFieldServiceName))
1316 continue;
1317
1318 uno::Reference<text::XTextField> xTextField(xField, uno::UNO_QUERY);
1320 const std::pair<OUString, OUString> rdfNamePair = lcl_getFieldRDFByPrefix(xModel, xTextField, sPolicy);
1321
1322 uno::Reference<text::XTextRange> xTextRange(xField, uno::UNO_QUERY);
1323 const OUString aName = rdfNamePair.first;
1324 const OUString aValue = rdfNamePair.second;
1325 static constexpr OUStringLiteral sBlank(u"");
1326 if (aKeyCreator.isMarkingTextKey(aName))
1327 {
1328 aResult.push_back({ svx::ClassificationType::TEXT, aValue, sBlank, sBlank });
1329 }
1330 else if (aKeyCreator.isCategoryNameKey(aName))
1331 {
1332 aResult.push_back({ svx::ClassificationType::CATEGORY, aValue, sBlank, sBlank });
1333 }
1334 else if (aKeyCreator.isCategoryIdentifierKey(aName))
1335 {
1336 aResult.push_back({ svx::ClassificationType::CATEGORY, sBlank, sBlank, aValue });
1337 }
1338 else if (aKeyCreator.isMarkingKey(aName))
1339 {
1340 aResult.push_back({ svx::ClassificationType::MARKING, aValue, sBlank, sBlank });
1341 }
1342 else if (aKeyCreator.isIntellectualPropertyPartKey(aName))
1343 {
1344 aResult.push_back({ svx::ClassificationType::INTELLECTUAL_PROPERTY_PART, xTextRange->getString(), sBlank, sBlank });
1345 }
1346 }
1347
1348 return aResult;
1349}
1350
1351std::vector<svx::ClassificationResult> SwEditShell::CollectParagraphClassification()
1352{
1353 std::vector<svx::ClassificationResult> aResult;
1354
1355 SwDocShell* pDocShell = GetDoc()->GetDocShell();
1356 if (!pDocShell || !GetCursor() || !GetCursor()->Start())
1357 return aResult;
1358
1359 SwTextNode* pNode = GetCursor()->Start()->GetNode().GetTextNode();
1360 if (pNode == nullptr)
1361 return aResult;
1362
1363 uno::Reference<text::XTextContent> xParent = SwXParagraph::CreateXParagraph(pNode->GetDoc(), pNode);
1364 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
1366}
1367
1368static sal_Int16 lcl_GetAngle(const drawing::HomogenMatrix3& rMatrix)
1369{
1370 basegfx::B2DHomMatrix aTransformation;
1371 basegfx::B2DTuple aScale;
1372 basegfx::B2DTuple aTranslate;
1373 double fRotate = 0;
1374 double fShear = 0;
1375
1376 aTransformation.set(0, 0, rMatrix.Line1.Column1);
1377 aTransformation.set(0, 1, rMatrix.Line1.Column2);
1378 aTransformation.set(0, 2, rMatrix.Line1.Column3);
1379 aTransformation.set(1, 0, rMatrix.Line2.Column1);
1380 aTransformation.set(1, 1, rMatrix.Line2.Column2);
1381 aTransformation.set(1, 2, rMatrix.Line2.Column3);
1382 // For this to be a valid 2D transform matrix, the last row must be [0,0,1]
1383 assert( rMatrix.Line3.Column1 == 0 );
1384 assert( rMatrix.Line3.Column2 == 0 );
1385 assert( rMatrix.Line3.Column3 == 1 );
1386
1387 aTransformation.decompose(aScale, aTranslate, fRotate, fShear);
1388 sal_Int16 nDeg = round(basegfx::rad2deg(fRotate));
1389 return nDeg < 0 ? round(nDeg) * -1 : round(360.0 - nDeg);
1390}
1391
1393{
1394 SwDocShell* pDocShell = GetDoc()->GetDocShell();
1395 if (!pDocShell)
1396 return SfxWatermarkItem();
1397
1398 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
1399 uno::Reference<style::XStyleFamiliesSupplier> xStyleFamiliesSupplier(xModel, uno::UNO_QUERY);
1400 uno::Reference<container::XNameAccess> xStyleFamilies = xStyleFamiliesSupplier->getStyleFamilies();
1401 uno::Reference<container::XNameAccess> xStyleFamily(xStyleFamilies->getByName("PageStyles"), uno::UNO_QUERY);
1402 std::vector<OUString> aUsedPageStyles = lcl_getUsedPageStyles(this);
1403 for (const OUString& rPageStyleName : aUsedPageStyles)
1404 {
1405 uno::Reference<beans::XPropertySet> xPageStyle(xStyleFamily->getByName(rPageStyleName), uno::UNO_QUERY);
1406
1407 bool bHeaderIsOn = false;
1408 xPageStyle->getPropertyValue(UNO_NAME_HEADER_IS_ON) >>= bHeaderIsOn;
1409 if (!bHeaderIsOn)
1410 return SfxWatermarkItem();
1411
1412 uno::Reference<text::XText> xHeaderText;
1413 xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT) >>= xHeaderText;
1414
1415 OUString sWatermark = "";
1416 bool bSuccess = false;
1417 uno::Reference<drawing::XShape> xWatermark = lcl_getWatermark(xHeaderText, "com.sun.star.drawing.CustomShape", sWatermark, bSuccess);
1418
1419 if (xWatermark.is())
1420 {
1421 SfxWatermarkItem aItem;
1422 uno::Reference<text::XTextRange> xTextRange(xWatermark, uno::UNO_QUERY);
1423 uno::Reference<beans::XPropertySet> xPropertySet(xWatermark, uno::UNO_QUERY);
1424 Color nColor;
1425 sal_Int16 nTransparency;
1426 OUString aFont;
1427 drawing::HomogenMatrix3 aMatrix;
1428
1429 aItem.SetText(xTextRange->getString());
1430
1431 if (xPropertySet->getPropertyValue(UNO_NAME_CHAR_FONT_NAME) >>= aFont)
1432 aItem.SetFont(aFont);
1433 if (xPropertySet->getPropertyValue(UNO_NAME_FILLCOLOR) >>= nColor)
1434 aItem.SetColor(nColor);
1435 if (xPropertySet->getPropertyValue("Transformation") >>= aMatrix)
1436 aItem.SetAngle(lcl_GetAngle(aMatrix));
1437 if (xPropertySet->getPropertyValue(UNO_NAME_FILL_TRANSPARENCE) >>= nTransparency)
1438 aItem.SetTransparency(nTransparency);
1439
1440 return aItem;
1441 }
1442 }
1443 return SfxWatermarkItem();
1444}
1445
1446static void lcl_placeWatermarkInHeader(const SfxWatermarkItem& rWatermark,
1447 const uno::Reference<frame::XModel>& xModel,
1448 const uno::Reference<beans::XPropertySet>& xPageStyle,
1449 const uno::Reference<text::XText>& xHeaderText)
1450{
1451 if (!xHeaderText.is())
1452 return;
1453
1454 uno::Reference<lang::XMultiServiceFactory> xMultiServiceFactory(xModel, uno::UNO_QUERY);
1455 OUString aShapeServiceName = "com.sun.star.drawing.CustomShape";
1456 OUString sWatermark = WATERMARK_NAME;
1457 bool bSuccess = false;
1458 uno::Reference<drawing::XShape> xWatermark = lcl_getWatermark(xHeaderText, aShapeServiceName, sWatermark, bSuccess);
1459
1460 bool bDeleteWatermark = rWatermark.GetText().isEmpty();
1461 if (xWatermark.is())
1462 {
1463 drawing::HomogenMatrix3 aMatrix;
1464 Color nColor = 0xc0c0c0;
1465 sal_Int16 nTransparency = 50;
1466 sal_Int16 nAngle = 45;
1467 OUString aFont = "";
1468
1469 uno::Reference<beans::XPropertySet> xPropertySet(xWatermark, uno::UNO_QUERY);
1470 xPropertySet->getPropertyValue(UNO_NAME_CHAR_FONT_NAME) >>= aFont;
1471 xPropertySet->getPropertyValue(UNO_NAME_FILLCOLOR) >>= nColor;
1472 xPropertySet->getPropertyValue(UNO_NAME_FILL_TRANSPARENCE) >>= nTransparency;
1473 xPropertySet->getPropertyValue("Transformation") >>= aMatrix;
1474 nAngle = lcl_GetAngle(aMatrix);
1475
1476 // If the header already contains a watermark, see if it its text is up to date.
1477 uno::Reference<text::XTextRange> xTextRange(xWatermark, uno::UNO_QUERY);
1478 if (xTextRange->getString() != rWatermark.GetText()
1479 || aFont != rWatermark.GetFont()
1480 || nColor != rWatermark.GetColor()
1481 || nAngle != rWatermark.GetAngle()
1482 || nTransparency != rWatermark.GetTransparency()
1483 || bDeleteWatermark)
1484 {
1485 // No: delete it and we'll insert a replacement.
1486 uno::Reference<lang::XComponent> xComponent(xWatermark, uno::UNO_QUERY);
1487 xComponent->dispose();
1488 xWatermark.clear();
1489 }
1490 }
1491
1492 if (!bSuccess || xWatermark.is() || bDeleteWatermark)
1493 return;
1494
1495 const OUString& sFont = rWatermark.GetFont();
1496 sal_Int16 nAngle = rWatermark.GetAngle();
1497 sal_Int16 nTransparency = rWatermark.GetTransparency();
1498 Color nColor = rWatermark.GetColor();
1499
1500 // Calc the ratio.
1501 double fRatio = 0;
1502
1504 vcl::Font aFont = pDevice->GetFont();
1505 aFont.SetFamilyName(sFont);
1506 aFont.SetFontSize(Size(0, 96));
1507 pDevice->SetFont(aFont);
1508
1509 auto nTextWidth = pDevice->GetTextWidth(rWatermark.GetText());
1510 if (nTextWidth)
1511 {
1512 fRatio = pDevice->GetTextHeight();
1513 fRatio /= nTextWidth;
1514 }
1515
1516 // Calc the size.
1517 sal_Int32 nWidth = 0;
1518 awt::Size aSize;
1519 xPageStyle->getPropertyValue(UNO_NAME_SIZE) >>= aSize;
1520 if (aSize.Width < aSize.Height)
1521 {
1522 // Portrait.
1523 sal_Int32 nLeftMargin = 0;
1524 xPageStyle->getPropertyValue(UNO_NAME_LEFT_MARGIN) >>= nLeftMargin;
1525 sal_Int32 nRightMargin = 0;
1526 xPageStyle->getPropertyValue(UNO_NAME_RIGHT_MARGIN) >>= nRightMargin;
1527 nWidth = aSize.Width - nLeftMargin - nRightMargin;
1528 }
1529 else
1530 {
1531 // Landscape.
1532 sal_Int32 nTopMargin = 0;
1533 xPageStyle->getPropertyValue(UNO_NAME_TOP_MARGIN) >>= nTopMargin;
1534 sal_Int32 nBottomMargin = 0;
1535 xPageStyle->getPropertyValue(UNO_NAME_BOTTOM_MARGIN) >>= nBottomMargin;
1536 nWidth = aSize.Height - nTopMargin - nBottomMargin;
1537 }
1538 sal_Int32 nHeight = fRatio * nWidth;
1539
1540 // Create and insert the shape.
1541 uno::Reference<drawing::XShape> xShape(xMultiServiceFactory->createInstance(aShapeServiceName), uno::UNO_QUERY);
1542
1543 uno::Reference<container::XNamed> xNamed(xShape, uno::UNO_QUERY);
1544 xNamed->setName(sWatermark);
1545
1546 basegfx::B2DHomMatrix aTransformation;
1547 aTransformation.identity();
1548 aTransformation.scale(nWidth, nHeight);
1549 aTransformation.rotate(-basegfx::deg2rad(nAngle));
1550 drawing::HomogenMatrix3 aMatrix;
1551 aMatrix.Line1.Column1 = aTransformation.get(0, 0);
1552 aMatrix.Line1.Column2 = aTransformation.get(0, 1);
1553 aMatrix.Line1.Column3 = aTransformation.get(0, 2);
1554 aMatrix.Line2.Column1 = aTransformation.get(1, 0);
1555 aMatrix.Line2.Column2 = aTransformation.get(1, 1);
1556 aMatrix.Line2.Column3 = aTransformation.get(1, 2);
1557 aMatrix.Line3.Column1 = 0;
1558 aMatrix.Line3.Column2 = 0;
1559 aMatrix.Line3.Column3 = 1;
1560 uno::Reference<beans::XPropertySet> xPropertySet(xShape, uno::UNO_QUERY);
1561 xPropertySet->setPropertyValue(UNO_NAME_ANCHOR_TYPE, uno::Any(text::TextContentAnchorType_AT_CHARACTER));
1562 uno::Reference<text::XTextContent> xTextContent(xShape, uno::UNO_QUERY);
1563 xHeaderText->insertTextContent(xHeaderText->getEnd(), xTextContent, false);
1564
1565 // The remaining properties have to be set after the shape is inserted: do that in one batch to avoid flickering.
1566 uno::Reference<document::XActionLockable> xLockable(xShape, uno::UNO_QUERY);
1567 xLockable->addActionLock();
1568 xPropertySet->setPropertyValue(UNO_NAME_FILLCOLOR, uno::Any(static_cast<sal_Int32>(nColor)));
1569 xPropertySet->setPropertyValue(UNO_NAME_FILLSTYLE, uno::Any(drawing::FillStyle_SOLID));
1570 xPropertySet->setPropertyValue(UNO_NAME_FILL_TRANSPARENCE, uno::Any(nTransparency));
1571 xPropertySet->setPropertyValue(UNO_NAME_LINESTYLE, uno::Any(drawing::LineStyle_NONE));
1572 xPropertySet->setPropertyValue(UNO_NAME_OPAQUE, uno::Any(false));
1573 xPropertySet->setPropertyValue(UNO_NAME_TEXT_AUTOGROWHEIGHT, uno::Any(false));
1574 xPropertySet->setPropertyValue(UNO_NAME_TEXT_AUTOGROWWIDTH, uno::Any(false));
1575 xPropertySet->setPropertyValue(UNO_NAME_TEXT_MINFRAMEHEIGHT, uno::Any(nHeight));
1576 xPropertySet->setPropertyValue(UNO_NAME_TEXT_MINFRAMEWIDTH, uno::Any(nWidth));
1577 xPropertySet->setPropertyValue(UNO_NAME_TEXT_WRAP, uno::Any(text::WrapTextMode_THROUGH));
1578 xPropertySet->setPropertyValue(UNO_NAME_HORI_ORIENT_RELATION, uno::Any(text::RelOrientation::PAGE_PRINT_AREA));
1579 xPropertySet->setPropertyValue(UNO_NAME_VERT_ORIENT_RELATION, uno::Any(text::RelOrientation::PAGE_PRINT_AREA));
1580 xPropertySet->setPropertyValue(UNO_NAME_CHAR_FONT_NAME, uno::Any(sFont));
1581 xPropertySet->setPropertyValue(UNO_NAME_CHAR_FONT_NAME_ASIAN, uno::Any(sFont));
1582 xPropertySet->setPropertyValue(UNO_NAME_CHAR_FONT_NAME_COMPLEX, uno::Any(sFont));
1583 xPropertySet->setPropertyValue(UNO_NAME_CHAR_HEIGHT, uno::Any(WATERMARK_AUTO_SIZE));
1584 xPropertySet->setPropertyValue("Transformation", uno::Any(aMatrix));
1585
1586 uno::Reference<text::XTextRange> xTextRange(xShape, uno::UNO_QUERY);
1587 xTextRange->setString(rWatermark.GetText());
1588
1589 uno::Reference<drawing::XEnhancedCustomShapeDefaulter> xDefaulter(xShape, uno::UNO_QUERY);
1590 xDefaulter->createCustomShapeDefaults("fontwork-plain-text");
1591
1592 auto aGeomPropSeq = xPropertySet->getPropertyValue("CustomShapeGeometry").get< uno::Sequence<beans::PropertyValue> >();
1593 auto aGeomPropVec = comphelper::sequenceToContainer< std::vector<beans::PropertyValue> >(aGeomPropSeq);
1594 uno::Sequence<beans::PropertyValue> aPropertyValues(comphelper::InitPropertySequence(
1595 {
1596 {"TextPath", uno::Any(true)},
1597 }));
1598 auto it = std::find_if(aGeomPropVec.begin(), aGeomPropVec.end(), [](const beans::PropertyValue& rValue)
1599 {
1600 return rValue.Name == "TextPath";
1601 });
1602 if (it == aGeomPropVec.end())
1603 aGeomPropVec.push_back(comphelper::makePropertyValue("TextPath", aPropertyValues));
1604 else
1605 it->Value <<= aPropertyValues;
1606 xPropertySet->setPropertyValue("CustomShapeGeometry", uno::Any(comphelper::containerToSequence(aGeomPropVec)));
1607
1608 // tdf#108494, tdf#109313 the header height was switched to height of a watermark
1609 // and shape was moved to the lower part of a page, force position update
1610 xPropertySet->getPropertyValue("Transformation") >>= aMatrix;
1611 xPropertySet->setPropertyValue("Transformation", uno::Any(aMatrix));
1612
1613 xPropertySet->setPropertyValue(UNO_NAME_HORI_ORIENT, uno::Any(text::HoriOrientation::CENTER));
1614 xPropertySet->setPropertyValue(UNO_NAME_VERT_ORIENT, uno::Any(text::VertOrientation::CENTER));
1615
1616 xLockable->removeActionLock();
1617}
1618
1620{
1621 SwDocShell* pDocShell = GetDoc()->GetDocShell();
1622 if (!pDocShell)
1623 return;
1624 const bool bNoWatermark = rWatermark.GetText().isEmpty();
1625
1626 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
1627 uno::Reference<style::XStyleFamiliesSupplier> xStyleFamiliesSupplier(xModel, uno::UNO_QUERY);
1628 uno::Reference<container::XNameAccess> xStyleFamilies = xStyleFamiliesSupplier->getStyleFamilies();
1629 uno::Reference<container::XNameAccess> xStyleFamily(xStyleFamilies->getByName("PageStyles"), uno::UNO_QUERY);
1630 const uno::Sequence<OUString> aStyles = xStyleFamily->getElementNames();
1631
1632 for (const OUString& rPageStyleName : aStyles)
1633 {
1634 uno::Reference<beans::XPropertySet> xPageStyle(xStyleFamily->getByName(rPageStyleName), uno::UNO_QUERY);
1635
1636 // If the header is off, turn it on.
1637 bool bHeaderIsOn = false;
1638 xPageStyle->getPropertyValue(UNO_NAME_HEADER_IS_ON) >>= bHeaderIsOn;
1639 if (!bHeaderIsOn)
1640 {
1641 if (bNoWatermark)
1642 continue; // the style doesn't have any watermark - no need to do anything
1643
1644 xPageStyle->setPropertyValue(UNO_NAME_HEADER_IS_ON, uno::Any(true));
1645 }
1646
1647 // backup header height
1648 bool bDynamicHeight = true;
1649 sal_Int32 nOldValue;
1650 xPageStyle->getPropertyValue(UNO_NAME_HEADER_HEIGHT) >>= nOldValue;
1651 xPageStyle->getPropertyValue(UNO_NAME_HEADER_IS_DYNAMIC_HEIGHT) >>= bDynamicHeight;
1652 xPageStyle->setPropertyValue(UNO_NAME_HEADER_IS_DYNAMIC_HEIGHT, uno::Any(false));
1653
1654 // If the header already contains a document header field, no need to do anything.
1655 uno::Reference<text::XText> xHeaderText;
1656 uno::Reference<text::XText> xHeaderTextFirst;
1657 uno::Reference<text::XText> xHeaderTextLeft;
1658 uno::Reference<text::XText> xHeaderTextRight;
1659
1660 xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT) >>= xHeaderText;
1661 lcl_placeWatermarkInHeader(rWatermark, xModel, xPageStyle, xHeaderText);
1662
1663 xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT_FIRST) >>= xHeaderTextFirst;
1664 lcl_placeWatermarkInHeader(rWatermark, xModel, xPageStyle, xHeaderTextFirst);
1665
1666 xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT_LEFT) >>= xHeaderTextLeft;
1667 lcl_placeWatermarkInHeader(rWatermark, xModel, xPageStyle, xHeaderTextLeft);
1668
1669 xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT_RIGHT) >>= xHeaderTextRight;
1670 lcl_placeWatermarkInHeader(rWatermark, xModel, xPageStyle, xHeaderTextRight);
1671
1672 // tdf#108494 the header height was switched to height of a watermark
1673 // and shape was moved to the lower part of a page
1674 xPageStyle->setPropertyValue(UNO_NAME_HEADER_HEIGHT, uno::Any(sal_Int32(11)));
1675 xPageStyle->setPropertyValue(UNO_NAME_HEADER_HEIGHT, uno::Any(nOldValue));
1676 xPageStyle->setPropertyValue(UNO_NAME_HEADER_IS_DYNAMIC_HEIGHT, uno::Any(bDynamicHeight));
1677 }
1678}
1679
1681 uno::Reference<text::XTextField> xField,
1682 uno::Reference<text::XTextContent> xParent,
1683 const bool bRemove)
1684 : SwUndo(SwUndoId::PARA_SIGN_ADD, &rDoc),
1685 m_rDoc(rDoc),
1686 m_xField(std::move(xField)),
1687 m_xParent(std::move(xParent)),
1688 m_bRemove(bRemove)
1689{
1690 // Save the metadata and field content to undo/redo.
1691 uno::Reference<frame::XModel> xModel = m_rDoc.GetDocShell()->GetBaseModel();
1692 const std::map<OUString, OUString> aStatements = lcl_getRDFStatements(xModel, m_xField);
1693 const auto it = aStatements.find(ParagraphSignatureIdRDFName);
1694 if (it != aStatements.end())
1695 m_signature = it->second;
1696
1697 const auto it2 = aStatements.find(ParagraphSignatureUsageRDFName);
1698 if (it2 != aStatements.end())
1699 m_usage = it2->second;
1700
1701 uno::Reference<css::text::XTextRange> xText(m_xField, uno::UNO_QUERY);
1702 m_display = xText->getString();
1703}
1704
1706{
1707 if (m_bRemove)
1708 Remove();
1709 else
1710 Insert();
1711}
1712
1714{
1715 if (m_bRemove)
1716 Insert();
1717 else
1718 Remove();
1719}
1720
1722{
1723}
1724
1726{
1727 // Disable undo to avoid introducing noise when we edit the metadata field.
1728 const bool isUndoEnabled = m_rDoc.GetIDocumentUndoRedo().DoesUndo();
1729 m_rDoc.GetIDocumentUndoRedo().DoUndo(false);
1730
1731 // Prevent validation since this will trigger a premature validation
1732 // upon inserting, but before setting the metadata.
1733 SwEditShell* pEditSh = m_rDoc.GetEditShell();
1734 const bool bOldValidationFlag = pEditSh && pEditSh->SetParagraphSignatureValidation(false);
1735 comphelper::ScopeGuard const g([&] () {
1736 if (pEditSh)
1737 pEditSh->SetParagraphSignatureValidation(bOldValidationFlag);
1738 m_rDoc.GetIDocumentUndoRedo().DoUndo(isUndoEnabled);
1739 });
1740
1741 m_xField = lcl_InsertParagraphSignature(m_rDoc.GetDocShell()->GetBaseModel(), m_xParent, m_signature, m_usage);
1742 lcl_DoUpdateParagraphSignatureField(m_rDoc, m_xField, m_display);
1743}
1744
1746{
1747 // Disable undo to avoid introducing noise when we edit the metadata field.
1748 const bool isUndoEnabled = m_rDoc.GetIDocumentUndoRedo().DoesUndo();
1749 m_rDoc.GetIDocumentUndoRedo().DoUndo(false);
1750
1751 // Prevent validation since this will trigger a premature validation
1752 // upon removing.
1753 SwEditShell* pEditSh = m_rDoc.GetEditShell();
1754 const bool bOldValidationFlag = pEditSh && pEditSh->SetParagraphSignatureValidation(false);
1755 comphelper::ScopeGuard const g([&] () {
1756 if (pEditSh)
1757 pEditSh->SetParagraphSignatureValidation(bOldValidationFlag);
1758 m_rDoc.GetIDocumentUndoRedo().DoUndo(isUndoEnabled);
1759 });
1760
1761 lcl_RemoveParagraphMetadataField(m_xField);
1762}
1763
1765{
1766 SwDoc& rDoc = *GetDoc();
1767 SwDocShell* pDocShell = rDoc.GetDocShell();
1768 if (!pDocShell || !GetCursor() || !GetCursor()->Start())
1769 return;
1770 const SwPosition* pPosStart = GetCursor()->Start();
1771 if (!pPosStart)
1772 return;
1773 SwTextNode* pNode = pPosStart->GetNode().GetTextNode();
1774 if (!pNode)
1775 return;
1776
1777 // Table text signing is not supported.
1778 if (pNode->FindTableNode() != nullptr)
1779 return;
1780
1781 // 1. Get the text (without fields).
1782 const uno::Reference<text::XTextContent> xParagraph = SwXParagraph::CreateXParagraph(pNode->GetDoc(), pNode);
1783 const OString utf8Text = lcl_getParagraphBodyText(xParagraph);
1784 if (utf8Text.isEmpty())
1785 return;
1786
1787 // 2. Get certificate.
1788 uno::Reference<security::XDocumentDigitalSignatures> xSigner(
1789 // here none of the version-dependent methods are called
1790 security::DocumentDigitalSignatures::createDefault(
1792
1793 uno::Sequence<css::beans::PropertyValue> aProperties;
1794 uno::Reference<security::XCertificate> xCertificate = xSigner->chooseCertificateWithProps(aProperties);
1795 if (!xCertificate.is())
1796 return;
1797
1798 // 3. Sign it.
1799 svl::crypto::Signing signing(xCertificate);
1800 signing.AddDataRange(utf8Text.getStr(), utf8Text.getLength());
1801 OStringBuffer sigBuf;
1802 if (!signing.Sign(sigBuf))
1803 return;
1804
1805 const OUString signature = OStringToOUString(sigBuf, RTL_TEXTENCODING_UTF8, 0);
1806
1807 auto it = std::find_if(std::as_const(aProperties).begin(), std::as_const(aProperties).end(), [](const beans::PropertyValue& rValue)
1808 {
1809 return rValue.Name == "Usage";
1810 });
1811
1812 OUString aUsage;
1813 if (it != std::as_const(aProperties).end())
1814 it->Value >>= aUsage;
1815
1816 // 4. Add metadata
1817 // Prevent validation since this will trigger a premature validation
1818 // upon inserting, but before setting the metadata.
1819 const bool bOldValidationFlag = SetParagraphSignatureValidation(false);
1820 comphelper::ScopeGuard const g([this, bOldValidationFlag] () {
1821 SetParagraphSignatureValidation(bOldValidationFlag);
1822 });
1823
1824 rDoc.GetIDocumentUndoRedo().StartUndo(SwUndoId::PARA_SIGN_ADD, nullptr);
1825
1826 const uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
1827 uno::Reference<css::text::XTextField> xField = lcl_InsertParagraphSignature(xModel, xParagraph, signature, aUsage);
1828
1829 lcl_UpdateParagraphSignatureField(*GetDoc(), xModel, xParagraph, xField, utf8Text);
1830
1831 rDoc.GetIDocumentUndoRedo().AppendUndo(
1832 std::make_unique<SwUndoParagraphSigning>(rDoc, xField, xParagraph, true));
1833
1834 rDoc.GetIDocumentUndoRedo().EndUndo(SwUndoId::PARA_SIGN_ADD, nullptr);
1835}
1836
1837void SwEditShell::ValidateParagraphSignatures(SwTextNode* pNode, bool updateDontRemove)
1838{
1840 return;
1841
1842 // Table text signing is not supported.
1843 if (pNode->FindTableNode() != nullptr)
1844 return;
1845
1846 // Prevent recursive validation since this is triggered on node updates, which we do below.
1847 const bool bOldValidationFlag = SetParagraphSignatureValidation(false);
1848 comphelper::ScopeGuard const g([this, bOldValidationFlag] () {
1849 SetParagraphSignatureValidation(bOldValidationFlag);
1850 });
1851
1852 uno::Reference<text::XTextContent> xParentText = SwXParagraph::CreateXParagraph(*GetDoc(), pNode);
1853 lcl_ValidateParagraphSignatures(*GetDoc(), xParentText, updateDontRemove);
1854}
1855
1857{
1858 SwDocShell* pDocShell = GetDoc()->GetDocShell();
1859 if (!pDocShell || !GetCursor() || !GetCursor()->Start() || !IsParagraphSignatureValidationEnabled())
1860 return;
1861
1862 SwPaM* pPaM = GetCursor();
1863 const SwPosition* pPosStart = pPaM->Start();
1864 SwTextNode* pNode = pPosStart->GetNode().GetTextNode();
1865 ValidateParagraphSignatures(pNode, updateDontRemove);
1866}
1867
1869{
1870 SwDocShell* pDocShell = GetDoc()->GetDocShell();
1871 if (!pDocShell || !IsParagraphSignatureValidationEnabled())
1872 return;
1873
1874 // Prevent recursive validation since this is triggered on node updates, which we do below.
1875 const bool bOldValidationFlag = SetParagraphSignatureValidation(false);
1876 comphelper::ScopeGuard const g([this, bOldValidationFlag] () {
1877 SetParagraphSignatureValidation(bOldValidationFlag);
1878 });
1879
1880 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
1881 const uno::Reference<text::XTextDocument> xDoc(xModel, uno::UNO_QUERY);
1882 uno::Reference<text::XText> xParent = xDoc->getText();
1883 uno::Reference<container::XEnumerationAccess> xParagraphEnumerationAccess(xParent, uno::UNO_QUERY);
1884 if (!xParagraphEnumerationAccess.is())
1885 return;
1886 uno::Reference<container::XEnumeration> xParagraphs = xParagraphEnumerationAccess->createEnumeration();
1887 if (!xParagraphs.is())
1888 return;
1889 while (xParagraphs->hasMoreElements())
1890 {
1891 uno::Reference<text::XTextContent> xParagraph(xParagraphs->nextElement(), uno::UNO_QUERY);
1892 lcl_ValidateParagraphSignatures(*GetDoc(), xParagraph, updateDontRemove);
1893 }
1894}
1895
1896static uno::Reference<text::XTextField> lcl_GetParagraphMetadataFieldAtIndex(const SwDocShell* pDocSh, SwTextNode const * pNode, const sal_uLong index)
1897{
1898 uno::Reference<text::XTextField> xTextField;
1899 if (pNode != nullptr && pDocSh != nullptr)
1900 {
1902 SwTextMeta* pTextMeta = static_txtattr_cast<SwTextMeta*>(pAttr);
1903 if (pTextMeta != nullptr)
1904 {
1905 SwFormatMeta& rFormatMeta(static_cast<SwFormatMeta&>(pTextMeta->GetAttr()));
1906 if (::sw::Meta* pMeta = rFormatMeta.GetMeta())
1907 {
1908 const css::uno::Reference<css::rdf::XResource> xSubject = pMeta->MakeUnoObject();
1909 uno::Reference<frame::XModel> xModel = pDocSh->GetBaseModel();
1910 const std::map<OUString, OUString> aStatements = lcl_getRDFStatements(xModel, xSubject);
1911 if (aStatements.find(ParagraphSignatureIdRDFName) != aStatements.end() ||
1912 aStatements.find(ParagraphClassificationNameRDFName) != aStatements.end())
1913 {
1914 xTextField = uno::Reference<text::XTextField>(xSubject, uno::UNO_QUERY);
1915 }
1916 }
1917 }
1918 }
1919
1920 return xTextField;
1921}
1922
1924{
1925 SwDocShell* pDocShell = GetDoc()->GetDocShell();
1926 if (!pDocShell || !IsParagraphSignatureValidationEnabled())
1927 return;
1928
1929 // Prevent recursive validation since this is triggered on node updates, which we do below.
1930 const bool bOldValidationFlag = SetParagraphSignatureValidation(false);
1931 comphelper::ScopeGuard const g([this, bOldValidationFlag] () {
1932 SetParagraphSignatureValidation(bOldValidationFlag);
1933 });
1934
1935 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
1936 const rtl::Reference<SwXTextDocument> xDoc(dynamic_cast<SwXTextDocument*>(xModel.get()));
1937 rtl::Reference<SwXBodyText> xBodyText = xDoc->getBodyText();
1938 if (!xBodyText.is())
1939 return;
1940 rtl::Reference<SwXParagraphEnumeration> xParagraphs = xBodyText->createParagraphEnumeration();
1941
1942 static constexpr OUStringLiteral sBlank(u"");
1944 const css::uno::Sequence<css::uno::Reference<rdf::XURI>> aGraphNames = SwRDFHelper::getGraphNames(xModel, MetaNS);
1945
1946 while (xParagraphs->hasMoreElements())
1947 {
1948 uno::Reference<text::XTextContent> xParaOrTable(xParagraphs->nextElement(), uno::UNO_QUERY);
1949 rtl::Reference<SwXParagraph> xParagraph(dynamic_cast<SwXParagraph*>(xParaOrTable.get()));
1950
1951 try
1952 {
1953 const css::uno::Reference<css::rdf::XResource> xSubject(xParagraph);
1954 const std::map<OUString, OUString> aStatements = SwRDFHelper::getStatements(xModel, aGraphNames, xSubject);
1955
1956 const auto it = aStatements.find(ParagraphClassificationFieldNamesRDFName);
1957 const OUString sFieldNames = (it != aStatements.end() ? it->second : sBlank);
1958 std::vector<svx::ClassificationResult> aResults;
1959 if (!sFieldNames.isEmpty())
1960 {
1961 assert(it != aStatements.end() && "can only be non-empty if it was valid");
1962 // Order the fields
1963 sal_Int32 nIndex = 0;
1964 do
1965 {
1966 const OUString sCurFieldName = sFieldNames.getToken(0, '/', nIndex);
1967 if (sCurFieldName.isEmpty())
1968 break;
1969
1970 const auto it2 = aStatements.find(sCurFieldName);
1971 bool bStatementFound = it2 != aStatements.end();
1972 const OUString sName = bStatementFound ? it->first : sBlank;
1973 const OUString sValue = bStatementFound ? it->second : sBlank;
1974
1975 if (aKeyCreator.isMarkingTextKey(sName))
1976 {
1977 aResults.push_back({ svx::ClassificationType::TEXT, sValue, sValue, sBlank });
1978 }
1979 else if (aKeyCreator.isCategoryNameKey(sName))
1980 {
1981 const auto it3 = aStatements.find(ParagraphClassificationAbbrRDFName);
1982 const OUString sAbbreviatedName = (it3 != aStatements.end() && !it3->second.isEmpty() ? it3->second : sValue);
1983 aResults.push_back({ svx::ClassificationType::CATEGORY, sValue, sAbbreviatedName, sBlank });
1984 }
1985 else if (aKeyCreator.isCategoryIdentifierKey(sName))
1986 {
1987 const auto it3 = aStatements.find(ParagraphClassificationAbbrRDFName);
1988 const OUString sAbbreviatedName = (it3 != aStatements.end() && !it3->second.isEmpty() ? it3->second : sValue);
1989 aResults.push_back({ svx::ClassificationType::CATEGORY, sBlank, sAbbreviatedName, sValue });
1990 }
1991 else if (aKeyCreator.isMarkingKey(sName))
1992 {
1993 aResults.push_back({ svx::ClassificationType::MARKING, sValue, sValue, sBlank });
1994 }
1995 else if (aKeyCreator.isIntellectualPropertyPartKey(sName))
1996 {
1997 aResults.push_back({ svx::ClassificationType::INTELLECTUAL_PROPERTY_PART, sValue, sValue, sBlank });
1998 }
1999 }
2000 while (nIndex >= 0);
2001 }
2002
2003 // Update classification based on results.
2004 lcl_ApplyParagraphClassification(GetDoc(), xModel, xParagraph, xSubject, aResults);
2005
2006 // Get Signatures
2007 std::map<OUString, SignatureDescr> aSignatures;
2008 for (const auto& pair : lcl_getRDFStatements(xModel, uno::Reference<css::text::XTextContent>(xParagraph)))
2009 {
2010 const OUString& sName = pair.first;
2011 if (sName.startsWith(ParagraphSignatureRDFNamespace))
2012 {
2013 const OUString sSuffix = sName.copy(ParagraphSignatureRDFNamespace.getLength());
2014 const sal_Int32 index = sSuffix.indexOf(":");
2015 if (index >= 0)
2016 {
2017 const OUString id = sSuffix.copy(0, index);
2018 const OUString type = sSuffix.copy(index);
2019 const OUString& sValue = pair.second;
2020 if (type == ParagraphSignatureDateRDFName)
2021 aSignatures[id].msDate = sValue;
2022 else if (type == ParagraphSignatureUsageRDFName)
2023 aSignatures[id].msUsage = sValue;
2024 else if (type == ParagraphSignatureDigestRDFName)
2025 aSignatures[id].msSignature = sValue;
2026 }
2027 }
2028 }
2029
2030 for (const auto& pair : aSignatures)
2031 {
2032 uno::Reference<text::XTextField> xField = lcl_findFieldByRDF(xModel, xParagraph, ParagraphSignatureIdRDFName, pair.first);
2033 if (!xField.is())
2034 {
2035 uno::Reference<lang::XMultiServiceFactory> xMultiServiceFactory(xModel, uno::UNO_QUERY);
2036 xField = uno::Reference<text::XTextField>(xMultiServiceFactory->createInstance(MetadataFieldServiceName), uno::UNO_QUERY);
2037
2038 // Add the signature at the end.
2039 xField->attach(xParagraph->getAnchor()->getEnd());
2040
2041 const css::uno::Reference<css::rdf::XResource> xFieldSubject(xField, uno::UNO_QUERY);
2042 SwRDFHelper::addStatement(xModel, MetaNS, MetaFilename, xFieldSubject, ParagraphSignatureIdRDFName, pair.first);
2043
2044 const OString utf8Text = lcl_getParagraphBodyText(xParagraph);
2045 lcl_UpdateParagraphSignatureField(*GetDoc(), xModel, xParagraph, xField, utf8Text);
2046 }
2047 }
2048
2049 lcl_ValidateParagraphSignatures(*GetDoc(), xParagraph, true); // Validate and Update signatures.
2050 }
2051 catch (const std::exception&)
2052 {
2053 }
2054 }
2055}
2056
2058{
2059 if (GetCursor() && GetCursor()->Start())
2060 {
2061 SwTextNode* pNode = GetCursor()->Start()->GetNode().GetTextNode();
2063 uno::Reference<text::XTextField> xField = lcl_GetParagraphMetadataFieldAtIndex(GetDoc()->GetDocShell(), pNode, index);
2064 return xField.is();
2065 }
2066
2067 return false;
2068}
2069
2071{
2072 if (GetCursor() && GetCursor()->Start())
2073 {
2074 SwTextNode* pNode = GetCursor()->Start()->GetNode().GetTextNode();
2076 uno::Reference<text::XTextField> xField = lcl_GetParagraphMetadataFieldAtIndex(GetDoc()->GetDocShell(), pNode, index);
2077 if (!xField.is())
2078 {
2079 // Try moving the cursor to see if we're _facing_ a metafield or not,
2080 // as opposed to being within one.
2081 index--; // Backspace moves left
2082
2083 xField = lcl_GetParagraphMetadataFieldAtIndex(GetDoc()->GetDocShell(), pNode, index);
2084 }
2085
2086 if (xField.is())
2087 {
2088 lcl_RemoveParagraphMetadataField(xField);
2089 return true;
2090 }
2091 }
2092
2093 return false;
2094}
2095
2097 const uno::Reference<frame::XModel>& xModel, const rtl::Reference<SwXParagraph>& xParagraph)
2098{
2099 uno::Reference<text::XTextField> xTextField;
2100 xTextField = lcl_FindParagraphClassificationField(xModel, xParagraph, rKeyCreator.makeCategoryIdentifierKey());
2101 if (xTextField.is())
2102 {
2103 const std::pair<OUString, OUString> rdfValuePair = lcl_getRDF(xModel, xTextField, ParagraphClassificationValueRDFName);
2104 return rHelper.GetBACNameForIdentifier(rdfValuePair.second);
2105 }
2106
2107 xTextField = lcl_FindParagraphClassificationField(xModel, xParagraph, rKeyCreator.makeCategoryNameKey());
2108 if (xTextField.is())
2109 {
2110 return lcl_getRDF(xModel, xTextField, ParagraphClassificationNameRDFName).second;
2111 }
2112
2113 return OUString();
2114}
2115
2117{
2118 OUString sHighestClass;
2119
2120 SwTextNode* pNode = pCursor->Start()->GetNode().GetTextNode();
2121 if (pNode == nullptr)
2122 return sHighestClass;
2123
2124 SwDocShell* pDocShell = pNode->GetDoc().GetDocShell();
2125 if (!pDocShell)
2126 return sHighestClass;
2127
2130
2131 uno::Reference<frame::XModel> xModel = pDocShell->GetBaseModel();
2132 const rtl::Reference<SwXTextDocument> xDoc(dynamic_cast<SwXTextDocument*>(xModel.get()));
2133 rtl::Reference<SwXBodyText> xBodyText = xDoc->getBodyText();
2134
2135 rtl::Reference<SwXParagraphEnumeration> xParagraphs = xBodyText->createParagraphEnumeration();
2136 while (xParagraphs->hasMoreElements())
2137 {
2138 uno::Reference<text::XTextContent> xParaOrTable(xParagraphs->nextElement(), uno::UNO_QUERY);
2139 rtl::Reference<SwXParagraph> xParagraph(dynamic_cast<SwXParagraph*>(xParaOrTable.get()));
2140 const OUString sCurrentClass = lcl_GetParagraphClassification(aHelper, aKeyCreator, xModel, xParagraph);
2141 sHighestClass = aHelper.GetHigherClass(sHighestClass, sCurrentClass);
2142 }
2143
2144 return sHighestClass;
2145}
2146
2148{
2149 SwDocShell* pDocShell = GetDoc()->GetDocShell();
2150 if (!pDocShell)
2151 return;
2152
2153 // Bail out as early as possible if we don't have paragraph classification.
2154 if (!SwRDFHelper::hasMetadataGraph(pDocShell->GetBaseModel(), MetaNS))
2155 return;
2156
2157 uno::Reference<document::XDocumentProperties> xDocumentProperties = pDocShell->getDocProperties();
2158 uno::Reference<beans::XPropertyContainer> xPropertyContainer = xDocumentProperties->getUserDefinedProperties();
2159
2161 SfxClassificationHelper aHelper(xDocumentProperties);
2162
2163 OUString sHighestClass = lcl_GetHighestClassificationParagraphClass(GetCursor());
2164
2165 const OUString aClassificationCategory = svx::classification::getProperty(xPropertyContainer, aKeyCreator.makeCategoryNameKey());
2166
2167 if (!aClassificationCategory.isEmpty())
2168 {
2169 sHighestClass = aHelper.GetHigherClass(sHighestClass, aClassificationCategory);
2170 }
2171
2172 if (aClassificationCategory != sHighestClass)
2173 {
2174 std::unique_ptr<weld::MessageDialog> xQueryBox(Application::CreateMessageDialog(nullptr,
2175 VclMessageType::Question, VclButtonsType::Ok,
2176 SwResId(STR_CLASSIFICATION_LEVEL_CHANGED)));
2177 xQueryBox->run();
2178 }
2179
2180 const SfxClassificationPolicyType eHighestClassType = SfxClassificationHelper::stringToPolicyType(sHighestClass);
2181
2182 // Prevent paragraph signature validation since the below changes (f.e. watermarking) are benign.
2183 const bool bOldValidationFlag = SetParagraphSignatureValidation(false);
2184 comphelper::ScopeGuard const g([this, bOldValidationFlag]() {
2185 SetParagraphSignatureValidation(bOldValidationFlag);
2186 });
2187
2188 // Check the origin, if "manual" (created via advanced classification dialog),
2189 // then we just need to set the category name.
2190 if (sfx::getCreationOriginProperty(xPropertyContainer, aKeyCreator) == sfx::ClassificationCreationOrigin::MANUAL)
2191 {
2192 aHelper.SetBACName(sHighestClass, eHighestClassType);
2194 }
2195 else
2196 {
2197 SetClassification(sHighestClass, eHighestClassType);
2198 }
2199}
2200
2201// #i62675#
2203 const bool bResetListAttrs)
2204{
2205 SwTextFormatColl *pLocal = pFormat? pFormat: (*GetDoc()->GetTextFormatColls())[0];
2207
2208 SwRewriter aRewriter;
2209
2210 aRewriter.AddRule(UndoArg1, pLocal->GetName());
2211
2212 GetDoc()->GetIDocumentUndoRedo().StartUndo(SwUndoId::SETFMTCOLL, &aRewriter);
2213 for(SwPaM& rPaM : GetCursor()->GetRingContainer())
2214 {
2215 if (!rPaM.HasReadonlySel( GetViewOptions()->IsFormView(), true))
2216 {
2217 // store previous paragraph style for track changes
2218 OUString sParaStyleName;
2219 sal_uInt16 nPoolId = USHRT_MAX;
2220 SwContentNode * pCnt = rPaM.Start()->GetNode().GetContentNode();
2221 if ( pCnt && pCnt->GetTextNode() && GetDoc()->getIDocumentRedlineAccess().IsRedlineOn() )
2222 {
2223 const SwTextFormatColl* pTextFormatColl = pCnt->GetTextNode()->GetTextColl();
2224 sal_uInt16 nStylePoolId = pTextFormatColl->GetPoolFormatId();
2225 // default paragraph style
2226 if ( nStylePoolId == RES_POOLCOLL_STANDARD )
2227 nPoolId = nStylePoolId;
2228 else
2229 sParaStyleName = pTextFormatColl->GetName();
2230 }
2231
2232 // Change the paragraph style to pLocal and remove all direct paragraph formatting.
2233 GetDoc()->SetTextFormatColl(rPaM, pLocal, true, bResetListAttrs, GetLayout());
2234
2235 // If there are hints on the nodes which cover the whole node, then remove those, too.
2236 SwPaM aPaM(*rPaM.Start(), *rPaM.End());
2237 if (SwTextNode* pEndTextNode = aPaM.End()->GetNode().GetTextNode())
2238 {
2239 aPaM.Start()->SetContent(0);
2240 aPaM.End()->SetContent(pEndTextNode->GetText().getLength());
2241 }
2242 GetDoc()->RstTextAttrs(aPaM, /*bInclRefToxMark=*/false, /*bExactRange=*/true, GetLayout());
2243
2244 // add redline tracking the previous paragraph style
2246 // multi-paragraph ParagraphFormat redline ranges
2247 // haven't supported by AppendRedline(), yet
2248 // TODO handle multi-paragraph selections, too,
2249 // e.g. by breaking them to single paragraphs
2250 aPaM.Start()->GetNode() == aPaM.End()->GetNode() )
2251 {
2252 SwRangeRedline * pRedline = new SwRangeRedline( RedlineType::ParagraphFormat, aPaM );
2253 auto const result(GetDoc()->getIDocumentRedlineAccess().AppendRedline( pRedline, true));
2254 // store original paragraph style to reject formatting change
2256 ( nPoolId == RES_POOLCOLL_STANDARD || !sParaStyleName.isEmpty() ) )
2257 {
2258 std::unique_ptr<SwRedlineExtraData_FormatColl> xExtra;
2259 xExtra.reset(new SwRedlineExtraData_FormatColl(sParaStyleName, nPoolId, nullptr));
2260 if (xExtra)
2261 pRedline->SetExtraData( xExtra.get() );
2262 }
2263 }
2264 }
2265
2266 }
2267 GetDoc()->GetIDocumentUndoRedo().EndUndo(SwUndoId::SETFMTCOLL, &aRewriter);
2268 EndAllAction();
2269}
2270
2271SwTextFormatColl* SwEditShell::MakeTextFormatColl(const OUString& rFormatCollName,
2272 SwTextFormatColl* pParent)
2273{
2274 SwTextFormatColl *pColl;
2275 if ( pParent == nullptr )
2276 pParent = &GetTextFormatColl(0);
2277 pColl = GetDoc()->MakeTextFormatColl(rFormatCollName, pParent);
2278 if ( pColl == nullptr )
2279 {
2280 OSL_FAIL( "MakeTextFormatColl failed" );
2281 }
2282 return pColl;
2283
2284}
2285
2287{
2288 SwPaM * pCursor = GetCursor();
2289 SwContentNode * pCnt = pCursor->GetPointContentNode();
2290 if (pCnt->IsTextNode()) // uhm... what nonsense would happen if not?
2291 { // only need properties-node because BREAK/PAGEDESC filtered anyway!
2292 pCnt = sw::GetParaPropsNode(*GetLayout(), pCursor->GetPoint()->GetNode());
2293 }
2294 const SfxItemSet* pSet = pCnt->GetpSwAttrSet();
2295 if( !pSet )
2296 return;
2297
2298 // JP 05.10.98: Special treatment if one of the attributes Break/PageDesc/NumRule(auto) is
2299 // in the ItemSet. Otherwise there will be too much or wrong processing (NumRules!)
2300 // Bug 57568
2301
2302 // Do NOT copy AutoNumRules into the template
2303 const SwNumRuleItem* pItem;
2304 const SwNumRule* pRule = nullptr;
2305 if (SfxItemState::SET == pSet->GetItemState(RES_BREAK, false)
2306 || SfxItemState::SET == pSet->GetItemState(RES_PAGEDESC, false)
2307 || ((pItem = pSet->GetItemIfSet(RES_PARATR_NUMRULE, false))
2308 && nullptr != (pRule = GetDoc()->FindNumRulePtr(pItem->GetValue()))
2309 && pRule->IsAutoRule()))
2310 {
2311 SfxItemSet aSet( *pSet );
2312 aSet.ClearItem( RES_BREAK );
2313 aSet.ClearItem( RES_PAGEDESC );
2314
2315 if (pRule
2316 || ((pItem = pSet->GetItemIfSet(RES_PARATR_NUMRULE, false))
2317 && nullptr != (pRule = GetDoc()->FindNumRulePtr(pItem->GetValue()))
2318 && pRule->IsAutoRule()))
2320
2321 if( aSet.Count() )
2322 GetDoc()->ChgFormat(*pColl, aSet );
2323 }
2324 else
2325 GetDoc()->ChgFormat(*pColl, *pSet );
2326}
2327
2328/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
PropertyValueVector_t aPropertyValues
@ UndoArg1
Definition: SwRewriter.hxx:29
PropertiesInfo aProperties
const char *const aFieldNames[]
Definition: authfld.cxx:724
static weld::MessageDialog * CreateMessageDialog(weld::Widget *pParent, VclMessageType eMessageType, VclButtonsType eButtonType, const OUString &rPrimaryMessage, const ILibreOfficeKitNotifier *pNotifier=nullptr)
const OUString & GetValue() const
static DateTime CreateFromUnixTime(const double fSecondsSinceEpoch)
void ConvertToLocalTime()
sal_Int16 GetYear() const
sal_uInt16 GetDay() const
sal_uInt16 GetMonth() const
static const OUString & PROP_DOCFOOTER()
static SfxClassificationPolicyType getPolicyType()
OUString GetBACNameForIdentifier(std::u16string_view sIdentifier)
static const OUString & PROP_DOCHEADER()
static SfxClassificationPolicyType stringToPolicyType(std::u16string_view rType)
static const OUString & policyTypeToString(SfxClassificationPolicyType eType)
static const OUString & PROP_PREFIX_INTELLECTUALPROPERTY()
sal_uInt16 Count() const
const T * GetItemIfSet(TypedWhichId< T > nWhich, bool bSrchInParent=true) const
sal_uInt16 ClearItem(sal_uInt16 nWhich=0)
SfxItemState GetItemState(sal_uInt16 nWhich, bool bSrchInParent=true, const SfxPoolItem **ppItem=nullptr) const
css::uno::Reference< css::document::XDocumentProperties > getDocProperties() const
css::uno::Reference< css::frame::XModel3 > GetBaseModel() const
static SAL_WARN_UNUSED_RESULT SfxObjectShell * Current()
void SetFont(const OUString &aFont)
sal_Int16 GetTransparency() const
OUString const & GetFont() const
void SetAngle(const sal_Int16 nAngle)
OUString const & GetText() const
void SetTransparency(const sal_Int16 nTransparency)
void SetColor(Color nColor)
void SetText(const OUString &aText)
sal_Int16 GetAngle() const
Color GetColor() const
const SwAttrSet * GetpSwAttrSet() const
Definition: node.hxx:493
SwCursor * GetCursor(bool bMakeTableCursor=true) const
Return pointer to the current shell cursor.
Definition: crsrsh.cxx:194
Definition: doc.hxx:197
void RstTextAttrs(const SwPaM &rRg, bool bInclRefToxMark=false, bool bExactRange=false, SwRootFrame const *pLayout=nullptr)
Definition: docfmt.cxx:228
void ChgFormat(SwFormat &rFormat, const SfxItemSet &rSet)
Definition: docfmt.cxx:1890
IDocumentUndoRedo & GetIDocumentUndoRedo()
Definition: doc.cxx:158
SwEditShell const * GetEditShell() const
Definition: doccorr.cxx:330
const SwTextFormatColls * GetTextFormatColls() const
Definition: doc.hxx:793
const SwTextFormatColl * GetDfltTextFormatColl() const
Definition: doc.hxx:791
SwTextFormatColl * MakeTextFormatColl(const OUString &rFormatName, SwTextFormatColl *pDerivedFrom, bool bBroadcast=false)
Create the FormatCollections.
Definition: docfmt.cxx:897
bool SetTextFormatColl(const SwPaM &rRg, SwTextFormatColl *pFormat, const bool bReset=true, const bool bResetListAttrs=false, SwRootFrame const *pLayout=nullptr)
Add 4th optional parameter <bResetListAttrs>.
Definition: docfmt.cxx:1100
SwDocShell * GetDocShell()
Definition: doc.hxx:1370
std::vector< svx::ClassificationResult > CollectAdvancedClassification()
Definition: edfcol.cxx:951
void ApplyParagraphClassification(std::vector< svx::ClassificationResult > aResult)
Apply the classification to the paragraph at cursor.
Definition: edfcol.cxx:1272
void StartAllAction()
For all views of this document.
Definition: edws.cxx:86
void SetWatermark(const SfxWatermarkItem &rText)
Definition: edfcol.cxx:1619
void SignParagraph()
Sign the paragraph at the cursor.
Definition: edfcol.cxx:1764
bool IsRedlineOn() const
Definition: edredln.cxx:43
bool RemoveParagraphMetadataFieldAtCursor()
Removes the paragraph metadata field at the current cursor, if any.
Definition: edfcol.cxx:2070
void ValidateAllParagraphSignatures(bool updateDontRemove)
Validate all paragraph signatures.
Definition: edfcol.cxx:1868
bool IsCursorInParagraphMetadataField() const
Returns true iff the cursor is within a paragraph metadata field.
Definition: edfcol.cxx:2057
SwTextFormatColl & GetTextFormatColl(sal_uInt16 nTextFormatColl) const
Definition: edfcol.cxx:699
sal_uInt16 GetTextFormatCollCount() const
Definition: edfcol.cxx:694
bool SetParagraphSignatureValidation(const bool bEnable)
Enable/Disable paragraph signature validation and return the previous value.
Definition: editsh.hxx:997
void RestoreMetadataFieldsAndValidateParagraphSignatures()
Restore the metadata fields, if missing, from the RDF metadata and validate the signatures and update...
Definition: edfcol.cxx:1923
void SetTextFormatColl(SwTextFormatColl *, const bool bResetListAttrs=false)
Add 2nd optional parameter <bResetListAttrs> - see also <SwDoc::SetTextFormatColl(....
Definition: edfcol.cxx:2202
std::vector< svx::ClassificationResult > CollectParagraphClassification()
Definition: edfcol.cxx:1351
void ValidateCurrentParagraphSignatures(bool updateDontRemove)
Validate the current paragraph signatures, if any, at the cursor start.
Definition: edfcol.cxx:1856
void SetClassification(const OUString &rName, SfxClassificationPolicyType eType)
Definition: edfcol.cxx:1076
SwTextFormatColl & GetDfltTextFormatColl() const
Definition: edfcol.cxx:689
void ApplyAdvancedClassification(std::vector< svx::ClassificationResult > const &rResult)
Definition: edfcol.cxx:777
void ClassifyDocPerHighestParagraphClass()
Ensure that the classification of the doc is never lower than the paragraph with the highest classifi...
Definition: edfcol.cxx:2147
bool IsParagraphSignatureValidationEnabled() const
Returns true iff paragraph signature validation is enabled.
Definition: editsh.hxx:995
SfxWatermarkItem GetWatermark() const
Definition: edfcol.cxx:1392
SwTextFormatColl * MakeTextFormatColl(const OUString &rFormatCollName, SwTextFormatColl *pDerivedFrom=nullptr)
Definition: edfcol.cxx:2271
void FillByEx(SwCharFormat *)
Definition: edfmt.cxx:51
void ValidateParagraphSignatures(SwTextNode *pNode, bool updateDontRemove)
Validate the paragraph signatures, if any, of the current text node.
Definition: edfcol.cxx:1837
void EndAllAction()
Definition: edws.cxx:97
SwFormatMeta is a pool item subclass that owns a Meta.
Definition: fmtmeta.hxx:93
::sw::Meta * GetMeta()
Definition: fmtmeta.hxx:123
sal_uInt16 GetPoolFormatId() const
Get and set Pool style IDs.
Definition: format.hxx:163
const OUString & GetName() const
Definition: format.hxx:131
Base class of the Writer layout elements.
Definition: frame.hxx:315
SwFrame * GetNext()
Definition: frame.hxx:682
SwFrame * GetLower()
Definition: findfrm.cxx:196
SwTextNode * GetTextNode()
Inline methods from Node.hxx.
Definition: ndtxt.hxx:901
SwDoc & GetDoc()
Definition: node.hxx:233
bool IsTextNode() const
Definition: node.hxx:190
SwTableNode * FindTableNode()
Search table node, in which it is.
Definition: node.cxx:380
SwContentNode * GetContentNode()
Definition: node.hxx:666
bool IsAutoRule() const
Definition: numrule.hxx:229
PaM is Point and Mark: a selection of the document model.
Definition: pam.hxx:188
SwContentNode * GetPointContentNode() const
Definition: pam.hxx:279
const SwPosition * End() const
Definition: pam.hxx:263
const SwPosition * GetPoint() const
Definition: pam.hxx:253
const SwPosition * Start() const
Definition: pam.hxx:258
A page of the document layout.
Definition: pagefrm.hxx:60
SwPageDesc * FindPageDesc()
Definition: pagechg.cxx:767
static void removeStatement(const css::uno::Reference< css::frame::XModel > &xModel, const OUString &rType, const css::uno::Reference< css::rdf::XResource > &xSubject, const OUString &rKey, const OUString &rValue)
Remove an (XResource, key, value) statement in the graph of type rType, if it exists.
Definition: rdfhelper.cxx:131
static std::map< OUString, OUString > getStatements(const css::uno::Reference< css::frame::XModel > &xModel, const css::uno::Sequence< css::uno::Reference< css::rdf::XURI > > &rGraphNames, const css::uno::Reference< css::rdf::XResource > &xSubject)
Gets all (XResource, key, value) statements in RDF graphs given the graph-names.
static void addStatement(const css::uno::Reference< css::frame::XModel > &xModel, const OUString &rType, const OUString &rPath, const css::uno::Reference< css::rdf::XResource > &xSubject, const OUString &rKey, const OUString &rValue)
Add an (XResource, key, value) statement in the graph of type rType – or if it does not exist,...
Definition: rdfhelper.cxx:100
static css::uno::Sequence< css::uno::Reference< css::rdf::XURI > > getGraphNames(const css::uno::Reference< css::rdf::XDocumentMetadataAccess > &xDocumentMetadataAccess, const css::uno::Reference< css::rdf::XURI > &xType)
Gets all graph-names in RDF of a given type.
static bool hasMetadataGraph(const css::uno::Reference< css::frame::XModel > &xModel, const OUString &rType)
Check if a graph of type rType exists.
Definition: rdfhelper.cxx:123
void SetExtraData(const SwRedlineExtraData *pData)
ExtraData gets copied, the pointer is therefore not taken over by the RedLineObject.
Definition: redline.hxx:229
void AddRule(SwUndoArg eWhat, const OUString &rWith)
Definition: SwRewriter.cxx:25
The root element of a Writer document layout.
Definition: rootfrm.hxx:85
A wrapper around SfxPoolItem to store the start position of (usually) a text portion,...
Definition: txatbase.hxx:44
const SfxPoolItem & GetAttr() const
Definition: txatbase.hxx:167
Represents the style of a paragraph.
Definition: fmtcol.hxx:61
SwTextNode is a paragraph in the document model.
Definition: ndtxt.hxx:112
SwTextAttr * GetTextAttrAt(sal_Int32 const nIndex, sal_uInt16 const nWhich, ::sw::GetTextAttrMode const eMode=::sw::GetTextAttrMode::Default) const
get the innermost text attribute covering position nIndex.
Definition: ndtxt.cxx:1804
SwTextFormatColl * GetTextColl() const
Definition: ndtxt.hxx:895
virtual void UndoImpl(::sw::UndoRedoContext &) override
Definition: edfcol.cxx:1705
virtual void RedoImpl(::sw::UndoRedoContext &) override
Definition: edfcol.cxx:1713
SwUndoParagraphSigning(SwDoc &rDoc, css::uno::Reference< css::text::XTextField > xField, css::uno::Reference< css::text::XTextContent > xParent, const bool bRemove)
Definition: edfcol.cxx:1680
css::uno::Reference< css::text::XTextField > m_xField
virtual void RepeatImpl(::sw::RepeatContext &) override
Definition: edfcol.cxx:1721
css::uno::Reference< css::text::XTextContent > m_xParent
size_t size() const
Definition: docary.hxx:88
const SwViewOption * GetViewOptions() const
Definition: viewsh.hxx:452
SwRootFrame * GetLayout() const
Definition: viewsh.cxx:2163
SwDoc * GetDoc() const
Definition: viewsh.hxx:308
const IDocumentRedlineAccess & getIDocumentRedlineAccess() const
Provides access to the document redline interface.
Definition: viewsh.cxx:2825
static rtl::Reference< SwXParagraph > CreateXParagraph(SwDoc &rDoc, SwTextNode *pTextNode, css::uno::Reference< css::text::XText > const &xParentText=nullptr, const sal_Int32 nSelStart=-1, const sal_Int32 nSelEnd=- 1)
bool decompose(B2DTuple &rScale, B2DTuple &rTranslate, double &rRotate, double &rShearX) const
void set(sal_uInt16 nRow, sal_uInt16 nColumn, double fValue)
void rotate(double fRadiant)
double get(sal_uInt16 nRow, sal_uInt16 nColumn) const
void scale(double fX, double fY)
SfxClassificationPolicyType
bool isMarkingKey(std::u16string_view aKey) const
bool isMarkingTextKey(std::u16string_view aKey) const
OUString makeNumberedIntellectualPropertyPartKey()
bool isCategoryIdentifierKey(std::u16string_view aKey) const
bool isCategoryNameKey(std::u16string_view aKey) const
OUString makeCategoryNameKey() const
OUString makeCategoryIdentifierKey() const
bool isIntellectualPropertyPartKey(std::u16string_view aKey) const
void AddDataRange(const void *pData, sal_Int32 size)
bool Sign(OStringBuffer &rCMSHexBuffer)
static bool Verify(const std::vector< unsigned char > &aData, const bool bNonDetached, const std::vector< unsigned char > &aSignature, SignatureInformation &rInformation)
ClassificationType meType
Meta is an annotation on a range of text.
Definition: fmtmeta.hxx:137
ring_container GetRingContainer()
Definition: ring.hxx:240
void SetFontSize(const Size &)
void SetFamilyName(const OUString &rFamilyName)
#define DBG_UNHANDLED_EXCEPTION(...)
SwDoc & m_rDoc
Definition: docbm.cxx:1228
float u
static void lcl_placeWatermarkInHeader(const SfxWatermarkItem &rWatermark, const uno::Reference< frame::XModel > &xModel, const uno::Reference< beans::XPropertySet > &xPageStyle, const uno::Reference< text::XText > &xHeaderText)
Definition: edfcol.cxx:1446
static void insertFieldToDocument(uno::Reference< lang::XMultiServiceFactory > const &rxMultiServiceFactory, uno::Reference< text::XText > const &rxText, uno::Reference< text::XParagraphCursor > const &rxParagraphCursor, OUString const &rsKey)
Definition: edfcol.cxx:704
static void lcl_ApplyParagraphClassification(SwDoc *pDoc, const uno::Reference< frame::XModel > &xModel, const rtl::Reference< SwXParagraph > &xParent, const css::uno::Reference< css::rdf::XResource > &xNodeSubject, std::vector< svx::ClassificationResult > aResults)
Definition: edfcol.cxx:1168
static OUString lcl_GetParagraphClassification(SfxClassificationHelper &rHelper, sfx::ClassificationKeyCreator const &rKeyCreator, const uno::Reference< frame::XModel > &xModel, const rtl::Reference< SwXParagraph > &xParagraph)
Definition: edfcol.cxx:2096
static OUString lcl_GetHighestClassificationParagraphClass(SwPaM *pCursor)
Definition: edfcol.cxx:2116
static void equaliseNumberOfParagraph(std::vector< svx::ClassificationResult > const &rResults, uno::Reference< text::XText > const &xText)
Definition: edfcol.cxx:761
static sal_Int16 lcl_GetAngle(const drawing::HomogenMatrix3 &rMatrix)
Definition: edfcol.cxx:1368
static std::vector< svx::ClassificationResult > lcl_CollectParagraphClassification(const uno::Reference< frame::XModel > &xModel, const uno::Reference< text::XTextContent > &xParagraph)
Definition: edfcol.cxx:1293
static void removeAllClassificationFields(std::u16string_view rPolicy, uno::Reference< text::XText > const &rxText)
Definition: edfcol.cxx:715
static uno::Reference< text::XTextField > lcl_GetParagraphMetadataFieldAtIndex(const SwDocShell *pDocSh, SwTextNode const *pNode, const sal_uLong index)
Definition: edfcol.cxx:1896
constexpr OUStringLiteral WATERMARK_NAME
Definition: edfcol.cxx:104
static sal_Int32 getNumberOfParagraphs(uno::Reference< text::XText > const &xText)
Definition: edfcol.cxx:748
#define WATERMARK_AUTO_SIZE
Definition: edfcol.cxx:105
Any aHelper
DocumentType eType
OUString sName
#define CH_TXT_ATR_INPUTFIELDSTART
Definition: hintids.hxx:178
constexpr TypedWhichId< SwFormatPageDesc > RES_PAGEDESC(99)
constexpr TypedWhichId< SwNumRuleItem > RES_PARATR_NUMRULE(72)
constexpr TypedWhichId< SvxFormatBreakItem > RES_BREAK(100)
constexpr TypedWhichId< SwFormatMeta > RES_TXTATR_METAFIELD(49)
#define CH_TXT_ATR_INPUTFIELDEND
Definition: hintids.hxx:179
#define CH_TXTATR_BREAKWORD
Definition: hintids.hxx:174
sal_Int32 nIndex
OUString aName
OUString sSuffix
OUString sPrefix
std::unique_ptr< sal_Int32[]> pData
tools::Long const nRightMargin
tools::Long const nBottomMargin
tools::Long const nTopMargin
tools::Long const nLeftMargin
constexpr double rad2deg(double v)
constexpr double deg2rad(double v)
OUStringBuffer & remove(OUStringBuffer &rIn, sal_Unicode c)
css::uno::Sequence< DstElementType > containerToSequence(const SrcType &i_Container)
Reference< XComponentContext > getProcessComponentContext()
css::uno::Sequence< css::beans::PropertyValue > InitPropertySequence(::std::initializer_list< ::std::pair< OUString, css::uno::Any > > vInit)
css::beans::PropertyValue makePropertyValue(const OUString &rName, T &&rValue)
constexpr OUStringLiteral first
index
enumrange< T >::Iterator begin(enumrange< T >)
end
sfx::ClassificationCreationOrigin getCreationOriginProperty(uno::Reference< beans::XPropertyContainer > const &rxPropertyContainer, sfx::ClassificationKeyCreator const &rKeyCreator)
std::vector< unsigned char > DecodeHexString(std::string_view rHex)
OUString getProperty(uno::Reference< beans::XPropertyContainer > const &rxPropertyContainer, OUString const &rName)
void insertFullTextualRepresentationAsDocumentProperty(uno::Reference< beans::XPropertyContainer > const &rxPropertyContainer, sfx::ClassificationKeyCreator const &rKeyCreator, std::vector< svx::ClassificationResult > const &rResults)
void insertCreationOrigin(uno::Reference< beans::XPropertyContainer > const &rxPropertyContainer, sfx::ClassificationKeyCreator const &rKeyCreator, sfx::ClassificationCreationOrigin eOrigin)
bool addOrInsertDocumentProperty(uno::Reference< beans::XPropertyContainer > const &rxPropertyContainer, OUString const &rsKey, OUString const &rsValue)
void removeAllProperties(uno::Reference< beans::XPropertyContainer > const &rxPropertyContainer)
SwTextNode * GetParaPropsNode(SwRootFrame const &rLayout, SwNode const &rNode)
Definition: txtfrm.cxx:330
@ RES_POOLCOLL_STANDARD
Standard.
Definition: poolfmt.hxx:250
sal_uIntPtr sal_uLong
css::xml::crypto::SecurityOperationStatus nStatus
X509CertInfo const * GetSigningCertificate() const
Marks a position in the document model.
Definition: pam.hxx:38
SwNode & GetNode() const
Definition: pam.hxx:81
void SetContent(sal_Int32 nContentIndex)
Set content index, only valid to call this if the position points to a SwContentNode subclass.
Definition: pam.cxx:267
sal_Int32 GetContentIndex() const
Definition: pam.hxx:85
Reference< XModel > xModel
OUString SwResId(TranslateId aId)
Definition: swmodule.cxx:168
SwUndoId
Definition: swundo.hxx:30
Any result
ResultType type
OUString sId
constexpr OUStringLiteral UNO_NAME_FILL_TRANSPARENCE
constexpr OUStringLiteral UNO_NAME_TEXT_FIELD
Definition: unoprnms.hxx:363
constexpr OUStringLiteral UNO_NAME_FILLCOLOR
constexpr OUStringLiteral UNO_NAME_SIZE
Definition: unoprnms.hxx:327
constexpr OUStringLiteral UNO_NAME_HEADER_HEIGHT
Definition: unoprnms.hxx:409
constexpr OUStringLiteral UNO_NAME_ANCHOR_TYPE
Definition: unoprnms.hxx:249
constexpr OUStringLiteral UNO_NAME_RIGHT_MARGIN
Definition: unoprnms.hxx:81
constexpr OUStringLiteral UNO_NAME_FOOTER_TEXT
Definition: unoprnms.hxx:395
constexpr OUStringLiteral UNO_NAME_TEXT_WRAP
Definition: unoprnms.hxx:336
constexpr OUStringLiteral UNO_NAME_TEXT_MINFRAMEHEIGHT
constexpr OUStringLiteral UNO_NAME_LINESTYLE
constexpr OUStringLiteral UNO_NAME_HEADER_TEXT
Definition: unoprnms.hxx:392
constexpr OUStringLiteral UNO_NAME_HEADER_IS_ON
Definition: unoprnms.hxx:410
constexpr OUStringLiteral UNO_NAME_LEFT_MARGIN
Definition: unoprnms.hxx:80
constexpr OUStringLiteral UNO_NAME_HORI_ORIENT
Definition: unoprnms.hxx:284
constexpr OUStringLiteral UNO_NAME_CHAR_FONT_NAME_ASIAN
Definition: unoprnms.hxx:103
constexpr OUStringLiteral UNO_NAME_VERT_ORIENT
Definition: unoprnms.hxx:352
constexpr OUStringLiteral UNO_NAME_HEADER_TEXT_LEFT
Definition: unoprnms.hxx:393
constexpr OUStringLiteral UNO_NAME_NAME
Definition: unoprnms.hxx:90
constexpr OUStringLiteral UNO_NAME_HORI_ORIENT_RELATION
Definition: unoprnms.hxx:287
constexpr OUStringLiteral UNO_NAME_TOP_MARGIN
Definition: unoprnms.hxx:343
constexpr OUStringLiteral UNO_NAME_FILLSTYLE
constexpr OUStringLiteral UNO_NAME_HEADER_TEXT_RIGHT
Definition: unoprnms.hxx:394
constexpr OUStringLiteral UNO_NAME_TEXT_PORTION_TYPE
Definition: unoprnms.hxx:509
constexpr OUStringLiteral UNO_NAME_FOOTER_IS_ON
Definition: unoprnms.hxx:427
constexpr OUStringLiteral UNO_NAME_OPAQUE
Definition: unoprnms.hxx:306
constexpr OUStringLiteral UNO_NAME_TEXT_AUTOGROWHEIGHT
constexpr OUStringLiteral UNO_NAME_HEADER_IS_DYNAMIC_HEIGHT
Definition: unoprnms.hxx:407
constexpr OUStringLiteral UNO_NAME_VERT_ORIENT_RELATION
Definition: unoprnms.hxx:355
constexpr OUStringLiteral UNO_NAME_TEXT_AUTOGROWWIDTH
constexpr OUStringLiteral UNO_NAME_BOTTOM_MARGIN
Definition: unoprnms.hxx:344
constexpr OUStringLiteral UNO_NAME_CHAR_HEIGHT
constexpr OUStringLiteral UNO_NAME_TEXT_MINFRAMEWIDTH
constexpr OUStringLiteral UNO_NAME_CHAR_FONT_NAME
Definition: unoprnms.hxx:97
constexpr OUStringLiteral UNO_NAME_HEADER_TEXT_FIRST
Definition: unoprnms.hxx:869
constexpr OUStringLiteral UNO_NAME_CHAR_FONT_NAME_COMPLEX
Definition: unoprnms.hxx:112