blob: 3702159c0ca8427ee29d926fa52de0b1d142cf51 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#ifndef IOCONTROL_H
#define IOCONTROL_H
#include <tqobject.h>
class KProcess;
class KSircProcess;
class TQListBox;
class TQListBoxItem;
class KSircIOController : public TQObject
{
Q_OBJECT
TQ_OBJECT
friend class KSircProcess;
public:
KSircIOController(KProcess *, KSircProcess *);
virtual ~KSircIOController();
void showDebugTraffic(bool show);
bool isDebugTraffic();
public slots:
virtual void stdout_read(KProcess *proc, char *_buffer, int buflen);
virtual void stderr_read(KProcess *proc, char *_buffer, int buflen);
virtual void stdin_write(TQCString);
virtual void sircDied(KProcess *);
virtual void appendDebug(TQString);
protected slots:
virtual void procCTS(KProcess *);
private slots:
void showContextMenuOnDebugWindow( TQListBoxItem *, const TQPoint &pos );
private:
TQCString holder;
bool proc_CTS;
KProcess *proc;
KSircProcess *ksircproc;
char *send_buf;
TQCString buffer;
static int counter;
TQListBox *m_debugLB;
};
#endif
|