aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/widgets/copy_from_profile_button.h
blob: b54ed35a6c68a386a746f3dff4d10c75e15de4d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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