wireshark/ui/qt/packet_comment_dialog.cpp

57 lines
1.2 KiB
C++

/* packet_comment_dialog.cpp
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later*/
#include "packet_comment_dialog.h"
#include <ui_packet_comment_dialog.h>
#include "wireshark_application.h"
PacketCommentDialog::PacketCommentDialog(guint32 frame, QWidget *parent, QString comment) :
GeometryStateDialog(parent),
pc_ui_(new Ui::PacketCommentDialog)
{
QString title = QString(tr("Packet %1 Comment"))
.arg(frame);
pc_ui_->setupUi(this);
loadGeometry();
setWindowTitle(wsApp->windowTitleString(title));
pc_ui_->commentTextEdit->setPlainText(comment);
}
PacketCommentDialog::~PacketCommentDialog()
{
delete pc_ui_;
}
QString PacketCommentDialog::text()
{
return pc_ui_->commentTextEdit->toPlainText();
}
void PacketCommentDialog::on_buttonBox_helpRequested()
{
// wsApp->helpTopicAction(HELP_PACKET_COMMENT_DIALOG);
}
/*
* 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:
*/