Salome HOME
Merge remote-tracking branch 'origin/V8_4_BR' into hydro/imps_2017
[modules/gui.git] / tools / PyEditor / src / resources / about.txt
1 <b>Python Editor</b>
2 <hr>
3
4 <p>
5 Python Editor is a simple program for writing Python scripts.
6 </p>
7
8 <p>
9 Program provides standard editing operations like copy/cut/paste, undo/redo, select all, delete, etc.
10 It supports syntax highlighting and auto-indentation of Python code.
11 </p>
12
13 <p>
14 Most often used editing operations are available via the toolbar:
15 <ul>
16 <li><b>New</b>: creates new document.</li>
17 <li><b>Open</b>: opens existing Python script for editing.</li>
18 <li><b>Save</b>: saves current document to a file.</li>
19 <li><b>Save As</b>: allows saving current document with a new name.</li>
20 <li><b>Exit</b>: quits application.</li>
21 <li><b>Undo</b>: undoes the last operation.</li>
22 <li><b>Redo</b>: redoes the previously undone operation.</li>
23 <li><b>Cut</b>: cuts selected text into the clipboard.</li>
24 <li><b>Copy</b>: copies selected text into the clipboard.</li>
25 <li><b>Paste</b>: pastes text from the clipboard into the current cursor position.</li>
26 <li><b>Delete</b>: removes selected text.</li>
27 <li><b>Select All</b>: selects the whole text in the editor.</li>
28 <li><b>Preferences</b>: opens Preferences dialog that allows specifying advanced parameters for the program.</li>
29 <li><b>Help</b>: shows this help information.</li>
30 </ul>
31 </p>
32
33 <p>
34 Also, editor supports standard <b>Find</b> and <b>Replace</b> operations.
35 </p>
36
37 <p>
38 The behavior of the editor can be customized via the <b>Preferences</b> dialog. The following options can be customized:
39 <ul>
40 <li><b>Font settings</b>: choose the font.</li>
41 <li><b>Enable current line highlight</b>: switches on background coloring of the line under the cursor.</li>
42 <li><b>Enable text wrapping</b>: allows wrapping text at the border of the editor's window.</li>
43 <li><b>Center cursor on scroll</b>: allows scrolling the script vertically to make the cursor visible at the center of the viewer.</li>
44 <li><b>Display line numbers area</b>: shows line numbers at the left border of the editor.</li>
45 <li><b>Completion mode</b>: select the completion mode for inputted keywords.</li>
46 <li><b>Vertical edge settings</b>: draws vertical line at the specified column of the viewer.</li>
47 <li><b>Display tab delimiters</b>: displays tab marks at a given number of white spaces.</li>
48 <li><b>Save settings as default</b>: saves chosen options as a default ones. These settings will be restored after application restart.</li>
49 </ul>
50 </p>