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
|
/*
Author: Marco Costalba (C) 2005-2007
Copyright: See COPYING file that comes with this distribution
*/
#include <QApplication>
#include <QMenu>
#include <QContextMenuEvent>
#include <QRegExp>
#include <QClipboard>
#include "domain.h"
#include "revdesc.h"
RevDesc::RevDesc(QWidget* p) : QTextBrowser(p), d(NULL) {
connect(this, SIGNAL(anchorClicked(const QUrl&)),
this, SLOT(on_anchorClicked(const QUrl&)));
connect(this, SIGNAL(highlighted(const QUrl&)),
this, SLOT(on_highlighted(const QUrl&)));
}
void RevDesc::on_anchorClicked(const QUrl& link) {
QRegExp re("[0-9a-f]{40}", Qt::CaseInsensitive);
if (re.exactMatch(link.toString())) {
setSource(QUrl()); // override default navigation behavior
d->st.setSha(link.toString());
UPDATE_DOMAIN(d);
}
}
void RevDesc::on_highlighted(const QUrl& link) {
highlightedLink = link.toString();
}
void RevDesc::on_linkCopy() {
QClipboard* cb = QApplication::clipboard();
cb->setText(highlightedLink);
}
void RevDesc::contextMenuEvent(QContextMenuEvent* e) {
QMenu* menu = createStandardContextMenu();
if (!highlightedLink.isEmpty()) {
QAction* act = menu->addAction("Copy link SHA1");
connect(act, SIGNAL(triggered()), this, SLOT(on_linkCopy()));
}
menu->exec(e->globalPos());
delete menu;
}
|