/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2011 nowrep * * 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 3 of the License, or * (at your option) any later version. * * 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, see . * ============================================================ */ #include "statusbarmessage.h" #include "qupzilla.h" #include "squeezelabelv1.h" TipLabel::TipLabel(QupZilla* parent) : SqueezeLabelV1(parent) , p_QupZilla(parent) { m_timer = new QTimer(); m_timer->setInterval(300); connect(m_timer, SIGNAL(timeout()), this, SLOT(checkMainWindowFocus())); setWindowFlags(Qt::ToolTip); setForegroundRole(QPalette::ToolTipText); setBackgroundRole(QPalette::ToolTipBase); setPalette(QToolTip::palette()); ensurePolished(); setFrameStyle(QFrame::NoFrame); setMargin(2); } void TipLabel::paintEvent(QPaintEvent *ev) { QStylePainter p(this); QStyleOptionFrame opt; opt.init(this); p.drawPrimitive(QStyle::PE_PanelTipLabel, opt); p.end(); SqueezeLabelV1::paintEvent(ev); } void TipLabel::show() { if (!p_QupZilla->weView()->hasFocus()) return; m_timer->start(); SqueezeLabelV1::show(); } void TipLabel::hide() { m_timer->stop(); SqueezeLabelV1::hide(); } void TipLabel::checkMainWindowFocus() { if (!p_QupZilla->weView()->hasFocus()) hide(); } StatusBarMessage::StatusBarMessage(QupZilla* mainClass) : QObject() , p_QupZilla(mainClass) { m_statusBarText = new TipLabel(mainClass); } #define STATUS_Y_OFFSET -35 #define STATUS_X_OFFSET +3 #define STATUS_TOOLTIP_WIDTH_OFFSET -20 void StatusBarMessage::showMessage(const QString &message) { if (p_QupZilla->statusBar()->isVisible()) { p_QupZilla->statusBar()->showMessage(message); } else { QPoint position = p_QupZilla->weView()->mapToGlobal(p_QupZilla->weView()->pos()); position.setY( p_QupZilla->weView()->size().height() + position.y() STATUS_Y_OFFSET); position.setX(position.x() STATUS_X_OFFSET); m_statusBarText->move(position); m_statusBarText->setMaximumWidth(p_QupZilla->size().width() STATUS_TOOLTIP_WIDTH_OFFSET); m_statusBarText->setText(message); m_statusBarText->resize(m_statusBarText->sizeHint()); m_statusBarText->show(); } } void StatusBarMessage::clearMessage() { if (p_QupZilla->statusBar()->isVisible()) p_QupZilla->statusBar()->showMessage(""); else m_statusBarText->hide(); }