diff options
author | Mats Lidell <matsl@rockbox.org> | 2003-03-14 11:17:58 +0000 |
---|---|---|
committer | Mats Lidell <matsl@rockbox.org> | 2003-03-14 11:17:58 +0000 |
commit | f2072f03a7083026d985709da342e0b36ee672df (patch) | |
tree | 72833ae7f5d2118e78c1cb7a859cf09c02f1c665 /www | |
parent | b551e36fb062e17cec35df0d761aa41a5c6cea91 (diff) | |
download | rockbox-f2072f03a7083026d985709da342e0b36ee672df.tar.gz rockbox-f2072f03a7083026d985709da342e0b36ee672df.zip |
Created.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3442 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'www')
-rw-r--r-- | www/manual/play-keyboard-Naentered.png | bin | 0 -> 4408 bytes | |||
-rw-r--r-- | www/manual/play-keyboard-Nselected.png | bin | 0 -> 4348 bytes | |||
-rw-r--r-- | www/manual/play-keyboard-accept.png | bin | 0 -> 4293 bytes | |||
-rw-r--r-- | www/manual/play-keyboard-initial.png | bin | 0 -> 4379 bytes | |||
-rw-r--r-- | www/manual/play-keyboard.t | 94 |
5 files changed, 94 insertions, 0 deletions
diff --git a/www/manual/play-keyboard-Naentered.png b/www/manual/play-keyboard-Naentered.png Binary files differnew file mode 100644 index 0000000000..088aa0e605 --- /dev/null +++ b/www/manual/play-keyboard-Naentered.png diff --git a/www/manual/play-keyboard-Nselected.png b/www/manual/play-keyboard-Nselected.png Binary files differnew file mode 100644 index 0000000000..8fd7cc473d --- /dev/null +++ b/www/manual/play-keyboard-Nselected.png diff --git a/www/manual/play-keyboard-accept.png b/www/manual/play-keyboard-accept.png Binary files differnew file mode 100644 index 0000000000..cebdfa6f45 --- /dev/null +++ b/www/manual/play-keyboard-accept.png diff --git a/www/manual/play-keyboard-initial.png b/www/manual/play-keyboard-initial.png Binary files differnew file mode 100644 index 0000000000..df1e453e4d --- /dev/null +++ b/www/manual/play-keyboard-initial.png diff --git a/www/manual/play-keyboard.t b/www/manual/play-keyboard.t new file mode 100644 index 0000000000..bda482b6fd --- /dev/null +++ b/www/manual/play-keyboard.t @@ -0,0 +1,94 @@ +#define _PAGE_ Manual - Player keyboard +#include "head.t" +#include "manual.t" + + <p> + The keyboard allows you to edit text. The first line holds the + text being edited and the second line is a combined menu line + where you both can select characters for insertion and the + operations; backspace, delete, accept and abort. + </p> + + <p> + You move between the lines using the normal LEFT and RIGHT + buttons. An arrow to the left indicate what line is selected. The + second line will scroll. This is like like in most menus except + that the first line will always show the text being edited. + </p> + + <h2>Button bindings and functionality</h2> + + <table class=buttontable> + <tr><th>Line</th><th>Function and key bindings</th> + <tr><td>First</td><td>Text - Use UP and DOWN to move the cursor</td></tr> + <tr><td>Second</td> + <td> + <table> + <tr> + <td>Characters</td><td>Chars selectable for + input. With ON insert the char between the + arrows. Select another character by using UP and + DOWN. Finally change the character subset with + MENU. There are three subsets to choose from: + capital letters, small letters and others.</td> + </tr> + <tr> + <td>Backspace</td><td>Use UP to delete the char to the + left the cursor.</td> + </tr> + <tr><td>Delete</td><td>Use UP to delete char under the + cursor</td> + </tr> + <tr><td>Accept</td><td>UP accepts the text and returns + to the application</td> + </tr> + <tr><td>Abort</td><td>UP returns to the application + without any change</td> + </tr> + </table> + </td> + </tr> + </table> + + <h2>Example</h2> + + <p>Supposed we want edit the text "file.mp3" and change it to + "fileName.mp3". Maybe as a part of doing a rename operation. This + is how the screen will look:</p> + + <img src="play-keyboard-initial.png"> + + <p>Note how the arrow points to the first line. This means that UP + and DOWN will move the cursor on the first line so that you can + select where to insert a char or where to delete chars.</p> + + <p>Now we press DOWN three times to move the cursor so it will be + above the dot. The we move down to the second line by pressing + RIGHT. Finally we select the character N by pressing UP a few + times. You will se that the second line will scroll to the left + placing a new character between the arrows each time you press + UP. We continue doing this until we have N between the arrows. The + screen will look something like this then.</p> + + <img src="play-keyboard-Nselected.png"> + + <p>We are now ready to insert out first character. Press ON and N + will be inserted at the place of the cursor.</p> + + <p>To get to the small letters we press MENU, move to 'a' by using + UP and DOWN, insert it by pressing ON.</p> + + <img src="play-keyboard-Naentered.png"> + + <p>Finally to feed our new text back to the application requesting + this we move further down by pressing RIGHT. This will scroll the + second line vertically, move away the character insertion line and + another menu line will be visible. We continue pressing RIGHT until + the menu choice Accept is visible.</p> + + <img src="play-keyboard-accept.png"> + + <p>We acknowledge this by pressing UP. We are done. We will now be + taken back to where we were before entering the keyboard.</p> + +#include "foot.t" |