summaryrefslogtreecommitdiffstats
path: root/ksirc/iocontroller.h
blob: 67360219a0fed3b486e1c2465afcf05c70f8c1b0 (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 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