/* $Id$ */ /* PAN context menu */ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef HIDPOPUP_H #define HIDPOPUP_H #include #include #include #include #include "btdeviceitem.h" namespace OpieTooth { class HidPopup : public QPopupMenu { Q_OBJECT public: HidPopup(const OpieTooth::Services&, OpieTooth::BTDeviceItem*); ~HidPopup(); private: QAction* m_push; OpieTooth::BTDeviceItem *m_item; Opie::Core::OProcess* m_hidConnect; //HID process private slots: void slotConnect(); void slotDisconnect(); void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len ); void fillErr(Opie::Core::OProcess*, char*, int); void slotProcessExited(Opie::Core::OProcess* proc); }; }; #endif