2012-05-16 03:54:21 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-05-20 17:14:34 -04:00
|
|
|
#ifndef KEEPASSX_DRAGTABBAR_H
|
|
|
|
#define KEEPASSX_DRAGTABBAR_H
|
2012-05-16 03:54:21 -04:00
|
|
|
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QTabBar>
|
2012-05-16 03:54:21 -04:00
|
|
|
|
|
|
|
class DragTabBar : public QTabBar
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-07-24 12:28:12 -04:00
|
|
|
explicit DragTabBar(QWidget* parent = nullptr);
|
2012-05-16 03:54:21 -04:00
|
|
|
|
|
|
|
protected:
|
2015-07-24 12:28:12 -04:00
|
|
|
void dragEnterEvent(QDragEnterEvent* event) override;
|
|
|
|
void dragMoveEvent(QDragMoveEvent* event) override;
|
|
|
|
void dragLeaveEvent(QDragLeaveEvent* event) override;
|
|
|
|
void dropEvent(QDropEvent* event) override;
|
|
|
|
void tabLayoutChange() override;
|
2012-05-16 03:54:21 -04:00
|
|
|
|
2017-03-10 09:58:42 -05:00
|
|
|
private slots:
|
2012-05-16 03:54:21 -04:00
|
|
|
void dragSwitchTab();
|
|
|
|
|
|
|
|
private:
|
2012-07-19 07:57:55 -04:00
|
|
|
QTimer* const m_tabSwitchTimer;
|
2012-05-16 03:54:21 -04:00
|
|
|
int m_tabSwitchIndex;
|
|
|
|
};
|
|
|
|
|
2012-05-20 17:14:34 -04:00
|
|
|
#endif // KEEPASSX_DRAGTABBAR_H
|