X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fstyledlabel.cpp;h=e6c0712c706abaf792417adbb1511167ca25f1bf;hp=cf3822966bf8c0912f22777b52e4e9c225382adb;hb=8c0ef4c0ef888da1a1c409c9def063cadbfb707b;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/uisupport/styledlabel.cpp b/src/uisupport/styledlabel.cpp index cf382296..e6c0712c 100644 --- a/src/uisupport/styledlabel.cpp +++ b/src/uisupport/styledlabel.cpp @@ -1,22 +1,22 @@ /*************************************************************************** -* Copyright (C) 2005-09 by the Quassel Project * -* devel@quassel-irc.org * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) version 3. * -* * -* This program is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU General Public License for more details. * -* * -* You should have received a copy of the GNU General Public License * -* along with this program; if not, write to the * -* Free Software Foundation, Inc., * -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * -***************************************************************************/ + * Copyright (C) 2005-2014 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ #include #include @@ -156,7 +156,11 @@ 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()); } @@ -212,7 +216,11 @@ 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 @@ -239,7 +247,11 @@ 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); }