LATER... ei_kerberos_kdc_session_key ...
[wireshark-sm.git] / ui / qt / capture_comment_dialog.h
blob5e7cb2b3fd44f54f84b014c4bfcec2453583b028
1 /** @file
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 #ifndef CAPTURE_COMMENT_DIALOG_H
11 #define CAPTURE_COMMENT_DIALOG_H
13 #include "wireshark_dialog.h"
15 namespace Ui {
16 class CaptureCommentDialog;
19 class CaptureCommentDialog : public WiresharkDialog
21 Q_OBJECT
23 public:
24 explicit CaptureCommentDialog(QWidget &parent, CaptureFile &capture_file);
25 ~CaptureCommentDialog();
27 signals:
28 void captureCommentChanged();
30 private slots:
31 void addComment();
32 void updateWidgets();
33 void on_buttonBox_helpRequested();
34 void on_buttonBox_accepted();
35 void on_buttonBox_rejected();
37 private:
38 QPushButton *actionAddButton;
39 Ui::CaptureCommentDialog *ui;
42 #endif // CAPTURE_COMMENT_DIALOG_H