wireshark/ui/qt/extcap_argument_file.h
Moshe Kaplan 3953ddcf57 Add UI header files to Doxygen
Add @file markers for UI
header files so that Doxygen will
generate documentation for them.
2021-11-30 08:01:36 -05:00

45 lines
929 B
C++

/** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef UI_QT_EXTCAP_ARGUMENT_FILE_H_
#define UI_QT_EXTCAP_ARGUMENT_FILE_H_
#include <QObject>
#include <QWidget>
#include <QLineEdit>
#include <extcap_parser.h>
#include <extcap_argument.h>
class ExtcapArgumentFileSelection : public ExtcapArgument
{
Q_OBJECT
public:
ExtcapArgumentFileSelection(extcap_arg * argument, QObject * parent = Q_NULLPTR);
virtual ~ExtcapArgumentFileSelection();
virtual QWidget * createEditor(QWidget * parent);
virtual QString value();
virtual bool isValid();
protected:
QLineEdit * textBox;
private slots:
/* opens the file dialog */
void openFileDialog();
/* clears previously entered filename */
void clearFilename();
};
#endif /* UI_QT_EXTCAP_ARGUMENT_FILE_H_ */