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