summaryrefslogtreecommitdiff
path: root/src/urlbar.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2008-12-14 16:54:45 +0100
committerAndrea Diamantini <adjam7@gmail.com>2008-12-14 16:54:45 +0100
commit439e23791714ff99876b8cca3afd6225445e75fc (patch)
tree80895c6703dc7748be73f9bd811cbc92fce5c5c6 /src/urlbar.cpp
parentFixing searchbar dimension && position (diff)
downloadrekonq-439e23791714ff99876b8cca3afd6225445e75fc.tar.xz
Last changes..
Diffstat (limited to 'src/urlbar.cpp')
-rw-r--r--src/urlbar.cpp98
1 files changed, 60 insertions, 38 deletions
diff --git a/src/urlbar.cpp b/src/urlbar.cpp
index 894c702f..85e59693 100644
--- a/src/urlbar.cpp
+++ b/src/urlbar.cpp
@@ -1,6 +1,6 @@
/* ============================================================
 *
- * This file is a part of the reKonq project
+ * This file is a part of the rekonq project
 *
* Copyright (C) 2008 by Andrea Diamantini <adjam7 at gmail dot com>
 *
@@ -25,18 +25,25 @@
#include "browsermainwindow.h"
-UrlBar::UrlBar(KHistoryComboBox *parent)
- : KHistoryComboBox(true, parent)
+UrlBar::UrlBar(QWidget *parent)
+ : QWidget(parent)
+ , m_historyComboBox( new KHistoryComboBox( true, parent ) )
, m_webView(0)
- , m_lineEdit(0)
+ , m_lineEdit(new QLineEdit)
{
- m_lineEdit = new QLineEdit;
- setLineEdit( m_lineEdit );
+ m_historyComboBox->setLineEdit( m_lineEdit );
+
+ QSizePolicy policy = sizePolicy();
+ setSizePolicy(QSizePolicy::Preferred, policy.verticalPolicy());
+
+ QVBoxLayout *layout = new QVBoxLayout;
+ layout->addWidget( m_historyComboBox );
+ setLayout(layout);
m_defaultBaseColor = palette().color( QPalette::Base );
// add every item to history
- connect( this, SIGNAL( activated( const QString& ) ), this, SLOT( addToHistory( const QString& ) ) );
+ connect( m_historyComboBox, SIGNAL( activated( const QString& ) ), m_historyComboBox, SLOT( addToHistory( const QString& ) ) );
webViewIconChanged();
}
@@ -84,8 +91,8 @@ void UrlBar::webViewIconChanged()
QIcon urlIcon = QIcon(pixmap);
// FIXME simple hack to show Icon in the urlbar, as calling changeUrl() doesn't affect it
- removeItem( 0 );
- insertUrl( 0 , urlIcon , url );
+ m_historyComboBox->removeItem( 0 );
+ m_historyComboBox->insertUrl( 0 , urlIcon , url );
}
@@ -101,32 +108,47 @@ QLinearGradient UrlBar::generateGradient(const QColor &color) const
}
-void UrlBar::paintEvent( QPaintEvent *event )
-{
- QPalette p = palette();
- if (m_webView && m_webView->url().scheme() == QLatin1String("https"))
- {
- QColor lightYellow(248, 248, 210);
- p.setBrush(QPalette::Base, generateGradient(lightYellow));
- }
- else
- {
- p.setBrush(QPalette::Base, m_defaultBaseColor);
- }
- setPalette(p);
- KHistoryComboBox::paintEvent(event);
-
- QPainter painter( this );
- QRect backgroundRect = m_lineEdit->frameGeometry(); // contentsRect();
- if ( m_webView && !hasFocus() )
- {
- int progress = m_webView->progress();
- QColor loadingColor = QColor(116, 192, 250);
- painter.setBrush( generateGradient(loadingColor) );
- painter.setPen(Qt::transparent);
- int mid = backgroundRect.width() / 100 * progress;
- QRect progressRect(backgroundRect.x(), backgroundRect.y(), mid, backgroundRect.height());
- painter.drawRect(progressRect);
- }
-}
-
+// void UrlBar::paintEvent( QPaintEvent *event )
+// {
+// QPalette p = palette();
+// if (m_webView && m_webView->url().scheme() == QLatin1String("https"))
+// {
+// QColor lightYellow(248, 248, 210);
+// p.setBrush(QPalette::Base, generateGradient(lightYellow));
+// }
+// else
+// {
+// p.setBrush(QPalette::Base, m_defaultBaseColor);
+// }
+// setPalette(p);
+// KHistoryComboBox::paintEvent(event);
+//
+// QPainter painter( this );
+// QRect backgroundRect = m_lineEdit->frameGeometry(); // contentsRect(); // FIXME perhaps better working with contentsRect
+// if ( m_webView && !hasFocus() ) // and modifying colours..
+// {
+// int progress = m_webView->progress();
+// QColor loadingColor = QColor(116, 192, 250);
+// painter.setBrush( generateGradient(loadingColor) );
+// painter.setPen(Qt::transparent);
+// int mid = backgroundRect.width() / 100 * progress;
+// QRect progressRect(backgroundRect.x(), backgroundRect.y(), mid, backgroundRect.height());
+// painter.drawRect(progressRect);
+// }
+// }
+
+
+// void UrlBar::resizeEvent( QResizeEvent *event )
+// {
+// QRect rect = m_historyComboBox->frameGeometry();
+//
+// int newWidth = BrowserApplication::instance()->mainWindow()->size().width() * 3 / 5 ; // FIXME ( OR not?)
+//
+// m_historyComboBox->setGeometry( rect.x(),
+// rect.y(),
+// newWidth,
+// m_historyComboBox->height()
+// );
+//
+// QWidget::resizeEvent( event );
+// }