mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
4c32f756e5
This reverts commit0669455298
. Revert "clean code:remove old temporary fix" This reverts commitc941a5bfc3
.
37 lines
876 B
C++
37 lines
876 B
C++
#include "wstring_qt.hh"
|
|
#include <QVector>
|
|
|
|
namespace gd
|
|
{
|
|
QString toQString( wstring const & in )
|
|
{
|
|
return QString::fromStdU32String( in );
|
|
}
|
|
|
|
wstring toWString( QString const & in )
|
|
{
|
|
QVector< unsigned int > v = in.toUcs4();
|
|
|
|
// Fix for QString instance which contains non-BMP characters
|
|
// Qt will created unexpected null characters may confuse btree indexer.
|
|
// Related: https://bugreports.qt-project.org/browse/QTBUG-25536
|
|
int n = v.size();
|
|
while ( n > 0 && v[ n - 1 ] == 0 ) n--;
|
|
if ( n != v.size() )
|
|
v.resize( n );
|
|
|
|
return wstring( ( const wchar * ) v.constData(), v.size() );
|
|
}
|
|
|
|
wstring normalize( const wstring & str )
|
|
{
|
|
return gd::toWString( gd::toQString( str ).normalized( QString::NormalizationForm_C ) );
|
|
}
|
|
|
|
std::string toStdString(const QString& str)
|
|
{
|
|
return str.toStdString();
|
|
}
|
|
|
|
}
|