fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / kfile / kurldropdownbutton.cpp
bloba29ce72b8a65dcd8a6e27a421350923ad52ec675
1 /*****************************************************************************
2 * Copyright (C) 2006 by Peter Penz <peter.penz@gmx.at> *
3 * *
4 * This library is free software; you can redistribute it and/or *
5 * modify it under the terms of the GNU Library General Public *
6 * License version 2 as published by the Free Software Foundation. *
7 * *
8 * This library is distributed in the hope that it will be useful, *
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
11 * Library General Public License for more details. *
12 * *
13 * You should have received a copy of the GNU Library General Public License *
14 * along with this library; see the file COPYING.LIB. If not, write to *
15 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
16 * Boston, MA 02110-1301, USA. *
17 *****************************************************************************/
19 #include "kurldropdownbutton_p.h"
20 #include "kurlnavigator.h"
22 #include <kglobalsettings.h>
24 #include <QtGui/QKeyEvent>
25 #include <QtGui/QPainter>
26 #include <QtGui/QStyleOption>
28 KUrlDropDownButton::KUrlDropDownButton(KUrlNavigator* parent) :
29 KUrlButton(parent)
33 KUrlDropDownButton::~KUrlDropDownButton()
37 QSize KUrlDropDownButton::sizeHint() const
39 QSize size = KUrlButton::sizeHint();
40 size.setWidth(size.height() / 2);
41 return size;
44 void KUrlDropDownButton::paintEvent(QPaintEvent* event)
46 Q_UNUSED(event);
48 QPainter painter(this);
49 drawHoverBackground(&painter);
51 const QColor fgColor = foregroundColor();
53 QStyleOption option;
54 option.initFrom(this);
55 option.rect = QRect(0, 0, width(), height());
56 option.palette = palette();
57 option.palette.setColor(QPalette::Text, fgColor);
58 option.palette.setColor(QPalette::WindowText, fgColor);
59 option.palette.setColor(QPalette::ButtonText, fgColor);
61 if (layoutDirection() == Qt::LeftToRight) {
62 style()->drawPrimitive(QStyle::PE_IndicatorArrowRight, &option, &painter, this);
63 } else {
64 style()->drawPrimitive(QStyle::PE_IndicatorArrowLeft, &option, &painter, this);
69 #include "kurldropdownbutton_p.moc"