mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
138 lines
4 KiB
C++
138 lines
4 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2007 by Joris Guisson and Ivan Vasic *
|
|
* joris.guisson@gmail.com *
|
|
* ivasic@gmail.com *
|
|
* *
|
|
* 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 "peerview.h"
|
|
|
|
#include <QHeaderView>
|
|
#include <klocale.h>
|
|
#include <kicon.h>
|
|
#include <kmenu.h>
|
|
#include <kstandarddirs.h>
|
|
#include <kconfiggroup.h>
|
|
#include <interfaces/peerinterface.h>
|
|
#include <peer/accessmanager.h>
|
|
#include <util/functions.h>
|
|
#include "peerviewmodel.h"
|
|
|
|
using namespace bt;
|
|
|
|
namespace kt
|
|
{
|
|
|
|
|
|
PeerView::PeerView(QWidget* parent) : QTreeView(parent)
|
|
{
|
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
|
setRootIsDecorated(false);
|
|
setSortingEnabled(true);
|
|
setAlternatingRowColors(true);
|
|
setUniformRowHeights(true);
|
|
|
|
model = new PeerViewModel(this);
|
|
setModel(model);
|
|
|
|
context_menu = new KMenu(this);
|
|
context_menu->addAction(KIcon("list-remove-user"),i18n("Kick Peer"),this,SLOT(kickPeer()));
|
|
context_menu->addAction(KIcon("view-filter"),i18n("Ban Peer"),this,SLOT(banPeer()));
|
|
connect(this,SIGNAL(customContextMenuRequested(QPoint)),
|
|
this,SLOT(showContextMenu(QPoint)));
|
|
}
|
|
|
|
PeerView::~PeerView()
|
|
{
|
|
}
|
|
|
|
void PeerView::showContextMenu(const QPoint& pos)
|
|
{
|
|
if (selectionModel()->selectedRows().count() == 0)
|
|
return;
|
|
|
|
context_menu->popup(mapToGlobal(pos));
|
|
}
|
|
|
|
void PeerView::banPeer()
|
|
{
|
|
AccessManager & aman = AccessManager::instance();
|
|
|
|
QModelIndexList indices = selectionModel()->selectedRows();
|
|
foreach (const QModelIndex &idx,indices)
|
|
{
|
|
bt::PeerInterface* peer = model->indexToPeer(idx);
|
|
if (peer)
|
|
{
|
|
aman.banPeer(peer->getStats().ip_address);
|
|
peer->kill();
|
|
}
|
|
}
|
|
}
|
|
|
|
void PeerView::kickPeer()
|
|
{
|
|
QModelIndexList indices = selectionModel()->selectedRows();
|
|
foreach (const QModelIndex &idx,indices)
|
|
{
|
|
bt::PeerInterface* peer = model->indexToPeer(idx);
|
|
if (peer)
|
|
peer->kill();
|
|
}
|
|
}
|
|
|
|
void PeerView::peerAdded(PeerInterface* peer)
|
|
{
|
|
model->peerAdded(peer);
|
|
}
|
|
|
|
void PeerView::peerRemoved(PeerInterface* peer)
|
|
{
|
|
model->peerRemoved(peer);
|
|
}
|
|
|
|
void PeerView::update()
|
|
{
|
|
model->update();
|
|
}
|
|
|
|
void PeerView::removeAll()
|
|
{
|
|
model->clear();
|
|
}
|
|
|
|
void PeerView::saveState(KSharedConfigPtr cfg)
|
|
{
|
|
KConfigGroup g = cfg->group("PeerView");
|
|
QByteArray s = header()->saveState();
|
|
g.writeEntry("state",s.toBase64());
|
|
}
|
|
|
|
void PeerView::loadState(KSharedConfigPtr cfg)
|
|
{
|
|
KConfigGroup g = cfg->group("PeerView");
|
|
QByteArray s = QByteArray::fromBase64(g.readEntry("state",QByteArray()));
|
|
if (!s.isNull())
|
|
{
|
|
QHeaderView* v = header();
|
|
v->restoreState(s);
|
|
sortByColumn(v->sortIndicatorSection(),v->sortIndicatorOrder());
|
|
model->sort(v->sortIndicatorSection(),v->sortIndicatorOrder());
|
|
}
|
|
}
|
|
}
|
|
|
|
#include "peerview.moc"
|