File indexing completed on 2024-04-28 04:48:38

0001 /*
0002     SPDX-FileCopyrightText: 2005 Max Howell <max.howell@methylblue.com>
0003     SPDX-FileCopyrightText: 2007 Ian Monroe <ian@monroe.nu>
0004 
0005     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0006 */
0007 
0008 #ifndef DRAGONPLAYER_PARTTOOLBAR_H
0009 #define DRAGONPLAYER_PARTTOOLBAR_H
0010 
0011 #include <KToolBar>
0012 
0013 class MouseOverToolBar : public KToolBar
0014 {
0015     bool eventFilter(QObject *, QEvent *) override;
0016 
0017 public:
0018     explicit MouseOverToolBar(QWidget *parent);
0019 };
0020 
0021 #endif