1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Bug 404695: Removing screenshots from menu docs

Also makes a tiny change to the CSS applied to
the menu items, setting vertical-align:top.

Change-Id: If54e5a15d96654a0697d4f3f56f32745d9bae031
Reviewed-on: https://git.eclipse.org/r/11595
Reviewed-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
IP-Clean: Sergey Prigogin <eclipse.sprigogin@gmail.com>
Tested-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
This commit is contained in:
Jesse Weinstein 2013-04-01 21:42:53 -04:00 committed by Sergey Prigogin
parent ae9dddcd75
commit 2a9b8c4bbb
15 changed files with 88 additions and 98 deletions

View file

@ -43,7 +43,7 @@ th { font-weight: bold }
}
.menu, .option td { vertical-align: top; }
td.menu_name, td.option_name {font-weight: bold;}
td.menu_name, td.option_name {vertical-align: top; font-weight: bold;}
/* Mike Behm's addition to the style sheet */
.userinput { font-family: monospace; }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

View file

@ -11,9 +11,6 @@
<body>
<div role="main">
<h1>Edit Menu actions</h1>
<p>
<img src="../images/cdt_menu_edit.png" alt="Selecting Edit Menu">
</p>
<table class="menu" border="1" cellspacing="0">
<thead>
<tr>

View file

@ -9,9 +9,6 @@
<body>
<div role="main">
<h1>File Menu actions</h1>
<p>
<img src="../images/cdt_menu_file.png" alt="Selecting File Menu">
</p>
<table class="menu" border="1" cellspacing="0">
<thead>
<tr>

View file

@ -9,10 +9,6 @@
<body>
<div role="main">
<h1>Navigate Menu actions</h1>
<p>
<img src="../images/cdt_menu_navigate.png"
alt="Selecting Navigate Menu">
</p>
<table class="menu" border="1" cellspacing="0" cellpadding="3">
<thead>
<tr>

View file

@ -1,9 +1,8 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Refactor Menu actions</title>
<link rel="stylesheet" type="text/css" href="../help.css">
</head>
@ -11,70 +10,73 @@
<div role="main">
<h1>Refactor Menu actions</h1>
<p>
<img src="../images/cdt_menu_refactor.png"
alt="Selecting Refactor Menu">
</p>
<table class="menu" border="1" cellspacing="0">
<tr>
<th id="name">Name</th>
<th id="function">Function</th>
<th id="keyboard">Keyboard Shortcut</th>
</tr>
<tr>
<td class="menu_name" headers="name">Apply Script...</td>
<td headers="function">Applies a previously saved list of refactorings.</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<tr>
<td class="menu_name" headers="name">Create Script...</td>
<td headers="function">Exports a list of previously done refactorings for later use.</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<tr>
<td class="menu_name" headers="name">History...</td>
<td headers="function">Displays a history of refactorings.</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<tr>
<td class="menu_name" headers="name">Rename...</td>
<td headers="function">Renames selected object (variable,
method, etc...) and propagates changes to other files in project.</td>
<td headers="keyboard">Alt+Shift+R</td>
</tr>
<tr>
<td class="menu_name" headers="name">Extract Local Variable...</td>
<td headers="function">Extracts selected subexpression into a new local variable.</td>
<td headers="keyboard">Alt+Shift+L</td>
</tr>
<tr>
<td class="menu_name" headers="name">Extract Constant...</td>
<td headers="function">Replaces all instances of selected literal with a named constant.</td>
<td headers="keyboard">Alt+C</td>
</tr>
<tr>
<td class="menu_name" headers="name">Extract Function...</td>
<td headers="function">Replaces selected statements with a call to a new function containing them.</td>
<td headers="keyboard">Alt+Shift+M</td>
</tr>
<tr>
<td class="menu_name" headers="name">Toggle Function Definition</td>
<td headers="function">Moves selected function definition from a header file (in- or outside a class definition) to an implementation file, or back.</td>
<td headers="keyboard">Alt+Shift+T</td>
</tr>
<tr>
<td class="menu_name" headers="name">Hide Method...</td>
<td headers="function">Makes selected method private.</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<table class="menu" border="1" cellspacing="0" cellpadding="3">
<thead>
<tr>
<th id="name">Name</th>
<th id="function">Function</th>
<th id="keyboard">Keyboard Shortcut</th>
</tr>
</thead>
<tbody>
<tr>
<td class="menu_name" headers="name">Apply Script...</td>
<td headers="function">Applies a previously saved list of
refactorings.</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<tr>
<td class="menu_name" headers="name">Create Script...</td>
<td headers="function">Exports a list of previously done
refactorings for later use.</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<tr>
<td class="menu_name" headers="name">History...</td>
<td headers="function">Displays a history of refactorings.</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<tr>
<td class="menu_name" headers="name">Rename...</td>
<td headers="function">Renames selected object (variable,
method, etc...) and propagates changes to other files in project.</td>
<td headers="keyboard">Alt+Shift+R</td>
</tr>
<tr>
<td class="menu_name" headers="name">Extract Local Variable...</td>
<td headers="function">Extracts selected subexpression into a
new local variable.</td>
<td headers="keyboard">Alt+Shift+L</td>
</tr>
<tr>
<td class="menu_name" headers="name">Extract Constant...</td>
<td headers="function">Replaces all instances of selected
literal with a named constant.</td>
<td headers="keyboard">Alt+C</td>
</tr>
<tr>
<td class="menu_name" headers="name">Extract Function...</td>
<td headers="function">Replaces selected statements with a
call to a new function containing them.</td>
<td headers="keyboard">Alt+Shift+M</td>
</tr>
<tr>
<td class="menu_name" headers="name">Toggle Function
Definition</td>
<td headers="function">Moves selected function definition from
a header file (in- or outside a class definition) to an
implementation file, or back.</td>
<td headers="keyboard">Alt+Shift+T</td>
</tr>
<tr>
<td class="menu_name" headers="name">Hide Method...</td>
<td headers="function">Makes selected method private.</td>
<td headers="keyboard">&nbsp;</td>
</tr>
</tbody>
</table>
<p></p>
<p>
<img src="../images/intl_07.gif" alt="Intel Copyright Statement">
<img alt="Intel Copyright Statement" src="../images/intl_07.gif">
</p>
</div>
</body>

