wireshark/ui/qt/enabled_protocols_dialog.cpp

149 lines
4.6 KiB
C++

/* enabled_protocols_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 "enabled_protocols_dialog.h"
#include <ui_enabled_protocols_dialog.h>
#include <QElapsedTimer>
#include <epan/prefs.h>
#include "wireshark_application.h"
EnabledProtocolsDialog::EnabledProtocolsDialog(QWidget *parent) :
GeometryStateDialog(parent),
ui(new Ui::EnabledProtocolsDialog),
enabled_protocols_model_(new EnabledProtocolsModel()),
proxyModel_(new EnabledProtocolsProxyModel(this))
{
ui->setupUi(this);
loadGeometry();
proxyModel_->setSourceModel(enabled_protocols_model_);
ui->protocol_tree_->setModel(proxyModel_);
setWindowTitle(wsApp->windowTitleString(tr("Enabled Protocols")));
// Some protocols have excessively long names. Instead of calling
// resizeColumnToContents, pick a reasonable-ish em width and apply it.
int one_em = ui->protocol_tree_->fontMetrics().height();
ui->protocol_tree_->setColumnWidth(EnabledProtocolsModel::colProtocol, one_em * 18);
ui->cmbSearchType->addItem(tr("Everywhere"), qVariantFromValue(EnabledProtocolsProxyModel::EveryWhere));
ui->cmbSearchType->addItem(tr("Only Protocols"), qVariantFromValue(EnabledProtocolsProxyModel::OnlyProtocol));
ui->cmbSearchType->addItem(tr("Only Description"), qVariantFromValue(EnabledProtocolsProxyModel::OnlyDescription));
ui->cmbProtocolType->addItem(tr("any protocol"), qVariantFromValue(EnabledProtocolItem::Any));
ui->cmbProtocolType->addItem(tr("non-heuristic protocols"), qVariantFromValue(EnabledProtocolItem::Standard));
ui->cmbProtocolType->addItem(tr("heuristic protocols"), qVariantFromValue(EnabledProtocolItem::Heuristic));
QTimer::singleShot(0, this, SLOT(fillTree()));
}
EnabledProtocolsDialog::~EnabledProtocolsDialog()
{
delete ui;
delete proxyModel_;
delete enabled_protocols_model_;
}
void EnabledProtocolsDialog::fillTree()
{
enabled_protocols_model_->populate();
//it's recommended to sort after list is populated
proxyModel_->sort(EnabledProtocolsModel::colProtocol);
ui->protocol_tree_->expandAll();
}
void EnabledProtocolsDialog::on_invert_button__clicked()
{
proxyModel_->setItemsEnable(EnabledProtocolsProxyModel::Invert);
ui->protocol_tree_->expandAll();
}
void EnabledProtocolsDialog::on_enable_all_button__clicked()
{
proxyModel_->setItemsEnable(EnabledProtocolsProxyModel::Enable);
ui->protocol_tree_->expandAll();
}
void EnabledProtocolsDialog::on_disable_all_button__clicked()
{
proxyModel_->setItemsEnable(EnabledProtocolsProxyModel::Disable);
ui->protocol_tree_->expandAll();
}
void EnabledProtocolsDialog::searchFilterChange()
{
EnabledProtocolsProxyModel::SearchType type = EnabledProtocolsProxyModel::EveryWhere;
EnabledProtocolItem::EnableProtocolType protocol = EnabledProtocolItem::Any;
QString search_re = ui->search_line_edit_->text();
if ( ui->cmbSearchType->currentData().canConvert<EnabledProtocolsProxyModel::SearchType>() )
type = ui->cmbSearchType->currentData().value<EnabledProtocolsProxyModel::SearchType>();
if ( ui->cmbProtocolType->currentData().canConvert<EnabledProtocolItem::EnableProtocolType>() )
protocol = ui->cmbProtocolType->currentData().value<EnabledProtocolItem::EnableProtocolType>();
proxyModel_->setFilter(search_re, type, protocol);
/* If items are filtered out, then filtered back in, the tree remains collapsed
Force an expansion */
ui->protocol_tree_->expandAll();
}
void EnabledProtocolsDialog::on_search_line_edit__textChanged(const QString &)
{
searchFilterChange();
}
void EnabledProtocolsDialog::on_cmbSearchType_currentIndexChanged(int)
{
searchFilterChange();
}
void EnabledProtocolsDialog::on_cmbProtocolType_currentIndexChanged(int)
{
searchFilterChange();
}
void EnabledProtocolsDialog::on_buttonBox_accepted()
{
enabled_protocols_model_->applyChanges();
}
#if 0
// If we ever find and fix the bug behind queueAppSignal we can re-enable
// this.
void EnabledProtocolsDialog::on_buttonBox_clicked(QAbstractButton *button)
{
if (button == ui->buttonBox->button(QDialogButtonBox::Apply))
{
applyChanges(TRUE);
}
}
#endif
void EnabledProtocolsDialog::on_buttonBox_helpRequested()
{
wsApp->helpTopicAction(HELP_ENABLED_PROTOCOLS_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:
*/