2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include "googlesuggest.h"
|
|
|
|
|
2019-11-01 12:21:32 +00:00
|
|
|
//! [1]
|
2017-09-29 11:57:43 +00:00
|
|
|
const QString gsuggestUrl(QStringLiteral("http://google.com/complete/search?output=toolbar&q=%1"));
|
2011-04-27 10:05:43 +00:00
|
|
|
//! [1]
|
|
|
|
|
|
|
|
//! [2]
|
|
|
|
GSuggestCompletion::GSuggestCompletion(QLineEdit *parent): QObject(parent), editor(parent)
|
|
|
|
{
|
|
|
|
popup = new QTreeWidget;
|
|
|
|
popup->setWindowFlags(Qt::Popup);
|
|
|
|
popup->setFocusPolicy(Qt::NoFocus);
|
|
|
|
popup->setFocusProxy(parent);
|
|
|
|
popup->setMouseTracking(true);
|
|
|
|
|
2015-03-05 14:10:03 +00:00
|
|
|
popup->setColumnCount(1);
|
2011-04-27 10:05:43 +00:00
|
|
|
popup->setUniformRowHeights(true);
|
|
|
|
popup->setRootIsDecorated(false);
|
|
|
|
popup->setEditTriggers(QTreeWidget::NoEditTriggers);
|
|
|
|
popup->setSelectionBehavior(QTreeWidget::SelectRows);
|
|
|
|
popup->setFrameStyle(QFrame::Box | QFrame::Plain);
|
|
|
|
popup->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
|
|
popup->header()->hide();
|
|
|
|
|
|
|
|
popup->installEventFilter(this);
|
|
|
|
|
2019-11-01 12:21:32 +00:00
|
|
|
connect(popup, &QTreeWidget::itemClicked,
|
|
|
|
this, &GSuggestCompletion::doneCompletion);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2017-09-29 11:57:43 +00:00
|
|
|
timer.setSingleShot(true);
|
|
|
|
timer.setInterval(500);
|
2019-11-01 12:21:32 +00:00
|
|
|
connect(&timer, &QTimer::timeout,
|
|
|
|
this, &GSuggestCompletion::autoSuggest);
|
|
|
|
connect(editor, &QLineEdit::textEdited,
|
|
|
|
&timer, QOverload<>::of(&QTimer::start));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2019-11-01 12:21:32 +00:00
|
|
|
connect(&networkManager, &QNetworkAccessManager::finished,
|
|
|
|
this, &GSuggestCompletion::handleNetworkData);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
//! [2]
|
|
|
|
|
|
|
|
//! [3]
|
|
|
|
GSuggestCompletion::~GSuggestCompletion()
|
|
|
|
{
|
|
|
|
delete popup;
|
|
|
|
}
|
|
|
|
//! [3]
|
|
|
|
|
|
|
|
//! [4]
|
|
|
|
bool GSuggestCompletion::eventFilter(QObject *obj, QEvent *ev)
|
|
|
|
{
|
|
|
|
if (obj != popup)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (ev->type() == QEvent::MouseButtonPress) {
|
|
|
|
popup->hide();
|
|
|
|
editor->setFocus();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ev->type() == QEvent::KeyPress) {
|
|
|
|
bool consumed = false;
|
|
|
|
int key = static_cast<QKeyEvent*>(ev)->key();
|
|
|
|
switch (key) {
|
|
|
|
case Qt::Key_Enter:
|
|
|
|
case Qt::Key_Return:
|
|
|
|
doneCompletion();
|
|
|
|
consumed = true;
|
2017-05-09 12:16:00 +00:00
|
|
|
break;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
case Qt::Key_Escape:
|
|
|
|
editor->setFocus();
|
|
|
|
popup->hide();
|
|
|
|
consumed = true;
|
2017-05-09 12:16:00 +00:00
|
|
|
break;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
case Qt::Key_Up:
|
|
|
|
case Qt::Key_Down:
|
|
|
|
case Qt::Key_Home:
|
|
|
|
case Qt::Key_End:
|
|
|
|
case Qt::Key_PageUp:
|
|
|
|
case Qt::Key_PageDown:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
editor->setFocus();
|
|
|
|
editor->event(ev);
|
|
|
|
popup->hide();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
//! [4]
|
|
|
|
|
|
|
|
//! [5]
|
2020-06-22 08:12:38 +00:00
|
|
|
void GSuggestCompletion::showCompletion(const QList<QString> &choices)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2015-03-05 14:10:03 +00:00
|
|
|
if (choices.isEmpty())
|
2011-04-27 10:05:43 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
const QPalette &pal = editor->palette();
|
|
|
|
QColor color = pal.color(QPalette::Disabled, QPalette::WindowText);
|
|
|
|
|
|
|
|
popup->setUpdatesEnabled(false);
|
|
|
|
popup->clear();
|
2017-09-29 11:57:43 +00:00
|
|
|
|
|
|
|
for (const auto &choice : choices) {
|
|
|
|
auto item = new QTreeWidgetItem(popup);
|
|
|
|
item->setText(0, choice);
|
Fix some deprecation warnings in examples
googlesuggest.cpp:163:36: warning: ‘void QTreeWidgetItem::setTextColor(int, const QColor&)’ is deprecated: Use QTreeWidgetItem::setForeground() instead [-Wdeprecated-declarations]
xbeltree.cpp:187:34: warning: ‘void QTreeWidget::setItemExpanded(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setExpanded() instead [-Wdeprecated-declarations]
imageitem.cpp:114:21: warning: ‘void QGraphicsItem::setMatrix(const QMatrix&, bool)’ is deprecated: Use setTransform() instead [-Wdeprecated-declarations]
xbelreader.cpp:143:48: warning: ‘void QTreeWidget::setItemExpanded(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setExpanded() instead [-Wdeprecated-declarations]
xbelgenerator.cpp:103:55: warning: ‘bool QTreeWidget::isItemExpanded(const QTreeWidgetItem*) const’ is deprecated: Use QTreeWidgetItem::isExpanded() instead [-Wdeprecated-declarations]
xbelwriter.cpp:90:55: warning: ‘bool QTreeWidget::isItemExpanded(const QTreeWidgetItem*) const’ is deprecated: Use QTreeWidgetItem::isExpanded() instead [-Wdeprecated-declarations]
xbelhandler.cpp:97:50: warning: ‘void QTreeWidget::setItemExpanded(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setExpanded() instead [-Wdeprecated-declarations]
node.cpp:180:60: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
node.cpp:181:64: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
chip.cpp:82:81: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
chip.cpp:84:40: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
chip.cpp:108:93: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
roundrectitem.cpp:65:42: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
roundrectitem.cpp:97:51: warning: ‘void QPainter::drawRoundRect(const QRectF&, int, int)’ is deprecated: Use drawRoundedRect(..., Qt::RelativeSize) instead [-Wdeprecated-declarations]
roundrectitem.cpp:105:34: warning: ‘void QPainter::drawRoundRect(const QRectF&, int, int)’ is deprecated: Use drawRoundedRect(..., Qt::RelativeSize) instead [-Wdeprecated-declarations]
splashitem.cpp:82:57: warning: ‘void QPainter::drawRoundRect(int, int, int, int, int, int)’ is deprecated: Use drawRoundedRect(..., Qt::RelativeSize) instead [-Wdeprecated-declarations]
robot.cpp:116:53: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
robot.cpp:176:49: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
robot.cpp:200:49: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
mandelbrotwidget.cpp:120:41: warning: ‘const QMatrix& QPainter::matrix() const’ is deprecated: Use transform() instead [-Wdeprecated-declarations]
composition.cpp:344:47: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
composition.cpp:346:46: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
colorswatch.cpp:89:34: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
mainwindow.cpp:81:62: warning: ‘void QTreeWidget::setItemSelected(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setSelected() instead [-Wdeprecated-declarations]
puzzlewidget.cpp:172:35: warning: ‘Qt::DropAction QDrag::start(Qt::DropActions)’ is deprecated: Use QDrag::exec() instead [-Wdeprecated-declarations]
spreadsheet.cpp:191:37: warning: ‘QColor QTableWidgetItem::backgroundColor() const’ is deprecated: Use QTableWidgetItem::background() instead [-Wdeprecated-declarations]
spreadsheet.cpp:198:32: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
spreadsheet.cpp:203:24: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
spreadsheet.cpp:238:47: warning: ‘QColor QTableWidgetItem::backgroundColor() const’ is deprecated: Use QTableWidgetItem::background() instead [-Wdeprecated-declarations]
spreadsheet.cpp:249:38: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:494:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:509:56: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:513:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:527:56: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:531:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:545:56: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:549:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:563:55: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:567:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:581:55: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:585:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:599:55: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
starrating.cpp:91:46: warning: ‘const QBrush& QPalette::foreground() const’ is deprecated: Use QPalette::windowText() instead [-Wdeprecated-declarations]
document.cpp:341:36: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
document.cpp:342:39: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
document.cpp:343:36: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
norwegianwoodstyle.cpp:88:39: warning: ‘const QBrush& QPalette::background() const’ is deprecated: Use QPalette::window() instead [-Wdeprecated-declarations]
norwegianwoodstyle.cpp:89:39: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
norwegianwoodstyle.cpp:188:52: warning: ‘const QBrush& QPalette::background() const’ is deprecated: Use QPalette::window() instead [-Wdeprecated-declarations]
norwegianwoodstyle.cpp:264:56: warning: ‘const QBrush& QPalette::foreground() const’ is deprecated: Use QPalette::windowText() instead [-Wdeprecated-declarations]
plugindialog.cpp:128:49: warning: ‘void QTreeWidget::setItemExpanded(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setExpanded() instead [-Wdeprecated-declarations]
tetrixboard.cpp:361:74: warning: ‘const QBrush& QPalette::background() const’ is deprecated: Use QPalette::window() instead [-Wdeprecated-declarations]
tetrixboard.cpp:408:32: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
tetrixboard.cpp:412:31: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
mandelbrotwidget.cpp:120:41: warning: ‘const QMatrix& QPainter::matrix() const’ is deprecated: Use transform() instead [-Wdeprecated-declarations]
Change-Id: If0afabbc35ef25f127f211c11699011d4ae4ae65
Reviewed-by: Christian Ehrlicher <ch.ehrlicher@gmx.de>
2019-02-06 09:52:23 +00:00
|
|
|
item->setForeground(0, color);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2017-09-29 11:57:43 +00:00
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
popup->setCurrentItem(popup->topLevelItem(0));
|
|
|
|
popup->resizeColumnToContents(0);
|
|
|
|
popup->setUpdatesEnabled(true);
|
|
|
|
|
|
|
|
popup->move(editor->mapToGlobal(QPoint(0, editor->height())));
|
|
|
|
popup->setFocus();
|
|
|
|
popup->show();
|
|
|
|
}
|
|
|
|
//! [5]
|
|
|
|
|
|
|
|
//! [6]
|
|
|
|
void GSuggestCompletion::doneCompletion()
|
|
|
|
{
|
2017-09-29 11:57:43 +00:00
|
|
|
timer.stop();
|
2011-04-27 10:05:43 +00:00
|
|
|
popup->hide();
|
|
|
|
editor->setFocus();
|
|
|
|
QTreeWidgetItem *item = popup->currentItem();
|
|
|
|
if (item) {
|
|
|
|
editor->setText(item->text(0));
|
|
|
|
QMetaObject::invokeMethod(editor, "returnPressed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//! [6]
|
|
|
|
|
|
|
|
//! [7]
|
|
|
|
void GSuggestCompletion::autoSuggest()
|
|
|
|
{
|
|
|
|
QString str = editor->text();
|
2017-09-29 11:57:43 +00:00
|
|
|
QString url = gsuggestUrl.arg(str);
|
|
|
|
networkManager.get(QNetworkRequest(url));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
//! [7]
|
|
|
|
|
|
|
|
//! [8]
|
|
|
|
void GSuggestCompletion::preventSuggest()
|
|
|
|
{
|
2017-09-29 11:57:43 +00:00
|
|
|
timer.stop();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
//! [8]
|
|
|
|
|
|
|
|
//! [9]
|
|
|
|
void GSuggestCompletion::handleNetworkData(QNetworkReply *networkReply)
|
|
|
|
{
|
|
|
|
QUrl url = networkReply->url();
|
2020-02-10 09:29:57 +00:00
|
|
|
if (networkReply->error() == QNetworkReply::NoError) {
|
2020-06-22 08:12:38 +00:00
|
|
|
QList<QString> choices;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QByteArray response(networkReply->readAll());
|
|
|
|
QXmlStreamReader xml(response);
|
|
|
|
while (!xml.atEnd()) {
|
|
|
|
xml.readNext();
|
|
|
|
if (xml.tokenType() == QXmlStreamReader::StartElement)
|
2020-08-12 09:58:54 +00:00
|
|
|
if (xml.name() == u"suggestion") {
|
|
|
|
auto str = xml.attributes().value("data");
|
2011-04-27 10:05:43 +00:00
|
|
|
choices << str.toString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-05 14:10:03 +00:00
|
|
|
showCompletion(choices);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
networkReply->deleteLater();
|
|
|
|
}
|
|
|
|
//! [9]
|