]> git.lyx.org Git - features.git/blob - src/support/qstring_helpers.cpp
Fix compilation with MSVC 19.
[features.git] / src / support / qstring_helpers.cpp
1 /**
2  * \file qstring_helper.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Dekel Tsur
7  *
8  * Full author contact details are available in file CREDITS.
9  *
10  * A collection of unicode conversion functions, using iconv.
11  */
12
13 #include <config.h>
14
15 #include "support/qstring_helpers.h"
16
17 #include "support/debug.h"
18 #include "support/docstring.h"
19 #include "support/qstring_helpers.h"
20
21 #include <QRegExp>
22 #include <QString>
23 #include <QVector>
24
25 namespace lyx {
26
27 LyXErr & operator<<(LyXErr & err, QString const & str)
28 {
29         return err << fromqstr(str);
30 }
31
32
33 QString toqstr(char const * str)
34 {
35         return QString::fromUtf8(str);
36 }
37
38 QString toqstr(std::string const & str)
39 {
40         return toqstr(str.c_str());
41 }
42
43
44 QString toqstr(docstring const & ucs4)
45 {
46         // If possible we let qt do the work, since this version does not
47         // need to be superfast.
48         if (ucs4.empty())
49                 return QString();
50         return QString::fromUcs4((uint const *)ucs4.data(), ucs4.length());
51 }
52
53 QString toqstr(char_type ucs4)
54 {
55         union { char_type c; uint i; } u = { ucs4 };
56         return QString::fromUcs4(&u.i, 1);
57 }
58
59 docstring qstring_to_ucs4(QString const & qstr)
60 {
61         if (qstr.isEmpty())
62                 return docstring();
63         QVector<uint> const ucs4 = qstr.toUcs4();
64         return docstring((char_type const *)(ucs4.constData()), ucs4.size());
65 }
66
67 std::string fromqstr(QString const & str)
68 {
69         return str.isEmpty() ? std::string() : std::string(str.toUtf8());
70 }
71
72 QString charFilterRegExp(QString const & filter)
73 {
74         QString re = ".*";
75         for (QChar const & c : filter) {
76                 if (c.isLower())
77                         re +=  "["+ QRegExp::escape(c) + QRegExp::escape(c.toUpper()) + "]";
78                 else
79                         re +=  QRegExp::escape(c);
80         }
81         return re;
82 }
83
84 QString charFilterRegExpC(QString const & filter)
85 {
86         QString re = "(";
87         for (QChar const & c : filter) {
88                 if (c.isLower())
89                         re +=  "["+ QRegExp::escape(c) + QRegExp::escape(c.toUpper()) + "]";
90                 else
91                         re +=  QRegExp::escape(c);
92         }
93         return re + ")";
94 }
95
96
97
98 } // namespace lyx