aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/widgets/copy_from_profile_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/widgets/copy_from_profile_button.h')
-rw-r--r--ui/qt/widgets/copy_from_profile_button.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/ui/qt/widgets/copy_from_profile_button.h b/ui/qt/widgets/copy_from_profile_button.h
new file mode 100644
index 0000000000..b54ed35a6c
--- /dev/null
+++ b/ui/qt/widgets/copy_from_profile_button.h
@@ -0,0 +1,43 @@
+/* copy_from_profile_button.h
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef COPY_FROM_PROFILE_BUTTON_H
+#define COPY_FROM_PROFILE_BUTTON_H
+
+#include <config.h>
+#include <glib.h>
+
+#include <QMenu>
+#include <QPushButton>
+#include <QDialogButtonBox>
+#include <QMetaObject>
+
+class CopyFromProfileButton : public QPushButton
+{
+ Q_OBJECT
+
+public:
+ CopyFromProfileButton(QWidget * parent = Q_NULLPTR, QString profileFile = QString(), QString toolTip = QString());
+
+ void setFilename(QString filename);
+
+Q_SIGNALS:
+ void copyProfile(QString filename);
+
+private:
+ QString filename_;
+ QMenu * buttonMenu_;
+
+ QAction * systemDefault(QString filename);
+
+private slots:
+ void menuActionTriggered(QAction *);
+};
+
+#endif // COPY_FROM_PROFILE_BUTTON_H