46 void addCodecs(
const QMap<QString, QTextCodec *> &codecMap);
49 bool eventFilter(QObject *obj, QEvent *event);
50 void keyPressEvent(QKeyEvent *event);
53 void on_sbStart_valueChanged(
int value);
54 void on_sbEnd_valueChanged(
int value);
55 void on_cbDecodeAs_currentIndexChanged(
int idx);
56 void on_cbShowAs_currentIndexChanged(
int idx);
57 void on_leFind_returnPressed();
58 void on_bFind_clicked();
59 void on_buttonBox_rejected();
61 void showSelected(
int start,
int end);
62 void useRegexFind(
bool use_regex);
63 void findText(
bool go_back =
true);
70 void setStartAndEnd(
int start,
int end);
71 bool enableShowSelected();
73 void updateHintLabel();
74 void sanitizeBuffer(QByteArray &ba,
bool handle_CR);
75 void symbolizeBuffer(QByteArray &ba);
76 QByteArray decodeQuotedPrintable(
const uint8_t *bytes,
int length);
77 void rot13(QByteArray &ba);
78 void updateFieldBytes(
bool initialization =
false);
79 void updatePacketBytes();
81 Ui::ShowPacketBytesDialog *ui;
84 QByteArray field_bytes_;
86 QString decode_as_name_;
87 QPushButton *print_button_;
88 QPushButton *copy_button_;
89 QPushButton *save_as_button_;
Definition show_packet_bytes_dialog.h:97