From 3810a2bff06a38c9d4098560cd94a17a24031e23 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Wed, 23 Aug 2017 14:52:58 +0200 Subject: Split address bar off into static library --- src/lib/navigation/urllineedit.h | 68 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/lib/navigation/urllineedit.h (limited to 'src/lib/navigation/urllineedit.h') diff --git a/src/lib/navigation/urllineedit.h b/src/lib/navigation/urllineedit.h new file mode 100644 index 0000000..548000a --- /dev/null +++ b/src/lib/navigation/urllineedit.h @@ -0,0 +1,68 @@ +/******************************************************************************* + ** + ** 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 . + ** + ******************************************************************************/ + +#ifndef URLLINEEDIT_H +#define URLLINEEDIT_H + +#include +#include +#include + +#include + +class UrlLineEdit : public QLineEdit +{ + Q_OBJECT +public: + explicit UrlLineEdit(QWidget *parent = 0); + +signals: + +public slots: + void setUrl(const QUrl &url); + QUrl url(); + +protected: + void focusInEvent(QFocusEvent *event); + void focusOutEvent(QFocusEvent *event); + void resizeEvent(QResizeEvent *event); + +private slots: + void showCompleter(const QString &text); + void showMenu(); + void copyUrl(); + void pasteUrl(); + void pasteUrlAndGo(); + void bookmarkUrl(); + +private: + void setTextFormat(const QTextLayout::FormatRange &format); + void clearTextFormat(); + + QUrl urlFromUserInput(const QString &input); + + QTextLayout::FormatRange m_hostFormat; + QMenu *m_contextMenu; + + bool wasFocused = false; + QMenu *m_menu; +}; + +#endif // URLLINEEDIT_H -- cgit v1.2.1