169 lines
3.7 KiB
HTML
169 lines
3.7 KiB
HTML
<!-- saved from url=(0014)about:internet -->
|
|
<html>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=9" />
|
|
<head>
|
|
<title>Matrix Calculator: Editor window</title>
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
<style type="text/css">
|
|
td.but {
|
|
font-size: 10pt;
|
|
font-weight: bold;
|
|
text-align: right;
|
|
color: gray;
|
|
}
|
|
|
|
td.sm {
|
|
font-size: 10pt;
|
|
}
|
|
|
|
th {
|
|
text-align: left;
|
|
font-size: 9pt;
|
|
background: #FAFAFA;
|
|
}
|
|
|
|
th#main {
|
|
width: 90%;
|
|
}
|
|
|
|
th#name {
|
|
width: 20%;
|
|
}
|
|
|
|
td {
|
|
font-size: 11pt;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
td.r {
|
|
text-align: right;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Matrix Calculator: Editor window</h1>
|
|
|
|
<div class="section">
|
|
<h2>Editor window</h2>
|
|
<img src="img/matrix-editor0.png" /> <br />
|
|
|
|
<table>
|
|
<tr>
|
|
<th></th> <th id="name">Name</th> <th id="main">Description </th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">1</td>
|
|
<td class="sm">Name</td>
|
|
<td>The name of the matrix. This field is required.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">2</td>
|
|
<td class="sm">Description</td>
|
|
<td>A description of the matrix. This field is optional.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">3</td>
|
|
<td class="sm">Matrix size</td>
|
|
<td>Change the number of rows and columns of the matrix.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">4</td>
|
|
<td class="sm">Apply button</td>
|
|
<td>Updates the matrix with the new size inserted.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">5</td>
|
|
<td class="sm">Reset button</td>
|
|
<td>Resets the row and column count if change was not applied.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">6</td>
|
|
<td class="sm">Accept button</td>
|
|
<td>Saves the modified matrix, and closes the window. If there are empty cells, they are filled with 0.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">7</td>
|
|
<td class="sm">Cancel button</td>
|
|
<td>Discards the modified matrix, and closes the window.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">8</td>
|
|
<td class="sm">Grid</td>
|
|
<td>This is where you can edit the matrix elements.</td>
|
|
</tr>
|
|
|
|
<tr><td> </td></tr>
|
|
<tr><th></th><th>Grid context menu</th><th></th></tr>
|
|
<tr>
|
|
<td class="but">9</td>
|
|
<td class="sm">Cut</td>
|
|
<td>Cuts the selected cells.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">A</td>
|
|
<td class="sm">Copy</td>
|
|
<td>Copies the selected cells into memory.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">B</td>
|
|
<td class="sm">Paste</td>
|
|
<td>Inserts cells from memory.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">C</td>
|
|
<td class="sm">Clear selected</td>
|
|
<td>Sets the values in the selected cells to 0.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">D</td>
|
|
<td class="sm">Clear all</td>
|
|
<td>Sets all the values in the matrix to 0.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">E</td>
|
|
<td class="sm">Insert row</td>
|
|
<td>Inserts a row before the selected cell.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">F</td>
|
|
<td class="sm">Insert column</td>
|
|
<td>Inserts a column before the selected cell.</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">G</td>
|
|
<td class="sm">Delete row</td>
|
|
<td>Deletes the row that contains the selected cell(s).</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td class="but">H</td>
|
|
<td class="sm">Delete column</td>
|
|
<td>Deletes the column that contains the selected cell(s).</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<div class="footer">
|
|
Software created by Chibici Tiberiu.
|
|
Contact: <a href="mailto:chibicitiberiu@gmail.com">chibicitiberiu@gmail.com</a>
|
|
</div>
|
|
</body>
|
|
</html> |