1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/* funnel_text_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "funnel_text_dialog.h"
#include <ui_funnel_text_dialog.h>
#include <QPushButton>
#include <QRegExp>
#include <QTextCharFormat>
#include <QTextCursor>
#include "qt_ui_utils.h"
#include "wireshark_application.h"
// To do:
// - Add "Find next" to highlighting.
// - Add rich text support?
// - Zoom text?
static QHash<QObject *, funnel_bt_t*> text_button_to_funnel_button_;
FunnelTextDialog::FunnelTextDialog(const QString &title) :
GeometryStateDialog(NULL),
ui(new Ui::FunnelTextDialog),
close_cb_(NULL),
close_cb_data_(NULL)
{
ui->setupUi(this);
if (!title.isEmpty()) {
loadGeometry(0, 0, QString("Funnel %1").arg(title));
}
funnel_text_window_.funnel_text_dialog = this;
ui->textEdit->setFont(wsApp->monospaceFont());
ui->textEdit->setReadOnly(true);
ui->textEdit->setAcceptRichText(false);
}
FunnelTextDialog::~FunnelTextDialog()
{
delete ui;
}
void FunnelTextDialog::reject()
{
QDialog::reject();
if (close_cb_) {
close_cb_(close_cb_data_);
}
disconnect();
deleteLater();
}
struct _funnel_text_window_t *FunnelTextDialog::textWindowNew(const QString title)
{
FunnelTextDialog *ftd = new FunnelTextDialog(title);
ftd->setWindowTitle(wsApp->windowTitleString(title));
ftd->show();
return &ftd->funnel_text_window_;
}
void FunnelTextDialog::setText(const QString text)
{
ui->textEdit->setText(text);
}
void FunnelTextDialog::appendText(const QString text)
{
ui->textEdit->moveCursor(QTextCursor::End);
ui->textEdit->insertPlainText(text);
}
void FunnelTextDialog::prependText(const QString text)
{
ui->textEdit->moveCursor(QTextCursor::Start);
ui->textEdit->insertPlainText(text);
}
void FunnelTextDialog::clearText()
{
ui->textEdit->clear();
}
const char *FunnelTextDialog::getText()
{
return qstring_strdup(ui->textEdit->toPlainText());
}
void FunnelTextDialog::setCloseCallback(text_win_close_cb_t close_cb, void *close_cb_data)
{
close_cb_ = close_cb;
close_cb_data_ = close_cb_data;
}
void FunnelTextDialog::setTextEditable(gboolean editable)
{
ui->textEdit->setReadOnly(!editable);
}
void FunnelTextDialog::addButton(funnel_bt_t *funnel_button, const QString label)
{
QPushButton *button = new QPushButton(label);
ui->buttonBox->addButton(button, QDialogButtonBox::ActionRole);
text_button_to_funnel_button_[button] = funnel_button;
connect(button, SIGNAL(clicked(bool)), this, SLOT(buttonClicked()));
}
void FunnelTextDialog::buttonClicked()
{
if (text_button_to_funnel_button_.contains(sender())) {
funnel_bt_t *funnel_button = text_button_to_funnel_button_[sender()];
if (funnel_button) {
funnel_button->func(&funnel_text_window_, funnel_button->data);
}
}
}
void FunnelTextDialog::on_findLineEdit_textChanged(const QString &pattern)
{
QRegExp re(pattern, Qt::CaseInsensitive);
QTextCharFormat plain_fmt, highlight_fmt;
highlight_fmt.setBackground(Qt::yellow);
QTextCursor csr(ui->textEdit->document());
int position = csr.position();
setUpdatesEnabled(false);
// Reset highlighting
csr.movePosition(QTextCursor::Start);
csr.movePosition(QTextCursor::End, QTextCursor::KeepAnchor);
csr.setCharFormat(plain_fmt);
// Apply new highlighting
if (!pattern.isEmpty()) {
int match_pos = 0;
while ((match_pos = re.indexIn(ui->textEdit->toPlainText(), match_pos)) > -1) {
csr.setPosition(match_pos, QTextCursor::MoveAnchor);
csr.setPosition(match_pos + re.matchedLength(), QTextCursor::KeepAnchor);
csr.setCharFormat(highlight_fmt);
match_pos += re.matchedLength();
}
}
// Restore cursor and anchor
csr.setPosition(position, QTextCursor::MoveAnchor);
setUpdatesEnabled(true);
}
struct _funnel_text_window_t* text_window_new(const char* title)
{
return FunnelTextDialog::textWindowNew(title);
}
void text_window_set_text(funnel_text_window_t *ftw, const char* text)
{
if (ftw) {
ftw->funnel_text_dialog->setText(text);
}
}
void text_window_append(funnel_text_window_t* ftw, const char* text)
{
if (ftw) {
ftw->funnel_text_dialog->appendText(text);
}
}
void text_window_prepend(funnel_text_window_t *ftw, const char* text)
{
if (ftw) {
ftw->funnel_text_dialog->prependText(text);
}
}
void text_window_clear(funnel_text_window_t* ftw)
{
if (ftw) {
ftw->funnel_text_dialog->clearText();
}
}
const char *text_window_get_text(funnel_text_window_t *ftw)
{
if (ftw) {
return ftw->funnel_text_dialog->getText();
}
return NULL;
}
void text_window_set_close_cb(funnel_text_window_t *ftw, text_win_close_cb_t close_cb, void *close_cb_data)
{
if (ftw) {
ftw->funnel_text_dialog->setCloseCallback(close_cb, close_cb_data);
}
}
void text_window_set_editable(funnel_text_window_t *ftw, gboolean editable)
{
if (ftw) {
ftw->funnel_text_dialog->setTextEditable(editable);
}
}
void text_window_destroy(funnel_text_window_t *ftw)
{
if (ftw) {
ftw->funnel_text_dialog->close();
}
}
void text_window_add_button(funnel_text_window_t *ftw, funnel_bt_t *funnel_button, const char *label)
{
if (ftw) {
ftw->funnel_text_dialog->addButton(funnel_button, label);
}
}
/*
* Editor modelines
*
* Local Variables:
* c-basic-offset: 4
* tab-width: 8
* indent-tabs-mode: nil
* End:
*
* ex: set shiftwidth=4 tabstop=8 expandtab:
* :indentSize=4:tabSize=8:noTabs=true:
*/
|