Line data Source code
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 :
21 : #include "svl/lngmisc.hxx"
22 :
23 : #include <comphelper/string.hxx>
24 : #include <rtl/ustrbuf.hxx>
25 : #include <tools/debug.hxx>
26 :
27 : namespace linguistic
28 : {
29 0 : sal_Int32 GetNumControlChars(const OUString &rTxt)
30 : {
31 0 : sal_Int32 nCnt = 0;
32 0 : for (sal_Int32 i = 0; i < rTxt.getLength(); ++i)
33 0 : if (IsControlChar(rTxt[i]))
34 0 : ++nCnt;
35 0 : return nCnt;
36 : }
37 :
38 0 : bool RemoveHyphens(OUString &rTxt)
39 : {
40 0 : sal_Int32 n = rTxt.getLength();
41 0 : rTxt = comphelper::string::remove(rTxt, SVT_SOFT_HYPHEN);
42 0 : rTxt = comphelper::string::remove(rTxt, SVT_HARD_HYPHEN);
43 0 : return n != rTxt.getLength();
44 : }
45 :
46 0 : bool RemoveControlChars(OUString &rTxt)
47 : {
48 0 : sal_Int32 nSize = rTxt.getLength() - GetNumControlChars(rTxt);
49 0 : if(nSize == rTxt.getLength())
50 0 : return false;
51 :
52 0 : OUStringBuffer aBuf(nSize);
53 0 : aBuf.setLength(nSize);
54 0 : for (sal_Int32 i = 0, j = 0; i < rTxt.getLength() && j < nSize; ++i)
55 0 : if (!IsControlChar(rTxt[i]))
56 0 : aBuf[j++] = rTxt[i];
57 :
58 0 : rTxt = aBuf.makeStringAndClear();
59 : DBG_ASSERT(rTxt.getLength() == nSize, "GetNumControlChars returned a different number of control characters than were actually removed.");
60 :
61 0 : return true;
62 : }
63 :
64 0 : bool ReplaceControlChars(OUString &rTxt)
65 : {
66 : // non breaking field character
67 : static const sal_Char CH_TXTATR_INWORD = static_cast<sal_Char>(0x02);
68 :
69 : // the resulting string looks like this:
70 : // 1. non breaking field characters get removed
71 : // 2. remaining control characters will be replaced by ' '
72 :
73 0 : if (GetNumControlChars(rTxt) == 0)
74 0 : return false;
75 :
76 0 : sal_Int32 n = rTxt.getLength();
77 :
78 0 : OUStringBuffer aBuf(n);
79 0 : aBuf.setLength(n);
80 :
81 0 : sal_Int32 j = 0;
82 0 : for (sal_Int32 i = 0; i < n && j < n; ++i)
83 : {
84 0 : if (CH_TXTATR_INWORD == rTxt[i])
85 0 : continue;
86 :
87 0 : aBuf[j++] = IsControlChar(rTxt[i]) ? ' ' : rTxt[i];
88 : }
89 :
90 0 : aBuf.setLength(j);
91 0 : rTxt = aBuf.makeStringAndClear();
92 :
93 0 : return true;
94 : }
95 :
96 0 : OUString GetThesaurusReplaceText(const OUString &rText)
97 : {
98 : // The strings for synonyms returned by the thesaurus sometimes have some
99 : // explanation text put in between '(' and ')' or a trailing '*'.
100 : // These parts should not be put in the ReplaceEdit Text that may get
101 : // inserted into the document. Thus we strip them from the text.
102 :
103 0 : OUString aText(rText);
104 :
105 0 : sal_Int32 nPos = aText.indexOf('(');
106 0 : while (nPos >= 0)
107 : {
108 0 : sal_Int32 nEnd = aText.indexOf(')', nPos);
109 0 : if (nEnd >= 0)
110 : {
111 0 : OUStringBuffer aTextBuf(aText);
112 0 : aTextBuf.remove(nPos, nEnd - nPos + 1);
113 0 : aText = aTextBuf.makeStringAndClear();
114 : }
115 : else
116 0 : break;
117 0 : nPos = aText.indexOf('(');
118 : }
119 :
120 0 : nPos = aText.indexOf('*');
121 0 : if(nPos == 0)
122 0 : return OUString();
123 0 : else if(nPos > 0)
124 0 : aText = aText.copy(0, nPos);
125 :
126 : // remove any possible remaining ' ' that may confuse the thesaurus
127 : // when it gets called with the text
128 0 : return comphelper::string::strip(aText, ' ');
129 : }
130 : } // namespace linguistic
131 :
132 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|