summaryrefslogtreecommitdiffstats
path: root/kdbg/ttywnd.h
blob: 1ed3e92661e8b7cbddcdaec8067e552e7901ab9d (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 * Copyright Johannes Sixt
 * This file is licensed under the GNU General Public License Version 2.
 * See the file COPYING in the toplevel directory of the source directory.
 */

#ifndef TTYWND_H
#define TTYWND_H

#include <tqtextedit.h>

class TQSocketNotifier;
class TQPopupMenu;

/**
 * This class is cortesy Judin Max <novaprint@mtu-net.ru>.
 *
 * The master side of the TTY is the emulator.
 *
 * The slave side is where a client process can write output and can read
 * input. For this purpose, it must open the file (terminal device) whose
 * name is returned by @ref slaveTTY for both reading and writing. To
 * establish the stdin, stdout, and stderr channels the file descriptor
 * obtained by this must be dup'd to file descriptors 0, 1, and 2, resp.
 */
class STTY : public TQObject
{
    Q_OBJECT
public: 
    STTY();
    ~STTY();

    TQString slaveTTY(){ return m_slavetty; };

protected slots:
    void outReceived(int);

signals:
    void output(char* buffer, int charlen);

protected:
    int m_masterfd;
    int m_slavefd;
    TQSocketNotifier* m_outNotifier;
    TQString m_slavetty;
    bool findTTY();
};

class TTYWindow : public TQTextEdit
{
    Q_OBJECT
public:
    TTYWindow(TQWidget* parent, const char* name);
    ~TTYWindow();

    TQString activate();
    void deactivate();

protected:
    STTY* m_tty;
    virtual TQPopupMenu* createPopupMenu(const TQPoint& pos);
    int m_hPos;		//!< tracks horizontal cursor position

protected slots:
    void slotAppend(char* buffer, int count);
    void slotClear();
};

#endif // TTYWND_H