View file

@ -9,9 +9,6 @@
<body>
<div role="main">
<h1>Run Menu actions</h1>
<p>
<img src="../images/cdt_menu_run.png" alt="Selecting Run Menu">
</p>
<table class="menu" border="1" cellspacing="0" cellpadding="3">
<thead>
<tr>

View file

@ -11,9 +11,6 @@
<body>
<div role="main">
<h1>Source Menu actions</h1>
<p>
<img src="../images/cdt_menu_source.png" alt="Selecting Source Menu">
</p>
<table border="1" cellspacing="0" cellpadding="3">
<thead>
<tr>
@ -25,47 +22,48 @@
<tbody>
<tr>
<td class="menu_name" headers="name">Toggle Comment</td>
<td headers="function">Add or remove single-line, C++-style,
<td headers="function">Adds or removes single-line, C++-style,
comment markers on each line in the selection, or the line
containing the cursor, if there is no selection</td>
<td headers="keyboard">Ctrl+/</td>
</tr>
<tr>
<td class="menu_name" headers="name">Add Block Comment</td>
<td headers="function">Add a block comment around the
<td headers="function">Adds a block comment around the
selection</td>
<td headers="keyboard">Ctrl+Shift+/</td>
</tr>
<tr>
<td class="menu_name" headers="name">Remove Block Comment</td>
<td headers="function">If the selection contains one or more
block comments, remove them</td>
<td headers="function">Removes the comment markers around any
block comments in the selection</td>
<td headers="keyboard">Ctrl+Shift+\</td>
</tr>
<tr>
<td class="menu_name" headers="name">Shift Right</td>
<td headers="function">Increase indentation on each line in
<td headers="function">Increases indentation on each line in
the selection, or the line containing the cursor, if there is no
selection</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<tr>
<td class="menu_name" headers="name">Shift Left</td>
<td headers="function">Decrease indentation on each line in
<td headers="function">Decreases indentation on each line in
the selection, or the line containing the cursor, if there is no
selection</td>
<td headers="keyboard">Shift+Tab</td>
</tr>
<tr>
<td class="menu_name" headers="name">Correct Indentation</td>
<td headers="function">Apply simple indentation rules to the
<td headers="function">Applies simple indentation rules to the
current selection, or the line containing the cursor, if there is
no selection</td>
<td headers="keyboard">Ctrl+I</td>
</tr>
<tr>
<td class="menu_name" headers="name">Format</td>
<td headers="function">Apply the full <a class="command-link"
<td headers="function">Applies the full <a
class="command-link"
href='javascript:executeCommand("org.eclipse.ui.window.preferences(preferencePageId=org.eclipse.cdt.ui.preferences.CodeFormatterPreferencePage)")'>
<img src="PLUGINS_ROOT/org.eclipse.help/command_link.png"
alt="command link" />C/C++ &gt; Code Style &gt; Formatter
@ -76,24 +74,30 @@
</tr>
<tr>
<td class="menu_name" headers="name">Add Include</td>
<td headers="function">Add an include statement and,
<td headers="function">Adds an include statement and,
optionally, a "using" declaration for the currently selected name</td>
<td headers="keyboard">Ctrl+Shift+N</td>
</tr>
<tr>
<td class="menu_name" headers="name">Organize Includes</td>
<td headers="function">Adds all the required includes for the
selected file</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<tr>
<td class="menu_name" headers="name">Sort Lines</td>
<td headers="function">Sort the selected lines</td>
<td headers="function">Sorts the selected lines</td>
<td headers="keyboard">Ctrl+Alt+S</td>
</tr>
<tr>
<td class="menu_name" headers="name">Implement Method...</td>
<td headers="function">Open the Implement Method dialog</td>
<td headers="function">Opens the Implement Method dialog</td>
<td headers="keyboard">&nbsp;</td>
</tr>
<tr>
<td class="menu_name" headers="name">Generate Getters and
Setters...</td>
<td headers="function">Open the Generate Getters and Setters
<td headers="function">Opens the Generate Getters and Setters
dialog that allows you to create Getters and Setters for fields in
the current type. Available on fields and types or on a text
selection inside a type</td>
@ -101,8 +105,8 @@
</tr>
<tr>
<td class="menu_name" headers="name">Surround With</td>
<td headers="function">Surround the selected statements with a
code template (as defined in <a class="command-link"
<td headers="function">Surrounds the selected statements with
a code template (as defined in <a class="command-link"
href='javascript:executeCommand("org.eclipse.ui.window.preferences(preferencePageId=org.eclipse.cdt.ui.preferences.TemplatePreferencePage)")'>
<img src="PLUGINS_ROOT/org.eclipse.help/command_link.png"
alt="command link" />C/C++ &gt; Editor &gt; Templates

View file

@ -9,9 +9,6 @@
<body>
<div role="main">
<h1>Window Menu actions</h1>
<p>
<img src="../images/cdt_menu_window.png" alt="Selecting Window Menu">
</p>
<table class="menu" border="1" cellspacing="0" cellpadding="3">
<thead>
<tr>