summaryrefslogtreecommitdiff
path: root/noncore/applets/keyhelper/keyhelperapplet/anylnk/QCopLnk.h
blob: f994149feff2eba872c2c643718be69fae537fb2 (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
#ifndef _QCOPLNK_H_
#define _QCOPLNK_H_

#include <qpe/qpeapplication.h>
#include <qpe/qcopenvelope_qws.h>

#include "AnyLnk.h"
#include "KHUtil.h"

class QCopLnk : public AnyLnk
{
public:
	QCopLnk(){}
	QCopLnk(const QStringList& params)
		: AnyLnk(params){}
	virtual ~QCopLnk() {
	}

	virtual bool isValid() {
		return(true);
	}
	virtual QString name() {
		return("qcop");
	}
	virtual const QPixmap& pixmap() {
		return(m_pixmap);
	}

	virtual void execute();
protected:
};

#endif /* _QCOPLNK_H_ */