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/widgets/urllineedit.h | 68 ----------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 src/widgets/urllineedit.h (limited to 'src/widgets/urllineedit.h') diff --git a/src/widgets/urllineedit.h b/src/widgets/urllineedit.h deleted file mode 100644 index 548000a..0000000 --- a/src/widgets/urllineedit.h +++ /dev/null @@ -1,68 +0,0 @@ -/******************************************************************************* - ** - ** 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