nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /* remote_capture_dialog.h
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21  
22 #ifndef REMOTE_CAPTURE_DIALOG_H
23 #define REMOTE_CAPTURE_DIALOG_H
24  
25 #include <config.h>
26  
27 #ifdef HAVE_PCAP_REMOTE
28 #include <QDialog>
29 #include <glib.h>
30 #include "capture_opts.h"
31  
32  
33 namespace Ui {
34 class RemoteCaptureDialog;
35 }
36  
37 class RemoteCaptureDialog : public QDialog
38 {
39 Q_OBJECT
40  
41 public:
42 explicit RemoteCaptureDialog(QWidget *parent = 0);
43 ~RemoteCaptureDialog();
44  
45 signals:
46 void remoteAdded(GList *rlist, remote_options *roptions);
47  
48 private slots:
49 void on_pwAuth_toggled(bool checked);
50 void on_nullAuth_toggled(bool checked);
51 void apply_remote();
52 void hostChanged(QString host);
53  
54 private:
55 Ui::RemoteCaptureDialog *ui;
56  
57 void fillComboBox();
58 };
59 #endif
60 #endif // REMOTE_CAPTURE_DIALOG_H
61  
62 /*
63 * Editor modelines
64 *
65 * Local Variables:
66 * c-basic-offset: 4
67 * tab-width: 8
68 * indent-tabs-mode: nil
69 * End:
70 *
71 * ex: set shiftwidth=4 tabstop=8 expandtab:
72 * :indentSize=4:tabSize=8:noTabs=true:
73 */