You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/ksirc/iocontroller.h

56 lines
1003 B

#ifndef IOCONTROL_H
#define IOCONTROL_H
#include <tqobject.h>
class TDEProcess;
class KSircProcess;
class TQListBox;
class TQListBoxItem;
class KSircIOController : public TQObject
{
Q_OBJECT
friend class KSircProcess;
public:
KSircIOController(TDEProcess *, KSircProcess *);
virtual ~KSircIOController();
void showDebugTraffic(bool show);
bool isDebugTraffic();
public slots:
virtual void stdout_read(TDEProcess *proc, char *_buffer, int buflen);
virtual void stderr_read(TDEProcess *proc, char *_buffer, int buflen);
virtual void stdin_write(TQCString);
virtual void sircDied(TDEProcess *);
virtual void appendDebug(TQString);
protected slots:
virtual void procCTS(TDEProcess *);
private slots:
void showContextMenuOnDebugWindow( TQListBoxItem *, const TQPoint &pos );
private:
TQCString holder;
bool proc_CTS;
TDEProcess *proc;
KSircProcess *ksircproc;
char *send_buf;
TQCString buffer;
static int counter;
TQListBox *m_debugLB;
};
#endif