/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2010-2012 David Rosca * * 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 "locationcompletermodel.h" #include "iconprovider.h" #include "mainapplication.h" #include LocationCompleterModel::LocationCompleterModel(QObject* parent) : QStandardItemModel(parent) , m_lastCompletion(QChar(QChar::Nbsp)) { } void LocationCompleterModel::refreshCompletions(const QString &string) { if (m_lastCompletion == string) { return; } m_lastCompletion = string; if (string.isEmpty()) { showMostVisited(); return; } clear(); int limit = string.size() < 3 ? 25 : 15; QString searchString = QString("%%1%").arg(string); QList urlList; QSqlQuery query; query.prepare("SELECT url, title, icon FROM bookmarks WHERE title LIKE ? OR url LIKE ? LIMIT ?"); query.addBindValue(searchString); query.addBindValue(searchString); query.addBindValue(limit); query.exec(); while (query.next()) { QStandardItem* item = new QStandardItem(); const QUrl &url = query.value(0).toUrl(); item->setIcon(qIconProvider->iconFromImage(QImage::fromData(query.value(2).toByteArray()))); item->setText(url.toEncoded()); item->setData(query.value(1), Qt::UserRole); item->setData(QVariant(true), Qt::UserRole + 1); // From bookmarks appendRow(item); urlList.append(url); } limit -= query.size(); query.prepare("SELECT url, title FROM history WHERE title LIKE ? OR url LIKE ? ORDER BY count DESC LIMIT ?"); query.addBindValue(searchString); query.addBindValue(searchString); query.addBindValue(limit); query.exec(); while (query.next()) { QStandardItem* item = new QStandardItem(); const QUrl &url = query.value(0).toUrl(); if (urlList.contains(url)) { continue; } item->setIcon(_iconForUrl(url)); item->setText(url.toEncoded()); item->setData(query.value(1), Qt::UserRole); item->setData(QVariant(false), Qt::UserRole + 1); appendRow(item); } } void LocationCompleterModel::showMostVisited() { clear(); QSqlQuery query; query.exec("SELECT url, title FROM history ORDER BY count DESC LIMIT 15"); while (query.next()) { QStandardItem* item = new QStandardItem(); const QUrl &url = query.value(0).toUrl(); item->setIcon(_iconForUrl(url)); item->setText(url.toEncoded()); item->setData(query.value(1), Qt::UserRole); item->setData(QVariant(false), Qt::UserRole + 1); appendRow(item); } }