fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / kfile / kurltogglebutton_p.h
blob4405f0d474ede140b2863d5f36b053ba49ce2e94
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 *****************************************************************************/
20 #ifndef KURLTOGGLEBUTTON_P_H
21 #define KURLTOGGLEBUTTON_P_H
23 #include "kurlbutton_p.h"
24 #include <QtGui/QPixmap>
26 class KUrlNavigator;
28 /**
29 * @brief Represents the button of the URL navigator to switch to
30 * the editable mode.
32 * A cursor is shown when hovering the button.
34 class KUrlToggleButton : public KUrlButton
36 Q_OBJECT
38 public:
39 explicit KUrlToggleButton(KUrlNavigator* parent);
40 virtual ~KUrlToggleButton();
42 /** @see QWidget::sizeHint() */
43 virtual QSize sizeHint() const;
45 protected:
46 virtual void paintEvent(QPaintEvent* event);
48 private slots:
49 void updateToolTip();
51 private:
52 QPixmap m_pixmap;
55 #endif