summaryrefslogtreecommitdiffstats
path: root/konsole/doc/framework
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit4aed2c8219774f5d797760606b8489a92ddc5163 (patch)
tree3f8c130f7d269626bf6a9447407ef6c35954426a /konsole/doc/framework
downloadtdebase-4aed2c8219774f5d797760606b8489a92ddc5163.tar.gz
tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konsole/doc/framework')
-rw-r--r--konsole/doc/framework33
1 files changed, 33 insertions, 0 deletions
diff --git a/konsole/doc/framework b/konsole/doc/framework
new file mode 100644
index 000000000..b07f8e6d5
--- /dev/null
+++ b/konsole/doc/framework
@@ -0,0 +1,33 @@
+/*! \page framework
+ The terminal emulation framework
+
+The structure of the framework is as follows:
+
+<pre>
+ - - - - - - > - - - - - ->
+ TEWidget VT102Emulation Shell
+ <------------ < - - - - -
+ |
+ |
+ V
+ TEScreen
+</pre>
+
+Within the drawing, a solid line (A --> B) mean A calls B while the dashed
+lines means connected by signal.
+
+Thus the AnsiEmulation knows about TEWidget and TEScreen, but not the other
+way round. `main.C' connects the whole framework.
+
+The state of the emulation is somewhat like `version 0.8'. It knows most
+xterm/vt100 escape codes and does well with bash, vi and mc right now.
+
+'man' shows a little different output since underlines are missing.
+
+The `Shell' material is a dump but of no real importance.
+
+The current implementation does not longer fit to 'kom' since we
+are using block operations with the modem. May be we can implement
+this within the main program to indicate the end of bulk there.
+
+*/