workaround occasional read past buffer end in the scanner.
[kdelibs.git] / kfile / kurldropdownbutton_p.h
blob68bcf7b6b6a84d4785508d5b781764907d32f0f3
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 #ifndef KURLDROPDOWNBUTTON_P_H
20 #define KURLDROPDOWNBUTTON_P_H
22 #include "kurlbutton_p.h"
24 class KUrlNavigator;
26 /**
27 * @brief Button of the URL navigator which offers a drop down menu
28 * of hidden paths.
30 * The button will only be shown if the width of the URL navigator is
31 * too small to show the whole path.
33 class KUrlDropDownButton : public KUrlButton
35 Q_OBJECT
37 public:
38 explicit KUrlDropDownButton(KUrlNavigator* parent);
39 virtual ~KUrlDropDownButton();
41 /** @see QWidget::sizeHint() */
42 virtual QSize sizeHint() const;
44 protected:
45 virtual void paintEvent(QPaintEvent* event);
48 #endif