/* drag_drop_toolbar.h * * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef DRAG_DROP_TOOLBAR_H #define DRAG_DROP_TOOLBAR_H #include #include class DragDropToolBar : public QToolBar { Q_OBJECT public: explicit DragDropToolBar(const QString &title, QWidget *parent = Q_NULLPTR); explicit DragDropToolBar(QWidget *parent = Q_NULLPTR); ~DragDropToolBar(); virtual void clear(); Q_SIGNALS: void actionMoved(QAction * action, int oldPos, int newPos); void newFilterDropped(QString description, QString filter); protected: virtual void childEvent(QChildEvent * event); virtual bool eventFilter(QObject * obj, QEvent * ev); virtual void dragEnterEvent(QDragEnterEvent *event); virtual void dragMoveEvent(QDragMoveEvent *event); virtual void dropEvent(QDropEvent *event); private: QPoint dragStartPosition; int childCounter; void setupToolbar(); void moveToolbarItems(int fromPos, int toPos); }; #endif // DRAG_DROP_TOOLBAR_H /* * Editor modelines * * Local Variables: * c-basic-offset: 4 * tab-width: 8 * indent-tabs-mode: nil * End: * * ex: set shiftwidth=4 tabstop=8 expandtab: * :indentSize=4:tabSize=8:noTabs=true: */