diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-10 00:48:03 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-10 00:48:03 +0100 |
commit | d1edeb480f8539d2a132c5ab9f4e4b2a99d8d2a0 (patch) | |
tree | 1ae524849518d7d5a987d77d5556848ececdc592 /src/urlbar.cpp | |
parent | made the urlbar a KHistoryComboBox. Really beautiful widget!! (diff) | |
download | rekonq-d1edeb480f8539d2a132c5ab9f4e4b2a99d8d2a0.tar.xz |
Added Completion to new urlbar. ready for merge..
Diffstat (limited to 'src/urlbar.cpp')
-rw-r--r-- | src/urlbar.cpp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/urlbar.cpp b/src/urlbar.cpp index e45c0bb0..9be6bca0 100644 --- a/src/urlbar.cpp +++ b/src/urlbar.cpp @@ -25,13 +25,17 @@ UrlBar::UrlBar(KHistoryComboBox *parent) - : KHistoryComboBox(parent) + : KHistoryComboBox(true, parent) , m_webView(0) , m_lineEdit(0) { m_lineEdit = new QLineEdit; setLineEdit( m_lineEdit ); - + + // add every item to history + connect( this, SIGNAL( activated( const QString& )), this, SLOT( addToHistory( const QString& ))); + + connect( this, SIGNAL( activated(int) ), this, SLOT( prova() ) ); webViewIconChanged(); } @@ -88,3 +92,10 @@ QLinearGradient UrlBar::generateGradient(const QColor &color) const gradient.setColorAt(1, m_defaultBaseColor); return gradient; } + + +void UrlBar::prova() +{ + m_lineEdit->selectAll(); +} + |