You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
377 B
C
27 lines
377 B
C
14 years ago
|
#ifndef REMOTECTRLIMPL_H
|
||
|
#define REMOTECTRLIMPL_H
|
||
|
|
||
|
#include "remotectrl.h"
|
||
|
|
||
|
class QSocket;
|
||
|
|
||
|
class RemoteCtrlImpl : public RemoteCtrl
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
RemoteCtrlImpl( QSocket * );
|
||
|
|
||
|
private slots:
|
||
|
void sendImage();
|
||
|
void sendText();
|
||
|
void sendPalette();
|
||
|
|
||
|
private:
|
||
|
void sendPacket( const QVariant & );
|
||
|
|
||
|
QSocket *socket;
|
||
|
};
|
||
|
|
||
|
#endif // REMOTECTRLIMPL_H
|