syncthingtray/tray/gui/devview.cpp
Martchus 975e86c895 Allow backend libraries to be used from other projects
So far the backend libraries' include paths were relative within this
repository. This means the header files could not be used at their
installed location.

This change replaces them with "<>" includes to fix that problem and adds
a new include directory so building everything at once still works.

With this change it should be easier to actually split some parts into
another repository if this one would become too big.
2021-01-25 19:48:11 +01:00

86 lines
3.2 KiB
C++

#include "./devview.h"
#include "./devbuttonsitemdelegate.h"
#include "./helper.h"
#include <syncthingconnector/syncthingdev.h>
#include <syncthingmodel/syncthingdevicemodel.h>
#include <syncthingmodel/syncthingsortfiltermodel.h>
#include <QClipboard>
#include <QGuiApplication>
#include <QHeaderView>
#include <QMenu>
#include <QMouseEvent>
using namespace Data;
namespace QtGui {
DevView::DevView(QWidget *parent)
: QTreeView(parent)
{
header()->setSectionResizeMode(QHeaderView::ResizeToContents);
header()->hide();
setItemDelegateForColumn(1, new DevButtonsItemDelegate(this));
setContextMenuPolicy(Qt::CustomContextMenu);
connect(this, &DevView::customContextMenuRequested, this, &DevView::showContextMenu);
}
void DevView::mouseReleaseEvent(QMouseEvent *event)
{
QTreeView::mouseReleaseEvent(event);
const auto pos = event->pos();
const auto clickedRow = ClickedRow(this, pos);
if (!clickedRow) {
return;
}
if (clickedRow.index.parent().isValid()) {
return;
}
const auto itemRect = visualRect(clickedRow.proxyIndex);
if (pos.x() > itemRect.right() - 17) {
emit pauseResumeDev(*clickedRow.data);
}
}
void DevView::showContextMenu(const QPoint &position)
{
const auto selectedRow = SelectedRow(this);
const auto &selectedIndex = selectedRow.index;
if (!selectedRow) {
return;
}
QMenu menu(this);
if (selectedIndex.parent().isValid()) {
connect(menu.addAction(QIcon::fromTheme(QStringLiteral("edit-copy"), QIcon(QStringLiteral(":/icons/hicolor/scalable/actions/edit-copy.svg"))),
tr("Copy value")),
&QAction::triggered,
copyToClipboard(selectedRow.model->data(selectedRow.model->index(selectedIndex.row(), 1, selectedIndex.parent())).toString()));
} else {
const auto *const dev = selectedRow.data;
connect(menu.addAction(QIcon::fromTheme(QStringLiteral("edit-copy"), QIcon(QStringLiteral(":/icons/hicolor/scalable/actions/edit-copy.svg"))),
tr("Copy name")),
&QAction::triggered, copyToClipboard(dev->displayName()));
connect(menu.addAction(QIcon::fromTheme(QStringLiteral("edit-copy"), QIcon(QStringLiteral(":/icons/hicolor/scalable/actions/edit-copy.svg"))),
tr("Copy ID")),
&QAction::triggered, copyToClipboard(dev->id));
menu.addSeparator();
if (dev->paused) {
connect(menu.addAction(QIcon::fromTheme(QStringLiteral("media-playback-start"),
QIcon(QStringLiteral(":/icons/hicolor/scalable/actions/media-playback-start.svg"))),
tr("Resume")),
&QAction::triggered, triggerActionForSelectedRow(this, &DevView::pauseResumeDev));
} else {
connect(menu.addAction(QIcon::fromTheme(QStringLiteral("media-playback-pause"),
QIcon(QStringLiteral(":/icons/hicolor/scalable/actions/media-playback-pause.svg"))),
tr("Pause")),
&QAction::triggered, triggerActionForSelectedRow(this, &DevView::pauseResumeDev));
}
}
showViewMenu(position, *this, menu);
}
} // namespace QtGui