plasma-framework/private/focusindicator.cpp

118 lines
3.4 KiB
C++
Raw Normal View History

/*
* Copyright 2009 Marco Martin <notmart@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2, 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 Library 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 "focusindicator_p.h"
#include <QGraphicsSceneResizeEvent>
#include <plasma/theme.h>
#include <plasma/framesvg.h>
#include <plasma/animations/fade.h>
namespace Plasma
{
FocusIndicator::FocusIndicator(QGraphicsWidget *parent)
: QGraphicsWidget(parent),
m_parent(parent)
{
setFlag(QGraphicsItem::ItemStacksBehindParent);
setAcceptsHoverEvents(true);
m_background = new Plasma::FrameSvg(this);
m_background->setImagePath("widgets/lineedit");
m_background->setElementPrefix("hover");
m_background->setCacheAllRenderedFrames(true);
m_fadeIn = new FadeAnimation(1.0);
m_fadeIn->setAnimatedWidget(this);
m_fadeOut = new FadeAnimation(0.0);
m_fadeOut->setAnimatedWidget(this);
setOpacity(0);
parent->installEventFilter(this);
connect(Plasma::Theme::defaultTheme(), SIGNAL(themeChanged()), SLOT(syncGeometry()));
syncGeometry();
}
FocusIndicator::~FocusIndicator()
{
delete m_fadeIn;
delete m_fadeOut;
}
void FocusIndicator::setCustomGeometry(const QRectF &geometry)
{
m_customGeometry = geometry;
syncGeometry();
}
bool FocusIndicator::eventFilter(QObject *watched, QEvent *event)
{
if (static_cast<QGraphicsWidget *>(watched) != m_parent) {
return false;
}
if (!m_parent->hasFocus() && event->type() == QEvent::GraphicsSceneHoverEnter) {
m_background->setElementPrefix("hover");
m_fadeIn->start();
} else if (!m_parent->hasFocus() && event->type() == QEvent::GraphicsSceneHoverLeave) {
m_fadeOut->start();
} else if (event->type() == QEvent::GraphicsSceneResize) {
syncGeometry();
} else if (event->type() == QEvent::FocusIn) {
m_background->setElementPrefix("focus");
m_fadeIn->start();
} else if (!m_parent->isUnderMouse() && event->type() == QEvent::FocusOut) {
m_fadeOut->start();
}
return false;
}
void FocusIndicator::resizeEvent(QGraphicsSceneResizeEvent *event)
{
m_background->resizeFrame(event->newSize());
}
void FocusIndicator::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
Q_UNUSED(option)
Q_UNUSED(widget)
m_background->paintFrame(painter);
}
void FocusIndicator::syncGeometry()
{
QRectF geom;
if (!m_customGeometry.isNull()) {
geom = m_customGeometry;
} else {
geom = m_parent->boundingRect();
}
qreal left, top, right, bottom;
m_background->getMargins(left, top, right, bottom);
setGeometry(QRectF(geom.topLeft() + QPointF(-left, -top), geom.size() + QSize(left+right, top+bottom)));
}
}
#include <focusindicator_p.moc>