X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fstyledlabel.cpp;h=6e2361b0bde53e96b26279ba19c41b361f05fe1a;hb=6718d7a1ccd42d7aae75e57d6974e0b1e0384044;hp=1a56daadd36fafa503f2d5c1c3d44ee1d33e12ba;hpb=4a5065255e652dd0c301bac0db41b7afb777ef49;p=quassel.git diff --git a/src/uisupport/styledlabel.cpp b/src/uisupport/styledlabel.cpp index 1a56daad..6e2361b0 100644 --- a/src/uisupport/styledlabel.cpp +++ b/src/uisupport/styledlabel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -122,8 +122,8 @@ void StyledLabel::setText(const QString &text) { UiStyle *style = GraphicalUi::uiStyle(); - UiStyle::StyledString sstr = style->styleString(style->mircToInternal(text), UiStyle::PlainMsg); - QList layoutList = style->toTextLayoutList(sstr.formatList, sstr.plainText.length(), 0); + UiStyle::StyledString sstr = style->styleString(style->mircToInternal(text), UiStyle::FormatType::PlainMsg); + QList layoutList = style->toTextLayoutList(sstr.formatList, sstr.plainText.length(), UiStyle::MessageLabel::None); // Use default font rather than the style's QTextLayout::FormatRange fmtRange; @@ -156,7 +156,7 @@ void StyledLabel::setText(const QString &text) void StyledLabel::updateToolTip() { if (frameRect().width() - 2*frameWidth() < _layout.minimumWidth()) - setToolTip(QString("%1").arg(Qt::escape(_layout.text()))); // only rich text gets wordwrapped! + setToolTip(QString("%1").arg(_layout.text().toHtmlEscaped())); // only rich text gets wordwrapped! else setToolTip(QString()); } @@ -212,7 +212,7 @@ int StyledLabel::posToCursor(const QPointF &pos) void StyledLabel::mouseMoveEvent(QMouseEvent *event) { if (event->buttons() == Qt::NoButton) { - Clickable click = _clickables.atCursorPos(posToCursor(event->posF())); + Clickable click = _clickables.atCursorPos(posToCursor(event->localPos())); if (click.isValid()) setHoverMode(click.start(), click.length()); else @@ -239,7 +239,7 @@ void StyledLabel::leaveEvent(QEvent *) void StyledLabel::mousePressEvent(QMouseEvent *event) { if (event->button() == Qt::LeftButton) { - Clickable click = _clickables.atCursorPos(posToCursor(event->posF())); + Clickable click = _clickables.atCursorPos(posToCursor(event->localPos())); if (click.isValid()) emit clickableActivated(click); }