aboutsummaryrefslogtreecommitdiff
path: root/src/widgets/urllineedit.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-08-23 14:52:58 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2017-08-23 14:52:58 +0200
commit3810a2bff06a38c9d4098560cd94a17a24031e23 (patch)
treed3f079161dcd3b7a37f3d2a737c6c72f8a49e187 /src/widgets/urllineedit.h
parentAdded URL bar completer (diff)
downloadsmolbote-3810a2bff06a38c9d4098560cd94a17a24031e23.tar.xz
Split address bar off into static library
Diffstat (limited to 'src/widgets/urllineedit.h')
-rw-r--r--src/widgets/urllineedit.h68
1 files changed, 0 insertions, 68 deletions
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 <http://www.gnu.org/licenses/>.
- **
- ******************************************************************************/
-
-#ifndef URLLINEEDIT_H
-#define URLLINEEDIT_H
-
-#include <QLineEdit>
-#include <QTextLayout>
-#include <QMenu>
-
-#include <QListWidget>
-
-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