3 // Copyright by Johannes Sixt
4 // This file is under GPL, the GNU General Public Licence
6 #include <qsocketnotifier.h>
7 #include <qpopupmenu.h>
9 #include <kglobalsettings.h>
17 #include <unistd.h> /* open, close, etc. */
19 #ifdef HAVE_SYS_IOCTL_H
20 #include <sys/ioctl.h>
22 #ifdef HAVE_SYS_STAT_H
26 #include <pty.h> /* openpty on Linux */
29 #include <libutil.h> /* openpty on FreeBSD */
31 #ifdef HAVE_UTIL_H /* openpty on NetBSD, OpenBSD */
47 ::fcntl(m_masterfd
, F_SETFL
, O_NDELAY
);
48 m_outNotifier
= new QSocketNotifier(m_masterfd
, QSocketNotifier::Read
);
49 connect(m_outNotifier
, SIGNAL(activated(int)), SLOT(outReceived(int)));
51 m_slavetty
= QString();
69 #ifdef HAVE_FUNC_OPENPTY
70 /* use glibc2's openpty */
73 if (::openpty(&m_masterfd
, &m_slavefd
, 0, 0, 0) == 0) {
74 const char* tname
= ::ttyname(m_slavefd
);
80 m_masterfd
= m_slavefd
= -1;
86 // resort to BSD-style terminals
92 char ptynam
[] = "/dev/ptyxx";
93 char ttynam
[] = "/dev/ttyxx";
94 static const char ptyc3
[] = "pqrstuvwxyzabcde";
95 static const char ptyc4
[] = "0123456789abcdef";
97 // Find a master pty that we can open
98 for (s3
= ptyc3
; *s3
!= 0 && m_masterfd
< 0; s3
++)
100 for (s4
= ptyc4
; *s4
!= 0; s4
++)
102 ptynam
[8] = ttynam
[8] = *s3
;
103 ptynam
[9] = ttynam
[9] = *s4
;
104 if ((m_masterfd
= ::open(ptynam
,O_RDWR
)) >= 0)
106 if (::geteuid() == 0 || ::access(ttynam
,R_OK
|W_OK
) == 0)
118 return m_masterfd
>= 0;
121 void STTY::outReceived(int f
)
125 int n
= ::read(f
, buf
, sizeof(buf
));
127 if (errno
!= EAGAIN
) { /* this is not an error */
128 // ugh! error! somebody disconnect this signal please!
130 TRACE(QString().sprintf("error reading tty: %d", e
));
142 TTYWindow::TTYWindow(QWidget
* parent
, const char* name
) :
143 KTextView(parent
, name
),
146 setFont(KGlobalSettings::fixedFont());
147 setFocusPolicy(WheelFocus
);
150 // create a context menu
151 m_popmenu
= new QPopupMenu
;
152 m_popmenu
->insertItem(i18n("&Clear"), this, SLOT(clear()));
155 TTYWindow::~TTYWindow()
162 QString
TTYWindow::activate()
164 // allocate a pseudo terminal
167 QString ttyName
= m_tty
->slaveTTY();
168 if (ttyName
.isEmpty()) {
169 // failed to allocate terminal
174 connect(m_tty
, SIGNAL(output(char*,int)), SLOT(slotAppend(char*,int)));
179 void TTYWindow::deactivate()
185 void TTYWindow::slotAppend(char* buffer
, int count
)
187 // is last line visible?
188 bool bottomVisible
= lastRowVisible() == m_texts
.size()-1;
191 char* start
= buffer
;
194 while (count
> 0 && start
[len
] != '\n') {
199 QString str
= QString::fromLatin1(start
, len
);
201 str
= m_texts
[m_texts
.size()-1] + str
;
202 replaceLine(m_texts
.size()-1, str
);
206 if (count
> 0 && *start
== '\n') {
207 insertLine(QString());
213 // if last row was visible, scroll down to make it visible again
215 setTopCell(m_texts
.size()-1);
218 void TTYWindow::clear()
221 m_width
= 300; m_height
= 14; /* Same as in KTextView::KTextView */
222 insertLine(QString());
225 void TTYWindow::mousePressEvent(QMouseEvent
* mouseEvent
)
227 // Check if right button was clicked.
228 if (mouseEvent
->button() == RightButton
)
230 if (m_popmenu
->isVisible()) {
233 m_popmenu
->popup(mapToGlobal(mouseEvent
->pos()));
236 QWidget::mousePressEvent(mouseEvent
);
240 #include "ttywnd.moc"