]> git.lyx.org Git - lyx.git/blob - src/support/qstring_helpers.cpp
Expand comment
[lyx.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 (int i = 0; i < filter.length(); ++i) {
76         QChar c = filter[i];
77         if (c.isLower())
78             re +=  "["+ QRegExp::escape(c) + QRegExp::escape(c.toUpper()) + "]";
79         else
80             re +=  QRegExp::escape(c);
81     }
82     return re;
83 }
84
85 QString charFilterRegExpC(QString const & filter)
86 {
87         QString re = "(";
88         for (int i = 0; i < filter.length(); ++i) {
89                 QChar c = filter[i];
90                 if (c.isLower())
91                         re +=  "["+ QRegExp::escape(c) + QRegExp::escape(c.toUpper()) + "]";
92                 else
93                         re +=  QRegExp::escape(c);
94         }
95         return re + ")";
96 }
97
98
99
100 } // namespace lyx