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
|
/*
connectionstab.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2014 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Volker Krause <volker.krause@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include "connectionstab.h"
#include "ui_connectionstab.h"
#include "connectionsclientproxymodel.h"
#include <ui/propertywidget.h>
#include <ui/searchlinecontroller.h>
#include <common/objectbroker.h>
#include <common/tools/objectinspector/connectionsextensioninterface.h>
#include <common/tools/objectinspector/connectionsmodelroles.h>
#include <QDebug>
#include <QMenu>
using namespace GammaRay;
ConnectionsTab::ConnectionsTab(PropertyWidget *parent)
: QWidget(parent)
, ui(new Ui::ConnectionsTab)
{
m_interface = ObjectBroker::object<ConnectionsExtensionInterface *>(
parent->objectBaseName() + ".connectionsExtension");
ui->setupUi(this);
ui->inboundView->header()->setObjectName("inboundViewHeader");
ui->outboundView->header()->setObjectName("outboundViewHeader");
QSortFilterProxyModel *proxy = new ConnectionsClientProxyModel(this);
proxy->setDynamicSortFilter(true);
proxy->setSourceModel(ObjectBroker::model(parent->objectBaseName() + ".inboundConnections"));
ui->inboundView->setModel(proxy);
ui->inboundView->sortByColumn(0, Qt::AscendingOrder);
new SearchLineController(ui->inboundSearchLine, proxy);
connect(ui->inboundView, &QWidget::customContextMenuRequested,
this, &ConnectionsTab::inboundContextMenu);
proxy = new ConnectionsClientProxyModel(this);
proxy->setDynamicSortFilter(true);
proxy->setSourceModel(ObjectBroker::model(parent->objectBaseName() + ".outboundConnections"));
ui->outboundView->setModel(proxy);
ui->outboundView->sortByColumn(0, Qt::AscendingOrder);
new SearchLineController(ui->outboundSearchLine, proxy);
connect(ui->outboundView, &QWidget::customContextMenuRequested,
this, &ConnectionsTab::outboundContextMenu);
}
ConnectionsTab::~ConnectionsTab() = default;
static int mapToSourceRow(const QModelIndex &index)
{
QModelIndex i = index;
while (const QAbstractProxyModel *proxy = qobject_cast<const QAbstractProxyModel *>(i.model()))
i = proxy->mapToSource(i);
return i.row();
}
void ConnectionsTab::inboundContextMenu(const QPoint &pos)
{
const QModelIndex index = ui->inboundView->currentIndex();
if (!index.isValid() || index.data(ConnectionsModelRoles::ActionRole).toInt() == 0)
return;
QMenu menu;
menu.addAction(tr("Go to sender"));
if (menu.exec(ui->inboundView->viewport()->mapToGlobal(pos)))
m_interface->navigateToSender(mapToSourceRow(index));
}
void ConnectionsTab::outboundContextMenu(const QPoint &pos)
{
const QModelIndex index = ui->outboundView->currentIndex();
if (!index.isValid() || index.data(ConnectionsModelRoles::ActionRole).toInt() == 0)
return;
QMenu menu;
menu.addAction(tr("Go to receiver"));
if (menu.exec(ui->outboundView->viewport()->mapToGlobal(pos)))
m_interface->navigateToReceiver(mapToSourceRow(index));
}
|