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 <tqstrlist.h>
#include "TEPty.h"
#include "TEWidget.h"
#include "TEmuVt102.h"
#include "sessioniface.h"
class KProcIO;
class KProcess;
class ZModemDialog;
class TESession : public TQObject, virtual public SessionIface
{ Q_OBJECT
public:
TESession(TEWidget* w,
const TQString &term, ulong winId, const TQString &sessionId="session-1",
const TQString &initial_cwd = TQString::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 TQString& Term();
const TQString& SessionId();
const TQString& Title();
const TQString& IconName();
const TQString& IconText();
TQString fullTitle() const;
int keymapNo();
TQString keymap();
TQStrList getArgs();
TQString getPgm();
TQString getCwd();
TQString getInitial_cwd() { return initial_cwd; }
void setInitial_cwd(const TQString& _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 TQString& _id);
void setFontNo(int fn);
void setTitle(const TQString& _title);
void setIconName(const TQString& _iconName);
void setIconText(const TQString& _iconText);
void setAddToUtmp(bool);
void setXonXoff(bool);
bool testAndSetStateIconName (const TQString& newname);
bool sendSignal(int signal);
void setAutoClose(bool b) { autoClose = b; }
// Additional functions for DCOP
bool closeSession();
void clearHistory();
void feedSession(const TQString &text);
void sendSession(const TQString &text);
void renameSession(const TQString &name);
TQString sessionName() { return title; }
int sessionPID() { return sh->pid(); }
virtual bool processDynamic(const TQCString &fun, const TQByteArray &data, TQCString& replyType, TQByteArray &replyData);
virtual QCStringList functionsDynamic();
void enableFullScripting(bool b) { fullScripting = b; }
void startZModem(const TQString &rz, const TQString &dir, const TQStringList &list);
void cancelZModem();
bool zmodemIsBusy() { return zmodemBusy; }
void print(TQPainter &paint, bool friendly, bool exact);
TQString schema();
void setSchema(const TQString &schema);
TQString encoding();
void setEncoding(const TQString &encoding);
TQString keytab();
void setKeytab(const TQString &keytab);
TQSize size();
void setSize(TQSize size);
void setFont(const TQString &font);
TQString font();
public slots:
void run();
void setProgram( const TQString &_pgm, const TQStrList &_args );
void done();
void done(int);
void terminate();
void setUserTitle( int, const TQString &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 TQString& 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 TQString &name);
void openURLRequest(const TQString &cwd);
void zmodemDetected(TESession *);
void updateSessionConfig(TESession *);
void resizeSession(TESession *session, TQSize size);
void setSessionEncoding(TESession *session, const TQString &encoding);
void getSessionSchema(TESession *session, TQString &schema);
void setSessionSchema(TESession *session, const TQString &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;
TQTimer* 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;
TQString title;
TQString userTitle;
TQString iconName;
TQString iconText; // as set by: echo -en '\033]1;IconText\007
bool add_to_utmp;
bool xon_xoff;
bool fullScripting;
QString stateIconName;
TQString pgm;
TQStrList args;
TQString term;
ulong winId;
TQString sessionId;
TQString cwd;
TQString initial_cwd;
// ZModem
bool zmodemBusy;
KProcIO* zmodemProc;
ZModemDialog* zmodemProgress;
// Color/Font Changes by ESC Sequences
TQColor modifiedBackground; // as set by: echo -en '\033]11;Color\007
int encoding_no;
};
#endif
|