File: code_editor.html

package info (click to toggle)
diasce2 1.3.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,688 kB
  • ctags: 1,586
  • sloc: ansic: 22,810; sh: 3,060; makefile: 489; yacc: 318
file content (44 lines) | stat: -rw-r--r-- 1,828 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>The Code Editor Window</title>
</head>
<body>
<style type="text/css"><!--
table {
	border: solid 2px blue;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
	background-color: #01A4FF;
	width: 100%;
	padding: 2;
}

--></style>

<table cellspacing="2"><tr valign="middle">
<td><a accesskey="p" href="gui_tree.html"><img src="images/left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="other_elements.html"><img src="images/up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="images/home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">DiaSCE manual</th>
<td><a accesskey="n" href="message_window.html"><img src="images/right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr></table>
<p><h3>The Code Editor Window</h3></p>
<p>This window is where the files are shown. It has different tabs:</p>
<ul>
<li>1st tab: This is the "master" tab. Every file that is loaded for the first 
time will be shown in this tab. You can then move the file to another tab by 
selecting "Move to new tab" from the right-mouse-button menu.</li>

<li>2nd tab: This is the "functions" tab. This tab is used to display the 
function definitions you want. When you want to see one function's definition, 
you just have to put the cursor over the function call, and from the 
right-mouse-button menu, select "Show Function". The definition of the 
function will be show in this tab.</li>

<li>next tabs: This tabs are used when you select "Move to new tab" when you're 
viewing one file in the 1st tab.</li>
</ul>
<p><img src="images/code_editor.png" width="800" height="504" alt="Code Editor window"></p>
</body>
</html>