blob: 8be97838fa7fb0d44610f14d40cc8ff699e1aabc (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/* ============================================================
* The rekonq project
* ============================================================
* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright (C) 2008-2012 by Andrea Diamantini <adjam7 at gmail dot com>
* Copyright (C) 2009 by Domrachev Alexandr <alexandr.domrachev@gmail.com>
* Copyright (C) 2009 by Paweł Prażak <pawelprazak at gmail dot com>
* Copyright (C) 2009-2011 by Lionel Chauvin <megabigbug@yahoo.fr>
* SPDX-License-Identifier: GPL-3.0-only
* Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
* ============================================================
* Description: URL Bar
* ============================================================ */
#pragma once
#include "../rekonq.hpp"
#include <QLineEdit>
#include <QToolButton>
#include <rview.hpp>
class IconButton : public QToolButton {
Q_OBJECT
public:
explicit IconButton(QWidget *parent = nullptr);
};
// Definitions
using IconButtonPointerList = QList<IconButton *>;
class UrlBar : public QLineEdit {
Q_OBJECT
public:
enum Icon { KGet = 0x00000001, RSS = 0x00000010, BK = 0x00001000, SearchEngine = 0x00010000, AdBlock = 0x01000000 };
explicit UrlBar(QWidget *parent = nullptr);
~UrlBar() override = default;
public slots:
void setCurrentView(RekonqView *view)
{
m_currentView = view;
loadProgress(view->progress());
setUrl(view->url());
}
void setUrl(const QUrl &url);
/**
* Let us add bookmarks as the major browsers do
*
*/
// void manageBookmarks();
void loadRequestedUrl(const QUrl &url, rekonq::OpenType = rekonq::CurrentTab);
void loadStarted();
void loadProgress(int);
void loadFinished();
// void clearRightIcons();
// void updateRightIcons();
// void detectTypedString(const QString &);
// void suggest();
// void manageStarred(QPoint);
// void manageAdBlock(QPoint);
// void addToFavorites();
// void removeFromFavorites();
// void refreshFavicon();
// void pasteAndGo();
// void pasteAndSearch();
// void delSlot();
// bool isValidURL(QString url);
// void showRSSInfo(QPoint);
// void showSSLInfo(QPoint);
protected:
void paintEvent(QPaintEvent *event) override;
void resizeEvent(QResizeEvent *) override;
/*
void keyReleaseEvent(QKeyEvent *event);
void dropEvent(QDropEvent *event);
void mouseDoubleClickEvent(QMouseEvent *);
void contextMenuEvent(QContextMenuEvent *event);
*/
private:
/**
* Updates right icon position, given its number in the right icons list
* and considering rekonq window position/dimension
*/
// void updateRightIconPosition(IconButton *, int);
// IconButton *addRightIcon(UrlBar::icon);
// QWeakPointer<CompletionWidget> _box;
RekonqView *m_currentView = nullptr;
int m_currentView_progress = 0;
IconButton *_icon;
IconButtonPointerList _rightIconsList;
const QColor backgroundColor;
const QColor highlightColor;
};
|