summaryrefslogtreecommitdiffstats
path: root/examples/network/googlesuggest/searchbox.cpp
blob: 56ca44dac44760ffa4de16807c8f5c85eeea6338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QDesktopServices>
#include <QUrl>

#include "searchbox.h"
#include "googlesuggest.h"

const QString gsearchUrl = QStringLiteral("http://www.google.com/search?q=%1");

//! [1]
SearchBox::SearchBox(QWidget *parent)
    : QLineEdit(parent)
    , completer(new GSuggestCompletion(this))
{
    connect(this, &SearchBox::returnPressed, this, &SearchBox::doSearch);

    setWindowTitle("Search with Google");

    adjustSize();
    resize(400, height());
    setFocus();
}
//! [1]

//! [2]
void SearchBox::doSearch()
{
    completer->preventSuggest();
    QString url = gsearchUrl.arg(text());
    QDesktopServices::openUrl(url);
}
//! [2]