Wireshark  4.3.0
The Wireshark network protocol analyzer
remote_capture_dialog.h
Go to the documentation of this file.
1 
10 #ifndef REMOTE_CAPTURE_DIALOG_H
11 #define REMOTE_CAPTURE_DIALOG_H
12 
13 #include <config.h>
14 
15 #ifdef HAVE_PCAP_REMOTE
16 #include <QDialog>
17 #include "capture_opts.h"
18 
19 namespace Ui {
20 class RemoteCaptureDialog;
21 }
22 
23 class RemoteCaptureDialog : public QDialog
24 {
25  Q_OBJECT
26 
27 public:
28  explicit RemoteCaptureDialog(QWidget *parent = 0);
29  ~RemoteCaptureDialog();
30 
31 signals:
32  void remoteAdded(GList *rlist, remote_options *roptions);
33 
34 private slots:
35  void on_pwAuth_toggled(bool checked);
36  void on_nullAuth_toggled(bool checked);
37  void apply_remote();
38  void hostChanged(const QString host);
39 
40 private:
41  Ui::RemoteCaptureDialog *ui;
42 
43  void fillComboBox();
44 };
45 #endif
46 #endif // REMOTE_CAPTURE_DIALOG_H