File indexing completed on 2024-04-14 04:53:04

0001 /*
0002     SPDX-FileCopyrightText: 2009 David Faure <faure@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef KONQMULTITABBAR_H
0008 #define KONQMULTITABBAR_H
0009 
0010 #include <QUrl>
0011 #include <kmultitabbar.h>
0012 
0013 class KonqMultiTabBar : public KMultiTabBar
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     explicit KonqMultiTabBar(QWidget *parent);
0019 
0020 Q_SIGNALS:
0021     void urlsDropped(const QList<QUrl> &urls);
0022 
0023 protected:
0024     void dragEnterEvent(QDragEnterEvent *event) override;
0025     void dragMoveEvent(QDragMoveEvent *event) override;
0026     void dropEvent(QDropEvent *event) override;
0027 };
0028 
0029 #endif /* KONQMULTITABBAR_H */
0030