2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2010-03-05 11:25:49 +01:00
|
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "fancylineedit.h"
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QEvent>
|
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
#include <QtGui/QApplication>
|
|
|
|
|
#include <QtGui/QMenu>
|
|
|
|
|
#include <QtGui/QMouseEvent>
|
|
|
|
|
#include <QtGui/QLabel>
|
|
|
|
|
|
|
|
|
|
enum { margin = 6 };
|
|
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
|
|
|
|
|
static inline QString sideToStyleSheetString(FancyLineEdit::Side side)
|
|
|
|
|
{
|
|
|
|
|
return side == FancyLineEdit::Left ? QLatin1String("left") : QLatin1String("right");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Format style sheet for the label containing the pixmap. It has a margin on
|
|
|
|
|
// the outer side of the whole FancyLineEdit.
|
|
|
|
|
static QString labelStyleSheet(FancyLineEdit::Side side)
|
|
|
|
|
{
|
|
|
|
|
QString rc = QLatin1String("QLabel { margin-");
|
|
|
|
|
rc += sideToStyleSheetString(side);
|
|
|
|
|
rc += QLatin1String(": ");
|
|
|
|
|
rc += QString::number(margin);
|
|
|
|
|
rc += QLatin1Char('}');
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------- FancyLineEditPrivate as QObject with label
|
|
|
|
|
// event filter
|
|
|
|
|
|
|
|
|
|
class FancyLineEditPrivate : public QObject {
|
|
|
|
|
public:
|
2009-11-27 13:54:27 +01:00
|
|
|
explicit FancyLineEditPrivate(FancyLineEdit *parent);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
virtual bool eventFilter(QObject *obj, QEvent *event);
|
|
|
|
|
|
|
|
|
|
const QString m_leftLabelStyleSheet;
|
|
|
|
|
const QString m_rightLabelStyleSheet;
|
|
|
|
|
|
2009-11-27 13:54:27 +01:00
|
|
|
FancyLineEdit *m_lineEdit;
|
2008-12-02 12:01:29 +01:00
|
|
|
QPixmap m_pixmap;
|
|
|
|
|
QMenu *m_menu;
|
|
|
|
|
QLabel *m_menuLabel;
|
|
|
|
|
FancyLineEdit::Side m_side;
|
|
|
|
|
bool m_useLayoutDirection;
|
|
|
|
|
bool m_menuTabFocusTrigger;
|
|
|
|
|
QString m_hintText;
|
|
|
|
|
bool m_showingHintText;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2009-11-27 13:54:27 +01:00
|
|
|
FancyLineEditPrivate::FancyLineEditPrivate(FancyLineEdit *parent) :
|
2008-12-02 12:01:29 +01:00
|
|
|
QObject(parent),
|
|
|
|
|
m_leftLabelStyleSheet(labelStyleSheet(FancyLineEdit::Left)),
|
|
|
|
|
m_rightLabelStyleSheet(labelStyleSheet(FancyLineEdit::Right)),
|
|
|
|
|
m_lineEdit(parent),
|
|
|
|
|
m_menu(0),
|
|
|
|
|
m_menuLabel(0),
|
|
|
|
|
m_side(FancyLineEdit::Left),
|
|
|
|
|
m_useLayoutDirection(false),
|
|
|
|
|
m_menuTabFocusTrigger(false),
|
|
|
|
|
m_showingHintText(false)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FancyLineEditPrivate::eventFilter(QObject *obj, QEvent *event)
|
|
|
|
|
{
|
2009-11-27 13:54:27 +01:00
|
|
|
if (obj != m_menuLabel)
|
2008-12-02 12:01:29 +01:00
|
|
|
return QObject::eventFilter(obj, event);
|
|
|
|
|
|
|
|
|
|
switch (event->type()) {
|
|
|
|
|
case QEvent::MouseButtonPress: {
|
|
|
|
|
const QMouseEvent *me = static_cast<QMouseEvent *>(event);
|
2009-11-27 13:54:27 +01:00
|
|
|
if (m_menu) {
|
|
|
|
|
m_menu->exec(me->globalPos());
|
|
|
|
|
} else {
|
|
|
|
|
emit m_lineEdit->buttonClicked();
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
case QEvent::FocusIn:
|
2009-11-27 13:54:27 +01:00
|
|
|
if (m_menuTabFocusTrigger && m_menu) {
|
2008-12-02 12:01:29 +01:00
|
|
|
m_lineEdit->setFocus();
|
|
|
|
|
m_menu->exec(m_menuLabel->mapToGlobal(m_menuLabel->rect().center()));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return QObject::eventFilter(obj, event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------- FancyLineEdit
|
|
|
|
|
FancyLineEdit::FancyLineEdit(QWidget *parent) :
|
|
|
|
|
QLineEdit(parent),
|
|
|
|
|
m_d(new FancyLineEditPrivate(this))
|
|
|
|
|
{
|
|
|
|
|
m_d->m_menuLabel = new QLabel(this);
|
|
|
|
|
m_d->m_menuLabel->installEventFilter(m_d);
|
|
|
|
|
updateMenuLabel();
|
|
|
|
|
showHintText();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FancyLineEdit::~FancyLineEdit()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Position the menu label left or right according to size.
|
|
|
|
|
// Called when switching side and from resizeEvent.
|
|
|
|
|
void FancyLineEdit::positionMenuLabel()
|
|
|
|
|
{
|
|
|
|
|
switch (side()) {
|
|
|
|
|
case Left:
|
|
|
|
|
m_d->m_menuLabel->setGeometry(0, 0, m_d->m_pixmap.width()+margin, height());
|
|
|
|
|
break;
|
|
|
|
|
case Right:
|
|
|
|
|
m_d->m_menuLabel->setGeometry(width() - m_d->m_pixmap.width() - margin, 0,
|
|
|
|
|
m_d->m_pixmap.width()+margin, height());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::updateStyleSheet(Side side)
|
|
|
|
|
{
|
|
|
|
|
// Udate the LineEdit style sheet. Make room for the label on the
|
|
|
|
|
// respective side and set color according to whether we are showing the
|
|
|
|
|
// hint text
|
|
|
|
|
QString sheet = QLatin1String("QLineEdit{ padding-");
|
|
|
|
|
sheet += sideToStyleSheetString(side);
|
|
|
|
|
sheet += QLatin1String(": ");
|
|
|
|
|
sheet += QString::number(m_d->m_pixmap.width() + margin);
|
|
|
|
|
sheet += QLatin1Char(';');
|
|
|
|
|
if (m_d->m_showingHintText)
|
|
|
|
|
sheet += QLatin1String(" color: #BBBBBB;");
|
2009-11-27 13:54:27 +01:00
|
|
|
// Fix the stylesheet's clearing the size hint.
|
2010-02-16 14:02:37 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
sheet += QLatin1Char('}');
|
|
|
|
|
setStyleSheet(sheet);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::updateMenuLabel()
|
|
|
|
|
{
|
|
|
|
|
m_d->m_menuLabel->setPixmap(m_d->m_pixmap);
|
|
|
|
|
const Side s = side();
|
|
|
|
|
switch (s) {
|
|
|
|
|
case Left:
|
|
|
|
|
m_d->m_menuLabel->setAlignment(Qt::AlignVCenter | Qt::AlignLeft);
|
|
|
|
|
m_d->m_menuLabel->setStyleSheet(m_d->m_leftLabelStyleSheet);
|
|
|
|
|
break;
|
|
|
|
|
case Right:
|
|
|
|
|
m_d->m_menuLabel->setAlignment(Qt::AlignVCenter | Qt::AlignRight);
|
|
|
|
|
m_d->m_menuLabel->setStyleSheet(m_d->m_rightLabelStyleSheet);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
updateStyleSheet(s);
|
|
|
|
|
positionMenuLabel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::setSide(Side side)
|
|
|
|
|
{
|
|
|
|
|
m_d->m_side = side;
|
|
|
|
|
updateMenuLabel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FancyLineEdit::Side FancyLineEdit::side() const
|
|
|
|
|
{
|
|
|
|
|
if (m_d->m_useLayoutDirection)
|
|
|
|
|
return qApp->layoutDirection() == Qt::LeftToRight ? Left : Right;
|
|
|
|
|
return m_d->m_side;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::resizeEvent(QResizeEvent *)
|
|
|
|
|
{
|
|
|
|
|
positionMenuLabel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::setPixmap(const QPixmap &pixmap)
|
|
|
|
|
{
|
|
|
|
|
m_d->m_pixmap = pixmap;
|
|
|
|
|
updateMenuLabel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QPixmap FancyLineEdit::pixmap() const
|
|
|
|
|
{
|
|
|
|
|
return m_d->m_pixmap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::setMenu(QMenu *menu)
|
|
|
|
|
{
|
|
|
|
|
m_d->m_menu = menu;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMenu *FancyLineEdit::menu() const
|
|
|
|
|
{
|
|
|
|
|
return m_d->m_menu;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FancyLineEdit::useLayoutDirection() const
|
|
|
|
|
{
|
|
|
|
|
return m_d->m_useLayoutDirection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::setUseLayoutDirection(bool v)
|
|
|
|
|
{
|
|
|
|
|
m_d->m_useLayoutDirection = v;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FancyLineEdit::isSideStored() const
|
|
|
|
|
{
|
|
|
|
|
return !m_d->m_useLayoutDirection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FancyLineEdit::hasMenuTabFocusTrigger() const
|
|
|
|
|
{
|
|
|
|
|
return m_d->m_menuTabFocusTrigger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::setMenuTabFocusTrigger(bool v)
|
|
|
|
|
{
|
|
|
|
|
if (m_d->m_menuTabFocusTrigger == v)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_d->m_menuTabFocusTrigger = v;
|
|
|
|
|
m_d->m_menuLabel->setFocusPolicy(v ? Qt::TabFocus : Qt::NoFocus);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FancyLineEdit::hintText() const
|
|
|
|
|
{
|
|
|
|
|
return m_d->m_hintText;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::setHintText(const QString &ht)
|
|
|
|
|
{
|
|
|
|
|
// Updating magic to make the property work in Designer.
|
|
|
|
|
if (ht == m_d->m_hintText)
|
|
|
|
|
return;
|
|
|
|
|
hideHintText();
|
|
|
|
|
m_d->m_hintText = ht;
|
|
|
|
|
if (!hasFocus() && !ht.isEmpty())
|
|
|
|
|
showHintText();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::showHintText()
|
|
|
|
|
{
|
|
|
|
|
if (!m_d->m_showingHintText && text().isEmpty() && !m_d->m_hintText.isEmpty()) {
|
|
|
|
|
m_d->m_showingHintText = true;
|
|
|
|
|
setText(m_d->m_hintText);
|
|
|
|
|
updateStyleSheet(side());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::hideHintText()
|
|
|
|
|
{
|
|
|
|
|
if (m_d->m_showingHintText && !m_d->m_hintText.isEmpty()) {
|
|
|
|
|
m_d->m_showingHintText = false;
|
|
|
|
|
setText(QString());
|
|
|
|
|
updateStyleSheet(side());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::focusInEvent(QFocusEvent *e)
|
|
|
|
|
{
|
|
|
|
|
hideHintText();
|
|
|
|
|
QLineEdit::focusInEvent(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyLineEdit::focusOutEvent(QFocusEvent *e)
|
|
|
|
|
{
|
|
|
|
|
// Focus out: Switch to displaying the hint text unless
|
|
|
|
|
// there is user input
|
|
|
|
|
showHintText();
|
|
|
|
|
QLineEdit::focusOutEvent(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FancyLineEdit::isShowingHintText() const
|
|
|
|
|
{
|
|
|
|
|
return m_d->m_showingHintText;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FancyLineEdit::typedText() const
|
|
|
|
|
{
|
|
|
|
|
return m_d->m_showingHintText ? QString() : text();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Utils
|