/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtWidgets module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** 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. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qlineedit.h" #include "qlineedit_p.h" #ifndef QT_NO_LINEEDIT #include "qvariant.h" #include "qabstractitemview.h" #include "qdrag.h" #include "qwidgetaction.h" #include "qclipboard.h" #ifndef QT_NO_ACCESSIBILITY #include "qaccessible.h" #endif #ifndef QT_NO_IM #include "qinputmethod.h" #include "qlist.h" #include #endif QT_BEGIN_NAMESPACE const int QLineEditPrivate::verticalMargin(1); const int QLineEditPrivate::horizontalMargin(2); QRect QLineEditPrivate::adjustedControlRect(const QRect &rect) const { QRect widgetRect = !rect.isEmpty() ? rect : q_func()->rect(); QRect cr = adjustedContentsRect(); int cix = cr.x() - hscroll + horizontalMargin; return widgetRect.translated(QPoint(cix, vscroll)); } int QLineEditPrivate::xToPos(int x, QTextLine::CursorPosition betweenOrOn) const { QRect cr = adjustedContentsRect(); x-= cr.x() - hscroll + horizontalMargin; return control->xToPos(x, betweenOrOn); } QRect QLineEditPrivate::cursorRect() const { return adjustedControlRect(control->cursorRect()); } #ifndef QT_NO_COMPLETER void QLineEditPrivate::_q_completionHighlighted(QString newText) { Q_Q(QLineEdit); if (control->completer()->completionMode() != QCompleter::InlineCompletion) { q->setText(newText); } else { int c = control->cursor(); QString text = control->text(); q->setText(text.left(c) + newText.mid(c)); control->moveCursor(control->end(), false); #ifndef Q_OS_ANDROID const bool mark = true; #else const bool mark = (imHints & Qt::ImhNoPredictiveText); #endif control->moveCursor(c, mark); } } #endif // QT_NO_COMPLETER void QLineEditPrivate::_q_handleWindowActivate() { Q_Q(QLineEdit); if (!q->hasFocus() && control->hasSelectedText()) control->deselect(); } void QLineEditPrivate::_q_textEdited(const QString &text) { Q_Q(QLineEdit); emit q->textEdited(text); #ifndef QT_NO_COMPLETER if (control->completer() && control->completer()->completionMode() != QCompleter::InlineCompletion) control->complete(-1); // update the popup on cut/paste/del #endif } void QLineEditPrivate::_q_cursorPositionChanged(int from, int to) { Q_Q(QLineEdit); q->update(); emit q->cursorPositionChanged(from, to); } #ifdef QT_KEYPAD_NAVIGATION void QLineEditPrivate::_q_editFocusChange(bool e) { Q_Q(QLineEdit); q->setEditFocus(e); } #endif void QLineEditPrivate::_q_selectionChanged() { Q_Q(QLineEdit); if (control->preeditAreaText().isEmpty()) { QStyleOptionFrameV2 opt; q->initStyleOption(&opt); bool showCursor = control->hasSelectedText() ? q->style()->styleHint(QStyle::SH_BlinkCursorWhenTextSelected, &opt, q): q->hasFocus(); setCursorVisible(showCursor); } emit q->selectionChanged(); #ifndef QT_NO_ACCESSIBILITY QAccessibleTextSelectionEvent ev(q, control->selectionStart(), control->selectionEnd()); ev.setCursorPosition(control->cursorPosition()); QAccessible::updateAccessibility(&ev); #endif } void QLineEditPrivate::_q_updateNeeded(const QRect &rect) { q_func()->update(adjustedControlRect(rect)); } void QLineEditPrivate::init(const QString& txt) { Q_Q(QLineEdit); control = new QWidgetLineControl(txt); control->setParent(q); control->setFont(q->font()); QObject::connect(control, SIGNAL(textChanged(QString)), q, SIGNAL(textChanged(QString))); QObject::connect(control, SIGNAL(textEdited(QString)), q, SLOT(_q_textEdited(QString))); QObject::connect(control, SIGNAL(cursorPositionChanged(int,int)), q, SLOT(_q_cursorPositionChanged(int,int))); QObject::connect(control, SIGNAL(selectionChanged()), q, SLOT(_q_selectionChanged())); QObject::connect(control, SIGNAL(accepted()), q, SIGNAL(returnPressed())); QObject::connect(control, SIGNAL(editingFinished()), q, SIGNAL(editingFinished())); #ifdef QT_KEYPAD_NAVIGATION QObject::connect(control, SIGNAL(editFocusChange(bool)), q, SLOT(_q_editFocusChange(bool))); #endif QObject::connect(control, SIGNAL(cursorPositionChanged(int,int)), q, SLOT(updateMicroFocus())); QObject::connect(control, SIGNAL(textChanged(QString)), q, SLOT(updateMicroFocus())); // for now, going completely overboard with updates. QObject::connect(control, SIGNAL(selectionChanged()), q, SLOT(update())); QObject::connect(control, SIGNAL(displayTextChanged(QString)), q, SLOT(update())); QObject::connect(control, SIGNAL(updateNeeded(QRect)), q, SLOT(_q_updateNeeded(QRect))); QStyleOptionFrameV2 opt; q->initStyleOption(&opt); control->setPasswordCharacter(q->style()->styleHint(QStyle::SH_LineEdit_PasswordCharacter, &opt, q)); #ifndef QT_NO_CURSOR q->setCursor(Qt::IBeamCursor); #endif q->setFocusPolicy(Qt::StrongFocus); q->setAttribute(Qt::WA_InputMethodEnabled); // Specifies that this widget can use more, but is able to survive on // less, horizontal space; and is fixed vertically. q->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed, QSizePolicy::LineEdit)); q->setBackgroundRole(QPalette::Base); q->setAttribute(Qt::WA_KeyCompression); q->setMouseTracking(true); q->setAcceptDrops(true); q->setAttribute(Qt::WA_MacShowFocusRect); } QRect QLineEditPrivate::adjustedContentsRect() const { Q_Q(const QLineEdit); QStyleOptionFrameV2 opt; q->initStyleOption(&opt); QRect r = q->style()->subElementRect(QStyle::SE_LineEditContents, &opt, q); r.setX(r.x() + effectiveLeftTextMargin()); r.setY(r.y() + topTextMargin); r.setRight(r.right() - effectiveRightTextMargin()); r.setBottom(r.bottom() - bottomTextMargin); return r; } void QLineEditPrivate::setCursorVisible(bool visible) { Q_Q(QLineEdit); if ((bool)cursorVisible == visible) return; cursorVisible = visible; if (control->inputMask().isEmpty()) q->update(cursorRect()); else q->update(); } void QLineEditPrivate::updatePasswordEchoEditing(bool editing) { Q_Q(QLineEdit); control->updatePasswordEchoEditing(editing); q->setAttribute(Qt::WA_InputMethodEnabled, shouldEnableInputMethod()); } void QLineEditPrivate::resetInputMethod() { Q_Q(QLineEdit); if (q->hasFocus() && qApp) { qApp->inputMethod()->reset(); } } /*! This function is not intended as polymorphic usage. Just a shared code fragment that calls QInputMethod::invokeAction for this class. */ bool QLineEditPrivate::sendMouseEventToInputContext( QMouseEvent *e ) { #if !defined QT_NO_IM if ( control->composeMode() ) { int tmp_cursor = xToPos(e->pos().x()); int mousePos = tmp_cursor - control->cursor(); if ( mousePos < 0 || mousePos > control->preeditAreaText().length() ) mousePos = -1; if (mousePos >= 0) { if (e->type() == QEvent::MouseButtonRelease) qApp->inputMethod()->invokeAction(QInputMethod::Click, mousePos); return true; } } #else Q_UNUSED(e); #endif return false; } #ifndef QT_NO_DRAGANDDROP void QLineEditPrivate::drag() { Q_Q(QLineEdit); dndTimer.stop(); QMimeData *data = new QMimeData; data->setText(control->selectedText()); QDrag *drag = new QDrag(q); drag->setMimeData(data); Qt::DropAction action = drag->start(); if (action == Qt::MoveAction && !control->isReadOnly() && drag->target() != q) control->removeSelection(); } #endif // QT_NO_DRAGANDDROP QLineEditIconButton::QLineEditIconButton(QWidget *parent) : QToolButton(parent) , m_opacity(0) { setFocusPolicy(Qt::NoFocus); } void QLineEditIconButton::paintEvent(QPaintEvent *) { QPainter painter(this); // Note isDown should really use the active state but in most styles // this has no proper feedback QIcon::Mode state = QIcon::Disabled; if (isEnabled()) state = isDown() ? QIcon::Selected : QIcon::Normal; const QPixmap iconPixmap = icon().pixmap(QSize(IconButtonSize, IconButtonSize), state, QIcon::Off); QRect pixmapRect = QRect(0, 0, iconPixmap.width(), iconPixmap.height()); pixmapRect.moveCenter(rect().center()); painter.setOpacity(m_opacity); painter.drawPixmap(pixmapRect, iconPixmap); } void QLineEditIconButton::setOpacity(qreal value) { if (!qFuzzyCompare(m_opacity, value)) { m_opacity = value; updateCursor(); update(); } } void QLineEditIconButton::startOpacityAnimation(qreal endValue) { QPropertyAnimation *animation = new QPropertyAnimation(this, QByteArrayLiteral("opacity")); animation->setDuration(160); animation->setEndValue(endValue); animation->start(QAbstractAnimation::DeleteWhenStopped); } void QLineEditIconButton::updateCursor() { #ifndef QT_NO_CURSOR setCursor(qFuzzyCompare(m_opacity, 1.0) || !parentWidget() ? QCursor(Qt::ArrowCursor) : parentWidget()->cursor()); #endif } void QLineEditPrivate::_q_textChanged(const QString &text) { if (hasSideWidgets()) { const int newTextSize = text.size(); if (!newTextSize || !lastTextSize) { lastTextSize = newTextSize; const bool fadeIn = newTextSize > 0; foreach (const SideWidgetEntry &e, leadingSideWidgets) { if (e.flags & SideWidgetFadeInWithText) static_cast(e.widget)->animateShow(fadeIn); } foreach (const SideWidgetEntry &e, trailingSideWidgets) { if (e.flags & SideWidgetFadeInWithText) static_cast(e.widget)->animateShow(fadeIn); } } } } QSize QLineEditPrivate::iconSize() const { if (!m_iconSize.isValid()) // This might require style-specific handling (pixel metric). m_iconSize = QSize(QLineEditIconButton::IconButtonSize + 6, QLineEditIconButton::IconButtonSize + 2); return m_iconSize; } QIcon QLineEditPrivate::clearButtonIcon() const { Q_Q(const QLineEdit); QStyleOptionFrameV2 styleOption; q->initStyleOption(&styleOption); return QIcon(q->style()->standardPixmap(QStyle::SP_LineEditClearButton, &styleOption, q)); } void QLineEditPrivate::setClearButtonEnabled(bool enabled) { foreach (const SideWidgetEntry &e, trailingSideWidgets) { if (e.flags & SideWidgetClearButton) { e.action->setEnabled(enabled); break; } } } void QLineEditPrivate::positionSideWidgets() { Q_Q(QLineEdit); if (hasSideWidgets()) { const QRect contentRect = q->rect(); const QSize iconSize = QLineEditPrivate::iconSize(); const int delta = QLineEditIconButton::IconMargin + iconSize.width(); QRect widgetGeometry(QPoint(QLineEditIconButton::IconMargin, (contentRect.height() - iconSize.height()) / 2), iconSize); foreach (const SideWidgetEntry &e, leftSideWidgetList()) { e.widget->setGeometry(widgetGeometry); widgetGeometry.moveLeft(widgetGeometry.left() + delta); } widgetGeometry.moveLeft(contentRect.width() - iconSize.width() - QLineEditIconButton::IconMargin); foreach (const SideWidgetEntry &e, rightSideWidgetList()) { e.widget->setGeometry(widgetGeometry); widgetGeometry.moveLeft(widgetGeometry.left() - delta); } } } QLineEditPrivate::PositionIndexPair QLineEditPrivate::findSideWidget(const QAction *a) const { for (int i = 0; i < leadingSideWidgets.size(); ++i) { if (a == leadingSideWidgets.at(i).action) return PositionIndexPair(QLineEdit::LeadingPosition, i); } for (int i = 0; i < trailingSideWidgets.size(); ++i) { if (a == trailingSideWidgets.at(i).action) return PositionIndexPair(QLineEdit::TrailingPosition, i); } return PositionIndexPair(QLineEdit::LeadingPosition, -1); } QWidget *QLineEditPrivate::addAction(QAction *newAction, QAction *before, QLineEdit::ActionPosition position, int flags) { Q_Q(QLineEdit); if (!newAction) return 0; QWidget *w = 0; // Store flags about QWidgetAction here since removeAction() may be called from ~QAction, // in which a qobject_cast<> no longer works. if (QWidgetAction *widgetAction = qobject_cast(newAction)) { if ((w = widgetAction->requestWidget(q))) flags |= SideWidgetCreatedByWidgetAction; } if (!w) { QLineEditIconButton *toolButton = new QLineEditIconButton(q); toolButton->setIcon(newAction->icon()); toolButton->setOpacity(lastTextSize > 0 || !(flags & SideWidgetFadeInWithText) ? 1 : 0); if (flags & SideWidgetClearButton) QObject::connect(toolButton, SIGNAL(clicked()), q, SLOT(clear())); toolButton->setDefaultAction(newAction); w = toolButton; } if (!hasSideWidgets()) { // initial setup. QObject::connect(q, SIGNAL(textChanged(QString)), q, SLOT(_q_textChanged(QString))); lastTextSize = q->text().size(); } // If there is a 'before' action, it takes preference PositionIndexPair positionIndex = before ? findSideWidget(before) : PositionIndexPair(position, -1); SideWidgetEntryList &list = positionIndex.first == QLineEdit::TrailingPosition ? trailingSideWidgets : leadingSideWidgets; if (positionIndex.second < 0) positionIndex.second = list.size(); list.insert(positionIndex.second, SideWidgetEntry(w, newAction, flags)); positionSideWidgets(); w->show(); return w; } void QLineEditPrivate::removeAction(QAction *action) { Q_Q(QLineEdit); const PositionIndexPair positionIndex = findSideWidget(action); if (positionIndex.second == -1) return; SideWidgetEntryList &list = positionIndex.first == QLineEdit::TrailingPosition ? trailingSideWidgets : leadingSideWidgets; SideWidgetEntry entry = list.takeAt(positionIndex.second); if (entry.flags & SideWidgetCreatedByWidgetAction) static_cast(entry.action)->releaseWidget(entry.widget); else delete entry.widget; positionSideWidgets(); if (!hasSideWidgets()) // Last widget, remove connection QObject::disconnect(q, SIGNAL(textChanged(QString)), q, SLOT(_q_textChanged(QString))); q->update(); } QT_END_NAMESPACE #endif