X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatitem.cpp;h=fcdbca49ec9baeecf7859e1b6240349fbea79a8b;hp=ed24bbaf72ce687f284fddf2a44c0d31229c56ff;hb=7e76b93191c8f19c24709f36992c99f8ee9d508d;hpb=0125cf23d570d2b8ee4d3fd5407364cf6c5769df diff --git a/src/qtui/chatitem.cpp b/src/qtui/chatitem.cpp index ed24bbaf..fcdbca49 100644 --- a/src/qtui/chatitem.cpp +++ b/src/qtui/chatitem.cpp @@ -289,14 +289,18 @@ void ChatItem::mousePressEvent(QGraphicsSceneMouseEvent *event) { void ChatItem::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { if(_selectionMode != NoSelection && !event->buttons() & Qt::LeftButton) { - QString selection - = data(MessageModel::DisplayRole).toString().mid(qMin(_selectionStart, _selectionEnd), qAbs(_selectionStart - _selectionEnd)); - chatScene()->putToClipboard(selection); + chatScene()->selectionToClipboard(QClipboard::Selection); event->accept(); } else event->ignore(); } +void ChatItem::addActionsToMenu(QMenu *menu, const QPointF &pos) { + Q_UNUSED(menu); + Q_UNUSED(pos); + +} + // ************************************************************ // SenderChatItem // ************************************************************ @@ -349,6 +353,9 @@ void SenderChatItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *op // ************************************************************ // ContentsChatItem // ************************************************************ + +ContentsChatItem::ActionProxy ContentsChatItem::_actionProxy; + ContentsChatItem::ContentsChatItem(const qreal &width, const QPointF &pos, QGraphicsItem *parent) : ChatItem(0, 0, pos, parent) { @@ -559,29 +566,34 @@ void ContentsChatItem::hoverMoveEvent(QGraphicsSceneHoverEvent *event) { event->accept(); } -void ContentsChatItem::contextMenuEvent(QGraphicsSceneContextMenuEvent *event) { - qint16 idx = posToCursor(event->pos()); - for(int i = 0; i < privateData()->clickables.count(); i++) { - Clickable click = privateData()->clickables.at(i); - if(idx >= click.start && idx < click.start + click.length) { - if(click.type == Clickable::Url) { - QMenu menu; - QAction *copyToClipboard = menu.addAction(QObject::tr("Copy to Clipboard")); - QAction *selected = menu.exec(event->screenPos()); - if(selected == copyToClipboard) { - QString url = data(ChatLineModel::DisplayRole).toString().mid(click.start, click.length); -# ifdef Q_WS_X11 - QApplication::clipboard()->setText(url, QClipboard::Selection); -# endif -//# else - QApplication::clipboard()->setText(url); -//# endif - } - } +void ContentsChatItem::addActionsToMenu(QMenu *menu, const QPointF &pos) { + Q_UNUSED(pos); // we assume that the current mouse cursor pos is the point of invocation + + if(privateData()->currentClickable.isValid()) { + switch(privateData()->currentClickable.type) { + case Clickable::Url: + privateData()->activeClickable = privateData()->currentClickable; + menu->addAction(tr("Copy Link Address"), &_actionProxy, SLOT(copyLinkToClipboard()))->setData(QVariant::fromValue(this)); + break; + + default: + break; } } } +void ContentsChatItem::copyLinkToClipboard() { + Clickable click = privateData()->activeClickable; + if(click.isValid() && click.type == Clickable::Url) { + QString url = data(ChatLineModel::DisplayRole).toString().mid(click.start, click.length); + if(!url.contains("://")) + url = "http://" + url; + chatScene()->stringToClipboard(url); + } +} + +/******** WEB PREVIEW *****************************************************************************/ + void ContentsChatItem::showWebPreview(const Clickable &click) { #ifndef HAVE_WEBKIT Q_UNUSED(click); @@ -673,3 +685,5 @@ qint16 ContentsChatItem::WrapColumnFinder::nextWrapColumn() { return -1; } +/*************************************************************************************************/ +