Added source code.
This commit is contained in:
130
Source/Help/documentation/apps/calculator/keyshortcuts.htm
Normal file
130
Source/Help/documentation/apps/calculator/keyshortcuts.htm
Normal file
@ -0,0 +1,130 @@
|
||||
<!-- saved from url=(0014)about:internet -->
|
||||
<html>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=9" />
|
||||
<head>
|
||||
<title>Scientific Calculator: Keyboard shortcuts</title>
|
||||
<link href="style.css" rel="stylesheet" type="text/css" />
|
||||
<style type="text/css">
|
||||
td.but {
|
||||
border: 1px solid black;
|
||||
border-radius: 5px;
|
||||
padding: 2px;
|
||||
margin: -2px;
|
||||
font-size: 10pt;
|
||||
text-align: center;
|
||||
}
|
||||
td.but2 {
|
||||
margin-top: 5px;
|
||||
font-size: 9pt;
|
||||
text-align: center;
|
||||
color:gray;
|
||||
padding: 0;
|
||||
}
|
||||
td.key {
|
||||
font-family: Consolas, monospace;
|
||||
}
|
||||
th {
|
||||
text-align: left;
|
||||
font-size: 9pt;
|
||||
}
|
||||
|
||||
th#main {
|
||||
width: 100%;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
td {
|
||||
font-size: 11pt;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
td.r {
|
||||
text-align: right;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Scientific Calculator: Keyboard shortcuts</h1>
|
||||
<div class="section">
|
||||
|
||||
<h2>Keyboard shortcuts</h2>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th>Key combination</th> <th>Button equivalent</th> <th id="main">Action </th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">Num+ (+)</td>
|
||||
<td class="but">+</td>
|
||||
<td>Adds a number to another.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">Num- (-)</td>
|
||||
<td class="but">-</td>
|
||||
<td>Subtracts a number from another.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">Num*</td>
|
||||
<td class="but">*</td>
|
||||
<td>Multiplies 2 numbers.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">Num/ (/)</td>
|
||||
<td class="but">/</td>
|
||||
<td>Divide a number by another.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">Escape</td>
|
||||
<td class="but">AC</td>
|
||||
<td>Resets any calculation.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">Delete</td>
|
||||
<td class="but">Clear</td>
|
||||
<td>Deletes the current number.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">Backspace</td>
|
||||
<td class="but">⌫</td>
|
||||
<td>Removes the last inserted number.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">F1</td>
|
||||
<td class="but">Help</td>
|
||||
<td>Opens help for the application.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">Enter</td>
|
||||
<td class="but">=</td>
|
||||
<td>Performs the calculation.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="key">Ctrl + Q</td>
|
||||
<td></td>
|
||||
<td>Closes the application.</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<br />
|
||||
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
Software created by Chibici Tiberiu.
|
||||
Contact: <a href="mailto:chibicitiberiu@gmail.com">chibicitiberiu@gmail.com</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user