Text Codecs Example▲
Sélectionnez
/**
**************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
***************************************************************************
*/
#include <QtWidgets>
#include
"previewform.h"
// Helpers for creating hex dumps
static
void
indent(QTextStream &
amp;str, int
indent)
{
for
(int
i =
0
; i &
lt; indent; ++
i)
str &
lt;&
lt; ' '
;
}
static
void
formatHex(QTextStream &
amp;str, const
QByteArray &
amp;data)
{
const
int
fieldWidth =
str.fieldWidth();
const
QTextStream::
FieldAlignment alignment =
str.fieldAlignment();
const
int
base =
str.integerBase();
const
QChar padChar =
str.padChar();
str.setIntegerBase(16
);
str.setPadChar(QLatin1Char('0'
));
str.setFieldAlignment(QTextStream::
AlignRight);
const
unsigned
char
*
p =
reinterpret_cast
&
lt;const
unsigned
char
*&
gt;(data.constBegin());
for
(const
unsigned
char
*
end =
p +
data.size(); p &
lt; end; ++
p) {
str &
lt;&
lt; ' '
;
str.setFieldWidth(2
);
str &
lt;&
lt; unsigned
(*
p);
str.setFieldWidth(fieldWidth);
}
str.setFieldAlignment(alignment);
str.setPadChar(padChar);
str.setIntegerBase(base);
}
static
void
formatPrintableCharacters(QTextStream &
amp;str, const
QByteArray &
amp;data)
{
for
(int
i =
0
, size =
data.size(); i &
lt; size; ++
i) {
const
char
c =
data.at(i);
switch
(c) {
case
'
\0
'
:
str &
lt;&
lt; "
\\
0"
;
break
;
case
'
\t
'
:
str &
lt;&
lt; "
\\
t"
;
break
;
case
'
\r
'
:
str &
lt;&
lt; "
\\
r"
;
break
;
case
'
\n
'
:
str &
lt;&
lt; "
\\
n"
;
break
;
default
:
if
(c &
gt;=
32
&
amp;&
amp; uchar(c) &
lt; 127
)
str &
lt;&
lt; ' '
&
lt;&
lt; c;
else
str &
lt;&
lt; ".."
;
break
;
}
}
}
static
QString formatHexDump(const
QByteArray &
amp;data)
{
enum
{
lineWidth =
16
}
;
QString result;
QTextStream str(&
amp;result);
str.setIntegerBase(16
);
str.setPadChar(QLatin1Char('0'
));
const
int
fieldWidth =
str.fieldWidth();
const
QTextStream::
FieldAlignment alignment =
str.fieldAlignment();
for
(int
a =
0
, size =
data.size(); a &
lt; size; a +=
lineWidth) {
str.setFieldAlignment(QTextStream::
AlignRight);
str.setFieldWidth(8
);
str &
lt;&
lt; a;
str.setFieldWidth(fieldWidth);
str.setFieldAlignment(alignment);
const
int
end =
qMin(a +
lineWidth, size);
const
QByteArray line =
data.mid(a, end -
a);
formatHex(str, line);
indent(str, 3
*
(lineWidth -
line.size()));
str &
lt;&
lt; ' '
;
formatPrintableCharacters(str, line);
indent(str, 2
*
(lineWidth -
line.size()));
str &
lt;&
lt; '
\n
'
;
}
return
result;
}
PreviewForm::
PreviewForm(QWidget *
parent)
:
QDialog(parent)
{
setWindowFlags(windowFlags() &
amp; ~
Qt::
WindowContextHelpButtonHint);
encodingComboBox =
new
QComboBox;
QLabel *
encodingLabel =
new
QLabel(tr("&Encoding:"
));
encodingLabel-&
gt;setBuddy(encodingComboBox);
textEdit =
new
QPlainTextEdit;
textEdit-&
gt;setLineWrapMode(QPlainTextEdit::
NoWrap);
textEdit-&
gt;setReadOnly(true
);
hexDumpEdit =
new
QPlainTextEdit;
hexDumpEdit-&
gt;setLineWrapMode(QPlainTextEdit::
NoWrap);
hexDumpEdit-&
gt;setReadOnly(true
);
hexDumpEdit-&
gt;setFont(QFontDatabase::
systemFont(QFontDatabase::
FixedFont));
QDialogButtonBox *
buttonBox =
new
QDialogButtonBox(QDialogButtonBox::
Ok |
QDialogButtonBox::
Cancel);
okButton =
buttonBox-&
gt;button(QDialogButtonBox::
Ok);
connect(encodingComboBox, QOverload&
lt;int
&
gt;::
of(&
amp;QComboBox::
activated),
this
, &
amp;PreviewForm::
updateTextEdit);
connect(buttonBox, &
amp;QDialogButtonBox::
accepted, this
, &
amp;QDialog::
accept);
connect(buttonBox, &
amp;QDialogButtonBox::
rejected, this
, &
amp;QDialog::
reject);
QGridLayout *
mainLayout =
new
QGridLayout(this
);
mainLayout-&
gt;addWidget(encodingLabel, 0
, 0
);
mainLayout-&
gt;addWidget(encodingComboBox, 0
, 1
);
tabWidget =
new
QTabWidget;
tabWidget-&
gt;addTab(textEdit, tr("Preview"
));
tabWidget-&
gt;addTab(hexDumpEdit, tr("Hex Dump"
));
mainLayout-&
gt;addWidget(tabWidget, 1
, 0
, 1
, 2
);
statusLabel =
new
QLabel;
mainLayout-&
gt;addWidget(statusLabel, 2
, 0
, 1
, 2
);
mainLayout-&
gt;addWidget(buttonBox, 3
, 0
, 1
, 2
);
const
QRect screenGeometry =
QApplication::
desktop()-&
gt;screenGeometry(this
);
resize(screenGeometry.width() *
2
/
5
, screenGeometry.height() /
2
);
}
void
PreviewForm::
setCodecList(const
QList&
lt;QTextCodec *&
gt; &
amp;list)
{
encodingComboBox-&
gt;clear();
foreach (const
QTextCodec *
codec, list) {
encodingComboBox-&
gt;addItem(QLatin1String(codec-&
gt;name()),
QVariant(codec-&
gt;mibEnum()));
}
}
void
PreviewForm::
reset()
{
decodedStr.clear();
textEdit-&
gt;clear();
hexDumpEdit-&
gt;clear();
statusLabel-&
gt;clear();
statusLabel-&
gt;setStyleSheet(QString());
okButton-&
gt;setEnabled(false
);
tabWidget-&
gt;setCurrentIndex(0
);
}
void
PreviewForm::
setEncodedData(const
QByteArray &
amp;data)
{
reset();
encodedData =
data;
hexDumpEdit-&
gt;setPlainText(formatHexDump(data));
updateTextEdit();
}
void
PreviewForm::
updateTextEdit()
{
int
mib =
encodingComboBox-&
gt;itemData(
encodingComboBox-&
gt;currentIndex()).toInt();
const
QTextCodec *
codec =
QTextCodec::
codecForMib(mib);
const
QString name =
QLatin1String(codec-&
gt;name());
QTextCodec::
ConverterState state;
decodedStr =
codec-&
gt;toUnicode(encodedData.constData(), encodedData.size(), &
amp;state);
bool
success =
true
;
if
(state.remainingChars) {
success =
false
;
const
QString message =
tr("%1: conversion error at character %2"
)
.arg(name).arg(encodedData.size() -
state.remainingChars +
1
);
statusLabel-&
gt;setText(message);
statusLabel-&
gt;setStyleSheet(QStringLiteral("background-color:
\"
red
\"
;"
));
}
else
if
(state.invalidChars) {
statusLabel-&
gt;setText(tr("%1: %n invalid characters"
, 0
, state.invalidChars).arg(name));
statusLabel-&
gt;setStyleSheet(QStringLiteral("background-color:
\"
yellow
\"
;"
));
}
else
{
statusLabel-&
gt;setText(tr("%1: %n bytes converted"
, 0
, encodedData.size()).arg(name));
statusLabel-&
gt;setStyleSheet(QString());
}
if
(success)
textEdit-&
gt;setPlainText(decodedStr);
else
textEdit-&
gt;clear();
okButton-&
gt;setEnabled(success);
}