Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet_comment_dialog.h
1 /* packet_comment_dialog.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef PACKET_COMMENT_DIALOG_H
11 #define PACKET_COMMENT_DIALOG_H
12 
13 #include <glib.h>
14 
15 #include "geometry_state_dialog.h"
16 
17 namespace Ui {
19 }
20 
22 {
23  Q_OBJECT
24 
25 public:
26  explicit PacketCommentDialog(guint32 frame, QWidget *parent = 0, QString comment = QString());
28  QString text();
29 
30 private slots:
31  void on_buttonBox_helpRequested();
32 
33 private:
35 };
36 
37 #endif // PACKET_COMMENT_DIALOG_H
Definition: geometry_state_dialog.h:15
Definition: ui_about_dialog.h:291
Definition: packet_comment_dialog.h:21
Definition: ui_packet_comment_dialog.h:67