X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fclickable.cpp;fp=src%2Fuisupport%2Fclickable.cpp;h=54fa9b82eeb5668656b1a0bc0e8f29ad9d646bf2;hp=d19083c825a76f838aed8a2f67b533c187e65a4b;hb=f662db526c93bd3411509317d665b4f69c6832a0;hpb=ff56d5b1c3f4b542fcb13afc26d7a862385bc195 diff --git a/src/uisupport/clickable.cpp b/src/uisupport/clickable.cpp index d19083c8..54fa9b82 100644 --- a/src/uisupport/clickable.cpp +++ b/src/uisupport/clickable.cpp @@ -18,7 +18,33 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#include +#include +#include + +#include "buffermodel.h" #include "clickable.h" +#include "client.h" + +void Clickable::activate(NetworkId networkId, const QString &text) const { + if(!isValid()) + return; + + QString str = text.mid(start(), length()); + + switch(type()) { + case Clickable::Url: + if(!str.contains("://")) + str = "http://" + str; + QDesktopServices::openUrl(QUrl::fromEncoded(str.toUtf8(), QUrl::TolerantMode)); + break; + case Clickable::Channel: + Client::bufferModel()->switchToOrJoinBuffer(networkId, str); + break; + default: + break; + } +} // NOTE: This method is not threadsafe and not reentrant! // (RegExps are not constant while matching, and they are static here for efficiency) @@ -84,3 +110,11 @@ ClickableList ClickableList::fromString(const QString &str) { } while(type >= 0); return result; } + +Clickable ClickableList::atCursorPos(int idx) { + foreach(const Clickable &click, *this) { + if(idx >= click.start() && idx < click.start() + click.length()) + return click; + } + return Clickable(); +}