summaryrefslogtreecommitdiff
path: root/src/urlbar/urlbar.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-04-22 02:15:35 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-04-22 02:15:35 +0200
commitf958e654e4374cd969cc6d025f01432beb092dec (patch)
tree972d7420aebf914c8d54d69e3567d29f6ea731dd /src/urlbar/urlbar.h
parentMerge commit 'refs/merge-requests/2249' of git://gitorious.org/rekonq/mainlin... (diff)
downloadrekonq-f958e654e4374cd969cc6d025f01432beb092dec.tar.xz
Bye Bye, LineEdit!
Welcome, awesome bar.. Idea & patch from Johannes Zellner
Diffstat (limited to 'src/urlbar/urlbar.h')
-rw-r--r--src/urlbar/urlbar.h50
1 files changed, 42 insertions, 8 deletions
diff --git a/src/urlbar/urlbar.h b/src/urlbar/urlbar.h
index 28afc21e..0be1ecf9 100644
--- a/src/urlbar/urlbar.h
+++ b/src/urlbar/urlbar.h
@@ -33,14 +33,15 @@
// Local Includes
#include "rekonqprivate_export.h"
-#include "lineedit.h"
#include "application.h"
// KDE Includes
#include <KUrl>
+#include <KLineEdit>
// Qt Includes
#include <QWeakPointer>
+#include <QToolButton>
// Forward Declarations
class QLinearGradient;
@@ -49,12 +50,36 @@ class CompletionWidget;
class WebTab;
-class REKONQ_TESTS_EXPORT UrlBar : public LineEdit
+class IconButton : public QToolButton
{
Q_OBJECT
public:
- UrlBar(QWidget *parent = 0);
+ IconButton(QWidget *parent = 0);
+};
+
+
+// Definitions
+typedef QList<IconButton *> IconButtonPointerList;
+
+
+// ------------------------------------------------------------------------------------
+
+
+class REKONQ_TESTS_EXPORT UrlBar : public KLineEdit
+{
+ Q_OBJECT
+
+public:
+
+ enum icon
+ {
+ KGet = 0x00000001,
+ RSS = 0x00000010,
+ SSL = 0x00000100,
+ };
+
+ explicit UrlBar(QWidget *parent = 0);
~UrlBar();
void setPrivateMode(bool on);
@@ -65,19 +90,28 @@ private slots:
void loadFinished();
void loadTyped(const QString &);
-
+
+ void clearRightIcons();
+
protected:
- virtual void paintEvent(QPaintEvent *event);
- virtual void keyPressEvent(QKeyEvent *event);
- virtual void focusInEvent(QFocusEvent *event);
- virtual void dropEvent(QDropEvent *event);
+ void paintEvent(QPaintEvent *event);
+ void keyPressEvent(QKeyEvent *event);
+ void focusInEvent(QFocusEvent *event);
+ void dropEvent(QDropEvent *event);
+ void mouseDoubleClickEvent(QMouseEvent *);
+ void resizeEvent(QResizeEvent *);
private:
+ IconButton *addRightIcon(UrlBar::icon );
void activateSuggestions(bool);
QWeakPointer<CompletionWidget> _box;
WebTab *_tab;
bool _privateMode;
+
+ IconButton *_icon;
+ IconButtonPointerList _rightIconsList;
};
+
#endif