aboutsummaryrefslogtreecommitdiff
path: root/src/widgets/urllineedit.cpp
blob: 506319148aa89f68b056d6e6d4da938aac5975a5 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*******************************************************************************
 **
 ** smolbote: yet another qute browser
 ** Copyright (C) 2017  Xian Nox
 **
 ** 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 <http://www.gnu.org/licenses/>.
 **
 ******************************************************************************/

#include "urllineedit.h"
#include <QUrl>
#include <QTimer>

UrlLineEdit::UrlLineEdit(QWidget *parent) :
    QLineEdit(parent)
{
    //setStyleSheet("color: #808080");

    QTextCharFormat hostnameFormat;
    hostnameFormat.setFontWeight(QFont::Bold);
    m_hostFormat.format = hostnameFormat;
}

void UrlLineEdit::setUrl(const QUrl &url)
{
    QString urlText = url.toString();
    QString domain = url.host();

    m_hostFormat.start = urlText.indexOf(domain);
    m_hostFormat.length = domain.length();

    clear();
    clearTextFormat();
    setTextFormat(m_hostFormat);
    setText(urlText);
}

QUrl UrlLineEdit::url()
{
    return QUrl::fromUserInput(text());
}

void UrlLineEdit::focusInEvent(QFocusEvent *event)
{
    clearTextFormat();
    QLineEdit::focusInEvent(event);

    // select the contents when receiving focus
    // http://stackoverflow.com/a/35725950/1054406
    // mousePressEvent triggers right after focusInEvent so text selected in focusInEvent unselects by mousePressEvent
    QTimer::singleShot(0, this, SLOT(selectAll()));
}

void UrlLineEdit::focusOutEvent(QFocusEvent *event)
{
    setUrl(QUrl(text()));
    QLineEdit::focusOutEvent(event);
}

// formatting taken from: https://forum.qt.io/topic/60962/setting-qlineedit-text-bold
void UrlLineEdit::setTextFormat(const QTextLayout::FormatRange &format)
{
    QList<QInputMethodEvent::Attribute> attributes;
    attributes.append(QInputMethodEvent::Attribute(QInputMethodEvent::TextFormat, format.start, format.length, format.format));
    QInputMethodEvent ev(QString(), attributes);
    event(&ev);

}

void UrlLineEdit::clearTextFormat()
{
    setTextFormat(QTextLayout::FormatRange());
}