X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fstyledlabel.cpp;h=1d590f21b0f323a2292e28f52e5f39696039635b;hb=f9efdde7f3a6004af8f834c409cfa6ae1d877692;hp=90af6e6c6e2fe4c756018c57595f8cb43a75bec7;hpb=921e54680da16fcf2adb7a90506875aceb6633a4;p=quassel.git diff --git a/src/uisupport/styledlabel.cpp b/src/uisupport/styledlabel.cpp index 90af6e6c..1d590f21 100644 --- a/src/uisupport/styledlabel.cpp +++ b/src/uisupport/styledlabel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -28,10 +28,7 @@ StyledLabel::StyledLabel(QWidget *parent) : QFrame(parent), - _wrapMode(QTextOption::NoWrap), - _alignment(Qt::AlignVCenter|Qt::AlignLeft), - _toolTipEnabled(true), - _resizeMode(NoResize) + _alignment(Qt::AlignVCenter|Qt::AlignLeft) { setMouseTracking(true); @@ -122,8 +119,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,11 +153,7 @@ void StyledLabel::setText(const QString &text) void StyledLabel::updateToolTip() { if (frameRect().width() - 2*frameWidth() < _layout.minimumWidth()) -#if QT_VERSION < 0x050000 - setToolTip(QString("%1").arg(Qt::escape(_layout.text()))); // only rich text gets wordwrapped! -#else setToolTip(QString("%1").arg(_layout.text().toHtmlEscaped())); // only rich text gets wordwrapped! -#endif else setToolTip(QString()); } @@ -216,11 +209,7 @@ int StyledLabel::posToCursor(const QPointF &pos) void StyledLabel::mouseMoveEvent(QMouseEvent *event) { if (event->buttons() == Qt::NoButton) { -#if QT_VERSION < 0x050000 - Clickable click = _clickables.atCursorPos(posToCursor(event->posF())); -#else Clickable click = _clickables.atCursorPos(posToCursor(event->localPos())); -#endif if (click.isValid()) setHoverMode(click.start(), click.length()); else @@ -247,11 +236,7 @@ void StyledLabel::leaveEvent(QEvent *) void StyledLabel::mousePressEvent(QMouseEvent *event) { if (event->button() == Qt::LeftButton) { -#if QT_VERSION < 0x050000 - Clickable click = _clickables.atCursorPos(posToCursor(event->posF())); -#else Clickable click = _clickables.atCursorPos(posToCursor(event->localPos())); -#endif if (click.isValid()) emit clickableActivated(click); }