summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/obexpopup.h
blob: 25af0d941ca0409f89c8bb2d734fc74eb63f32a8 (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
#ifndef OBEXPOPUP_H
#define OBEXPOPUP_H

#include <qpopupmenu.h>
#include <qaction.h>
#include <services.h>
#include "btdeviceitem.h"

namespace OpieTooth {

    class ObexPopup : public QPopupMenu {
        Q_OBJECT
    public:
        ObexPopup(const OpieTooth::Services& service,  OpieTooth::BTDeviceItem* item);
        ~ObexPopup();
    protected:
        QAction* m_push;
        OpieTooth::BTDeviceItem *m_item;
        Services m_service;
    protected slots:
        void slotPush();
    };
};

#endif