Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
detachable_tabwidget.h
1/* @file
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
5 * Copyright 1998 Gerald Combs
6 *
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
9
10#ifndef DETACHABLE_TABWIDGET_H
11#define DETACHABLE_TABWIDGET_H
12
13#include <wireshark.h>
14
15#include <QTabWidget>
16#include <QDialog>
17#include <QEvent>
18#include <QCloseEvent>
19#include <QTabBar>
20#include <QPoint>
21#include <QCursor>
22
23class DetachableTabWidget : public QTabWidget
24{
25 Q_OBJECT
26public:
27 DetachableTabWidget(QWidget * parent = nullptr);
28
29 QString tabBasename() const;
30
31protected:
32
33 void setTabBasename(QString newName);
34
35protected slots:
36
37 virtual void moveTab(int from, int to);
38 virtual void detachTab(int tabIdx, QPoint pos);
39 virtual void attachTab(QWidget * content, QString name);
40
41private:
42 QString _tabBasename;
43
44};
45
46class ToolDialog : public QDialog
47{
48 Q_OBJECT
49public:
50 explicit ToolDialog(QWidget * _contentWidget, QWidget * parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
51
52protected:
53
54 virtual bool event(QEvent *event);
55 virtual void closeEvent(QCloseEvent *event);
56
57signals:
58 void onCloseSignal(QWidget * contentWidget, QString name);
59
60private:
61 QWidget * _contentWidget;
62};
63
64class DragDropTabBar : public QTabBar
65{
66 Q_OBJECT
67public:
68 explicit DragDropTabBar(QWidget * parent);
69
70signals:
71 void onDetachTab(int tabIdx, QPoint pos);
72 void onMoveTab(int oldIdx, int newIdx);
73
74protected:
75 virtual void mouseDoubleClickEvent(QMouseEvent *event);
76 virtual void mousePressEvent(QMouseEvent *event);
77 virtual void mouseMoveEvent(QMouseEvent *event);
78 virtual void dragEnterEvent(QDragEnterEvent *event);
79 virtual void dropEvent(QDropEvent *event);
80
81private:
82 QPoint _dragStartPos;
83 QPoint _dragDropPos;
84 QCursor _mouseCursor;
85 bool _dragInitiated;
86
87};
88
89#endif // DETACHABLE_TABWIDGET_H
Definition detachable_tabwidget.h:24
Definition detachable_tabwidget.h:65
Definition detachable_tabwidget.h:47
virtual bool event(QEvent *event)
Definition detachable_tabwidget.cpp:103