Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: apps/moterm/README.md

Issue 1337563002: Add README.md files for moterm and moterm_example_app. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | examples/moterm_example_app/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Moterm
2
3 `moterm` is an application that provides an embeddable view, which provides a
4 VT100-style terminal that its embedder can connect to other applications. It is
5 not useful as a standalone application (embedded by something, like a window
6 manager, that is not aware of how to control it).
7
8 For an example of an embedder that's useful as a standalone application, see the
9 [Moterm example application](../../examples/moterm_example_app).
10
11 ## Details
12
13 `moterm` exposes the `mojo.terminal.Terminal` interface to its embedder. Via
14 this interface, its embedder may connect to the terminal directly (for direct
15 input/output with the terminal) or request that the terminal connect to another
16 application. In the latter case, that application should implement the
17 `mojo.terminal.TerminalClient` interface.
18
19 Output to/input from the terminal is done via a `mojo.files.File` that behaves
20 "like a terminal" (in much the same way as in Unix one has terminal device
21 files and file descriptors to them).
22
23 ## See also
24
25 * [//examples/moterm_example_app](../../examples/moterm_example_app)
26 * [//mojo/services/files/public/interfaces](../../mojo/services/files/public/int erfaces)
27 * [//mojo/services/terminal/public/interfaces](../../mojo/services/terminal/publ ic/interfaces)
OLDNEW
« no previous file with comments | « no previous file | examples/moterm_example_app/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698