Wireshark  4.3.0
The Wireshark network protocol analyzer
bluetooth_devices_dialog.h
Go to the documentation of this file.
1 
10 #ifndef BLUETOOTH_DEVICES_DIALOG_H
11 #define BLUETOOTH_DEVICES_DIALOG_H
12 
13 #include "config.h"
14 
15 #include <glib.h>
16 
17 #include "wireshark_dialog.h"
18 #include "cfile.h"
19 #include "packet_list.h"
20 
21 #include "epan/tap.h"
22 
23 #include <QMenu>
24 
25 class QAbstractButton;
26 class QPushButton;
27 class QTreeWidgetItem;
28 
30  tap_reset_cb tap_reset;
31  tap_packet_cb tap_packet;
32  void *ui;
34 
35 namespace Ui {
37 }
38 
40 {
41  Q_OBJECT
42 
43 public:
44  explicit BluetoothDevicesDialog(QWidget &parent, CaptureFile &cf, PacketList *packet_list);
46 
47 public slots:
48 
49 signals:
50  void updateFilter(QString filter, bool force = false);
51  void captureFileChanged(capture_file *cf);
52  void goToPacket(int packet_num);
53 
54 protected:
55  void keyPressEvent(QKeyEvent *event);
56  void captureFileClosed();
57 
58 protected slots:
59  void changeEvent(QEvent* event);
60 
61 private:
62  Ui::BluetoothDevicesDialog *ui;
63  PacketList *packet_list_;
64 
66  QMenu context_menu_;
67 
68  static void tapReset(void *tapinfo_ptr);
69  static tap_packet_status tapPacket(void *tapinfo_ptr, packet_info *pinfo, epan_dissect_t *, const void *data, tap_flags_t flags);
70 
71 private slots:
72  void on_tableTreeWidget_itemActivated(QTreeWidgetItem *item, int);
73  void on_buttonBox_clicked(QAbstractButton *button);
74  void on_actionMark_Unmark_Cell_triggered();
75  void on_actionMark_Unmark_Row_triggered();
76  void on_actionCopy_Cell_triggered();
77  void on_actionCopy_Rows_triggered();
78  void on_actionCopy_All_triggered();
79  void on_actionSave_as_image_triggered();
80  void tableContextMenu(const QPoint &pos);
81  void tableItemDoubleClicked(QTreeWidgetItem *item, int column);
82  void interfaceCurrentIndexChanged(int index);
83  void showInformationStepsChanged(int state);
84 };
85 
86 #endif // BLUETOOTH_DEVICES_DIALOG_H
Definition: bluetooth_devices_dialog.h:40
void captureFileClosed()
Called when the capture file was closed. This can be used to enable or disable widgets according to t...
Definition: bluetooth_devices_dialog.cpp:113
Definition: capture_file.h:23
Definition: packet_list.h:39
Definition: wireshark_dialog.h:35
Definition: bluetooth_devices_dialog.h:29
Definition: cfile.h:67
Definition: packet_info.h:44
Definition: epan_dissect.h:28
tap_packet_status
Definition: tap.h:25