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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
/*
This file is part of Konsole, an X terminal.
Copyright (C) 1997,1998 by Lars Doelle <lars.doelle@on-line.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
*/
#ifndef SESSION_H
#define SESSION_H
#include <kapplication.h>
#include <kmainwindow.h>
#include <qstrlist.h>
#include "TEPty.h"
#include "TEWidget.h"
#include "TEmuVt102.h"
#include "sessioniface.h"
class KProcIO;
class KProcess;
class ZModemDialog;
class TESession : public QObject, virtual public SessionIface
{ Q_OBJECT
public:
TESession(TEWidget* w,
const QString &term, ulong winId, const QString &sessionId="session-1",
const QString &initial_cwd = QString::null);
void changeWidget(TEWidget* w);
void setPty( TEPty *_sh );
TEWidget* widget() { return te; }
~TESession();
void setConnect(bool r); // calls setListenToKeyPress(r)
void setListenToKeyPress(bool l);
TEmulation* getEmulation(); // to control emulation
bool isSecure();
bool isMonitorActivity();
bool isMonitorSilence();
bool isMasterMode();
int schemaNo();
int encodingNo();
int fontNo();
const QString& Term();
const QString& SessionId();
const QString& Title();
const QString& IconName();
const QString& IconText();
QString fullTitle() const;
int keymapNo();
QString keymap();
QStrList getArgs();
QString getPgm();
QString getCwd();
QString getInitial_cwd() { return initial_cwd; }
void setInitial_cwd(const QString& _cwd) { initial_cwd=_cwd; }
void setHistory(const HistoryType&);
const HistoryType& history();
void setMonitorActivity(bool);
void setMonitorSilence(bool);
void setMonitorSilenceSeconds(int seconds);
void setMasterMode(bool);
void setSchemaNo(int sn);
void setEncodingNo(int index);
void setKeymapNo(int kn);
void setKeymap(const QString& _id);
void setFontNo(int fn);
void setTitle(const QString& _title);
void setIconName(const QString& _iconName);
void setIconText(const QString& _iconText);
void setAddToUtmp(bool);
void setXonXoff(bool);
bool testAndSetStateIconName (const QString& newname);
bool sendSignal(int signal);
void setAutoClose(bool b) { autoClose = b; }
// Additional functions for DCOP
bool closeSession();
void clearHistory();
void feedSession(const QString &text);
void sendSession(const QString &text);
void renameSession(const QString &name);
QString sessionName() { return title; }
int sessionPID() { return sh->pid(); }
virtual bool processDynamic(const QCString &fun, const QByteArray &data, QCString& replyType, QByteArray &replyData);
virtual QCStringList functionsDynamic();
void enableFullScripting(bool b) { fullScripting = b; }
void startZModem(const QString &rz, const QString &dir, const QStringList &list);
void cancelZModem();
bool zmodemIsBusy() { return zmodemBusy; }
void print(QPainter &paint, bool friendly, bool exact);
QString schema();
void setSchema(const QString &schema);
QString encoding();
void setEncoding(const QString &encoding);
QString keytab();
void setKeytab(const QString &keytab);
QSize size();
void setSize(QSize size);
void setFont(const QString &font);
QString font();
public slots:
void run();
void setProgram( const QString &_pgm, const QStrList &_args );
void done();
void done(int);
void terminate();
void setUserTitle( int, const QString &caption );
void changeTabTextColor( int );
void ptyError();
void slotZModemDetected();
void emitZModemDetected();
void zmodemStatus(KProcess *, char *data, int len);
void zmodemSendBlock(KProcess *, char *data, int len);
void zmodemRcvBlock(const char *data, int len);
void zmodemDone();
void zmodemContinue();
signals:
void processExited(KProcess *);
void forkedChild();
void receivedData( const QString& text );
void done(TESession*);
void updateTitle(TESession*);
void notifySessionState(TESession* session, int state);
void changeTabTextColor( TESession*, int );
void disableMasterModeConnections();
void enableMasterModeConnections();
void renameSession(TESession* ses, const QString &name);
void openURLRequest(const QString &cwd);
void zmodemDetected(TESession *);
void updateSessionConfig(TESession *);
void resizeSession(TESession *session, QSize size);
void setSessionEncoding(TESession *session, const QString &encoding);
void getSessionSchema(TESession *session, QString &schema);
void setSessionSchema(TESession *session, const QString &schema);
private slots:
void onRcvBlock( const char* buf, int len );
void monitorTimerDone();
void notifySessionState(int state);
void onContentSizeChange(int height, int width);
void onFontMetricChange(int height, int width);
private:
TEPty* sh;
TEWidget* te;
TEmulation* em;
bool connected;
bool monitorActivity;
bool monitorSilence;
bool notifiedActivity;
bool masterMode;
bool autoClose;
bool wantedClose;
QTimer* monitorTimer;
//FIXME: using the indices here
// is propably very bad. We should
// use a persistent reference instead.
int schema_no;
int font_no;
int silence_seconds;
int font_h;
int font_w;
QString title;
QString userTitle;
QString iconName;
QString iconText; // as set by: echo -en '\033]1;IconText\007
bool add_to_utmp;
bool xon_xoff;
bool fullScripting;
QString stateIconName;
QString pgm;
QStrList args;
QString term;
ulong winId;
QString sessionId;
QString cwd;
QString initial_cwd;
// ZModem
bool zmodemBusy;
KProcIO* zmodemProc;
ZModemDialog* zmodemProgress;
// Color/Font Changes by ESC Sequences
QColor modifiedBackground; // as set by: echo -en '\033]11;Color\007
int encoding_no;
};
#endif
|