From Dave Williams: Screen captures were added or changed, modified all files with screen captures to use JavaScript to shrink images until the user clicks them. Updated menu lists in docs (removed tables, now shows full content below section name).
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Content assist</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -38,7 +46,8 @@ the relevance of each proposal is determined in the following order:</p>
|
|||
You trigger the Code completion feature when you call Content Assist (such as when you type <tt>Ctrl+Space</tt>), but you also invoke it when you type
|
||||
"<b>.</b>", "<b>-></b>" or "<b>::</b>".</p>
|
||||
|
||||
<img src="../images/contentAssist_example.gif" border="0" width="598" height="544" alt="C++ example showing Code Assist popup">
|
||||
<p><img src="../images/contentAssist_example.gif" width="299" height="272" onClick="changeSize(this,299,272);"
|
||||
alt="C++ example showing Code Assist popup" title="click to toggle image size"></p>
|
||||
|
||||
<p>You can view the signature of each item on the list in a pop-up by pointing
|
||||
to it. You can then select an
|
||||
|
@ -56,7 +65,8 @@ list of code elements and code templates that start with the letter combination
|
|||
|
||||
<p>You can then select a code template from the list and it is inserted directly into your code.</p>
|
||||
|
||||
<p><img border="0" src="../images/editor_c_codetemplates_use.gif" width="483" height="333" alt="C++ example showing Code Assist popup"></p>
|
||||
<img src="../images/editor_c_codetemplates_use.gif" width="242" height="167" onClick="changeSize(this,242,167);"
|
||||
alt="C++ example showing Code Assist popup" title="click to toggle image size"></p>
|
||||
|
||||
<p>For example, the code template <samp>do while statement</samp> contains the following code:</p>
|
||||
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Open declarations</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -13,7 +21,10 @@
|
|||
<h1>Open declarations</h1>
|
||||
|
||||
<p>You can select an element name in your code and quickly navigate to its declaration.</p>
|
||||
<img src="../images/openDeclarations.png" border="0" width="416" height="279" alt="screen capture showing Open Declarations option">
|
||||
|
||||
<img src="../images/openDeclarations.png" width="208" height="140" onClick="changeSize(this,208,140);"
|
||||
alt="screen capture showing Open Declarations option" title="click to toggle image size">
|
||||
|
||||
<p>If the search finds only one matching declaration, you will immediately jump to the declaration, even if it is in another file. If
|
||||
the search finds multiple declarations, a windowed list of prospects will appear.</p>
|
||||
|
||||
|
@ -25,11 +36,8 @@ the search finds multiple declarations, a windowed list of prospects will appear
|
|||
declaration</a><br>
|
||||
<a href="../tasks/cdt_t_search.htm">Searching for C/C++ elements</a></p>
|
||||
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"> <br>
|
||||
<br>
|
||||
</p>
|
||||
<p> </p>
|
||||
<p>
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER="0" width="324" height="14"> </p>
|
||||
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER="0" width="324" height="14"> </p>
|
||||
|
||||
</body>
|
||||
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Outline view</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -15,7 +23,8 @@
|
|||
<p>The Outline view displays an outline of a structured C/C++ file that is currently
|
||||
open in the editor area, by listing the structural elements. </p>
|
||||
|
||||
<img src="../images/outlineView.png" border="0" width="838" height="312" alt="Outline View screen capture">
|
||||
<img src="../images/outlineView.png" width="429" height="156" onClick="changeSize(this,429,156);"
|
||||
alt="Screen capture detailing a sample application in the editor with corrisponding element in the Outline View" title="click to toggle image size"></li>
|
||||
|
||||
<p>The Outline view shows the following elements in the source file in the order
|
||||
in which they occur:</p>
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Project file views</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -27,7 +35,9 @@
|
|||
</ul>
|
||||
|
||||
Files that you select in the C/C++ Projects view affect the information that is displayed in other views.</p>
|
||||
<img src="../images/projectsView.png" border="0" width="244" height="425" alt="Example of a Projects View Window">
|
||||
|
||||
<img src="../images/projectsView.png" width="122" height="213" onClick="changeSize(this,122,213);"
|
||||
alt="Screen capture showing Projects Vieww" title="click to toggle image size">
|
||||
|
||||
<h2>Navigator view</h2>
|
||||
|
||||
|
@ -41,7 +51,8 @@ item does, select an item and press F1. </p>
|
|||
<p>By default, the Navigator view is included in the Resources perspective. To add it to the current perspective, click
|
||||
<b>Window > Show View > Navigator</b>.</p>
|
||||
|
||||
<img src="../images/navigatorView.png" border="0" width="243" height="234" alt="Example of a Navigator View Window">
|
||||
<img src="../images/navigatorView.png" width="122" height="117" onClick="changeSize(this,122,117);"
|
||||
alt="Screen capture showing Projects Vieww" title="click to toggle image size">
|
||||
|
||||
<h3>Toolbar icons</h3>
|
||||
<p><table border="1" >
|
||||
|
|
|
@ -12,23 +12,26 @@
|
|||
|
||||
<h1>C/C++ search</h1>
|
||||
|
||||
<p>The CDT lets you search for language constructs in the projects in your
|
||||
workspace or a working set for references to, declarations or definitions of, particular
|
||||
elements.</p>
|
||||
|
||||
<p>For information on:</p>
|
||||
|
||||
<ul>
|
||||
<li> Working sets, see <b>Workbench User Guide > Concepts > Workbench > Working sets</b></li>
|
||||
<li> The Eclipse workspace, see <b>Workbench User Guide > Tasks > Upgrading
|
||||
Eclipse</b></li>
|
||||
</ul>
|
||||
|
||||
<p>You can conduct a fully or partially qualified name search. Further
|
||||
qualifying a search increases the accuracy and relevance of search results. The
|
||||
sections below provide guidance on how to control the scope of your search
|
||||
through the use of search delimiters, correct syntax, and wildcards.</p>
|
||||
|
||||
<p>You can search for:<br>
|
||||
<ul>
|
||||
<li>language constructs within projects in your workspace</li>
|
||||
<li>a working set for references to particular elements</li>
|
||||
<li>declarations of particular elements</li>
|
||||
<li>definitions of particular elements</li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<p>For information on:</p>
|
||||
|
||||
For information on working sets, see <b>Workbench User Guide > Concepts > Workbench > Working sets</b><br>
|
||||
For information on the Eclipse workspace, see <b>Workbench User Guide > Tasks > Upgrading Eclipse</b></br>
|
||||
|
||||
|
||||
<h2>What you can search for</h2>
|
||||
<p>The table below lists the element types that you can search for and special
|
||||
considerations to note when searching for a given element type. You can search
|
||||
|
|
|
@ -3,8 +3,6 @@
|
|||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Build</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
|
@ -13,27 +11,12 @@
|
|||
<body>
|
||||
|
||||
<h1>Build</h1>
|
||||
<p>This section describes the build views and terminology.</p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="450">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="337">To learn about</th>
|
||||
<th align="left" width="610">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="337">Build views and terminology</td>
|
||||
<td align="left" width="610"><a href="cdt_c_build_over.htm">Build overview</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="337">Extending the build capabilities of the CDT</td>
|
||||
<td align="left" width="610">
|
||||
<a href="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/cdt-home/user/Reference%20Documents/build%20extensibility%20reference.html?cvsroot=Tools_Project">
|
||||
Build Extensibility</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>This section describes the build views and terminology.</p>
|
||||
|
||||
<p>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_build_over.htm">Build views and terminology</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/cdt-home/user/Reference%20Documents/Managed_Build/Managed_Build_Extensibility.html?cvsroot=Tools_Project">Extending the build capabilities of the CDT</a><br>
|
||||
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -3,8 +3,6 @@
|
|||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Coding aids</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
|
@ -13,39 +11,16 @@
|
|||
<body>
|
||||
|
||||
<h1>Coding aids</h1>
|
||||
<p>This section provides information on code entry aids.</p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="377">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="253">To learn about</th>
|
||||
<th align="left" width="101">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="253">The structure of your source code</td>
|
||||
<td align="left" width="101"><a href="cdt_c_outlineview.htm">Outline view</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="253">Using comments to document your code</td>
|
||||
<td align="left" width="101"><a href="cdt_c_comments.htm">Comments</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="253">Code completion and code templates</td>
|
||||
<td align="left" width="101"><a href="cdt_c_content_assist.htm">Content
|
||||
Assist</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="253">C/C++ language-based search</td>
|
||||
<td align="left" width="101"><a href="cdt_c_search.htm">C/C++ search</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="253">Declarations of elements</td>
|
||||
<td align="left" width="101"><a href="cdt_c_open_declarations.htm">Open
|
||||
declarations</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>This section provides information on code entry aids.</p>
|
||||
|
||||
<p>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_outlineview.htm">The structure of your source code</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_comments.htm">Using comments to document your code</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_content_assist.htm">Code completion and code templates</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_search.htm">C/C++ language-based search</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_open_declarations.htm">Declarations of elements</a><br>
|
||||
|
||||
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -12,42 +12,27 @@
|
|||
|
||||
<h1>Concepts</h1>
|
||||
|
||||
<p>Conceptual topics provide background information that you need to know to
|
||||
complete a specific task.</p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="467">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="334">To learn about</th>
|
||||
<th align="left" width="110">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="334">What's new for this release of the CDT</td>
|
||||
<td align="left" width="110"><a href="cdt_c_whatsnew.htm">What's new</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="334">The C/C++ perspective</td>
|
||||
<td align="left" width="110"><a href="cdt_c_over_cdt.htm">CDT overview</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="334">C/C++ projects</td>
|
||||
<td align="left" width="110"><a href="cdt_o_projects.htm">CDT projects</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="334">Code aids</td>
|
||||
<td align="left" width="110"><a href="cdt_o_code_entry.htm">Coding aids</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="334">Building your C/C++ projects</td>
|
||||
<td align="left" width="110"><a href="cdt_o_build_conc.htm">Build</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="334">Debugging your C/C++ projects</td>
|
||||
<td align="left" width="110"><a href="cdt_o_dbg_concepts.htm">Debug</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>Provides background information for CDT components, tasks and objectives.</p>
|
||||
|
||||
<p>
|
||||
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Corporation Statement" BORDER=0 width="324" height="14"></p>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_over_cdt.htm">The C/C++ perspective</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_projects.htm">C/C++ projects</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_projects.htm">CDT projects</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_proj_file_views.htm">Project file views</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_code_entry.htm">Code aids</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_outlineview.htm">The structure of your source code</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_comments.htm">Using comments to document your code</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_content_assist.htm">Code completion and code templates</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_search.htm">C/C++ language-based search</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_open_declarations.htm">Declarations of elements</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_build_conc.htm">Building your C/C++ projects</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_build_over.htm">Build views and terminology</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/cdt-home/user/Reference%20Documents/Managed_Build/Managed_Build_Extensibility.html?cvsroot=Tools_Project">Extending the build capabilities of the CDT</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_dbg_concepts.htm">Debugging your C/C++ projects</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_over_dbg.htm">CDT debugger</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_c_dbg_info.htm">How debug information is displayed</a><br>
|
||||
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Corporation Statement" BORDER=0 width="324" height="14"></p>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -3,8 +3,6 @@
|
|||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Debug</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
|
@ -16,25 +14,11 @@
|
|||
|
||||
<p>This section describes CDT debug concepts.</p>
|
||||
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="508">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="279">To learn about</th>
|
||||
<th align="left" width="206">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="279">CDT debugger</td>
|
||||
<td align="left" width="206"><a href="cdt_c_over_dbg.htm">Debug overview</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="279">How debug information is displayed</td>
|
||||
<td align="left" width="206"><a href="cdt_c_dbg_info.htm">Debug information</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_over_dbg.htm">CDT debugger</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_dbg_info.htm">How debug information is displayed</a><br>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14">
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -9,33 +9,20 @@
|
|||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
<h1>C/C++ Development Toolkit User Guide</h1>
|
||||
<p>This guide provides instructions for using the C/C++ Development Toolkit (CDT) in the workbench.</p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="540">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="217">For</th>
|
||||
<th align="left" width="300">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="217">CDT basics</td>
|
||||
<td align="left" width="300"><a href="../getting_started/cdt_o_tutorial.htm">Tutorial</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="217">CDT background information</td>
|
||||
<td align="left" width="300"><a href="cdt_o_concepts.htm">Concepts</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="217">Step-by-step instructions to use the CDT</td>
|
||||
<td align="left" width="300"><a href="../tasks/cdt_o_tasks.htm">Tasks</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="217">Information about CDT icons, views, and windows</td>
|
||||
<td align="left" width="300"><a href="../reference/cdt_o_ref.htm">Reference</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p>
|
||||
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="../getting_started/cdt_o_tutorial.htm">Tutorial</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_concepts.htm">CDT background information</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="../tasks/cdt_o_tasks.htm">Step-by-step instructions to use the CDT</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="../reference/cdt_o_ref.htm">Information about CDT icons, views, and windows</a><br>
|
||||
<br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_whatsnew.htm">What's new for this release of the CDT</a><br>
|
||||
|
||||
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
|
||||
</body></html>
|
|
@ -3,37 +3,18 @@
|
|||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>CDT projects</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>CDT Projects</h1>
|
||||
<p>This section provides information on C/C++ project files and project-related
|
||||
C/C++ views.</p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="540">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="181">To learn about</th>
|
||||
<th align="left" width="336">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="181">CDT project files</td>
|
||||
<td align="left" width="336"><a href="cdt_c_projects.htm">CDT projects</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="181">Project files views</td>
|
||||
<td align="left" width="336"><a href="cdt_c_proj_file_views.htm">Project
|
||||
file views</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>This section provides information on C/C++ project files and project-related C/C++ views.</p>
|
||||
|
||||
<p>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_projects.htm">CDT projects</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_c_proj_file_views.htm">Project file views</a><br>
|
||||
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
doc/org.eclipse.cdt.doc.user/images/c_cpp_preferences.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
doc/org.eclipse.cdt.doc.user/images/console_build.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
doc/org.eclipse.cdt.doc.user/images/project_new_cppfile.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 12 KiB |
BIN
doc/org.eclipse.cdt.doc.user/images/project_properties.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
doc/org.eclipse.cdt.doc.user/images/project_references.png
Normal file
After Width: | Height: | Size: 11 KiB |
|
@ -14,35 +14,13 @@
|
|||
|
||||
<p>This section describes how to set preferences for the C/C++ editor.</p>
|
||||
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="508">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="244">To change preferences for</th>
|
||||
<th align="left" width="241">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="244">C/C++ editor</td>
|
||||
<td align="left" width="241"><a href="cdt_u_c_editor_gen.htm">General page, Preferences window</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="244">C/C++ editor annotations</td>
|
||||
<td align="left" width="241"><a href="cdt_u_c_editor_anno.htm">Annotations page, Preferences window</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="244">C/C++ editor text color</td>
|
||||
<td align="left" width="241"><a href="cdt_u_c_editor_color.htm">Colors page, Preferences window</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="244">C/C++ editor Content Assist feature</td>
|
||||
<td align="left" width="241"><a href="cdt_u_c_editor_con_assist.htm">Content Assist page, Preferences window</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="244">C/C++ editor Navigation feature</td>
|
||||
<td align="left" width="241"><a href="cdt_u_c_editor_navigation.htm">Navigation page, Preferences window</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14">
|
||||
</p>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_gen.htm">General</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_anno.htm">Annotations</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_color.htm">Colors</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_con_assist.htm">Content Assist</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_navigation.htm">Navigation</a><br>
|
||||
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
|
||||
|
||||
</body>
|
||||
|
|
|
@ -3,8 +3,6 @@
|
|||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Debug views</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
|
@ -16,44 +14,16 @@
|
|||
|
||||
<p>This section describes debug views.</p>
|
||||
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="508">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="279">To</th>
|
||||
<th align="left" width="206">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="279">View information about registers</td>
|
||||
<td align="left" width="206"><a href="cdt_u_registersview.htm">Registers view</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="279">Inspect and change process memory</td>
|
||||
<td align="left" width="206"><a href="cdt_u_memoryview.htm">Memory view</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="279">Change the appearance of the memory view</td>
|
||||
<td align="left" width="206"><a href="cdt_u_mem_view_pref.htm">Memory view
|
||||
preferences</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="279">View information about shared libraries</td>
|
||||
<td align="left" width="206"><a href="cdt_u_shared_lib_view.htm">Shared
|
||||
Libraries view</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="279">View signals defined for a given debug target</td>
|
||||
<td align="left" width="206"><a href="cdt_u_signals_view.htm">Signals view</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="279">View debug information</td>
|
||||
<td align="left" width="206"><a href="cdt_u_dbg_view.htm">Debug view</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="279">Set C/C++ debug preferences</td>
|
||||
<td align="left" width="206"><a href="cdt_u_dbg_pref.htm">Debug preferences</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_registersview.htm">View information about registers</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_memoryview.htm">Inspect and change process memory</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_mem_view_pref.htm">Change the appearance of the memory view</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_shared_lib_view.htm">View information about shared libraries</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_signals_view.htm">View signals defined for a given debug target</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_dbg_view.htm">View debug information</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_dbg_pref.htm">Set C/C++ debug preferences</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_icons.htm">Icons</a><br>
|
||||
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14">
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
|
||||
</body>
|
||||
|
||||
|
|
|
@ -13,45 +13,15 @@
|
|||
<h1>New Make Projects properties</h1>
|
||||
<p>In this section, learn about the C/C++ New Make Projects properties pages.</p>
|
||||
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="540">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="154">To learn about the</th>
|
||||
<th align="left" width="363">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="154">Make Builder page</td>
|
||||
<td align="left" width="363"><a href="../reference/cdt_u_newproj_buildset.htm">Make
|
||||
Builder page, C/C++ Properties window</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="154">Error Parsers page</td>
|
||||
<td align="left" width="363"><a href="cdt_u_newproj_parser_error.htm">Error
|
||||
Parsers, C/C++ Properties window</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="154">Binary Parsers page</td>
|
||||
<td align="left" width="363"><a href="cdt_u_newproj_parser_binary.htm">
|
||||
Binary Parser, C/C++ Properties window</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="154">Paths and symbols page</td>
|
||||
<td align="left" width="363"><a href="cdt_u_newproj_pathsymb.htm">Paths and
|
||||
symbols page, C/C++ Properties window</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="154">Scanner Configuration Discovery page</td>
|
||||
<td align="left" width="363"><a href="cdt_u_scanner_cfg_disc.htm">Scanner Configuration Discovery dialog box</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="154">Manage include paths page</td>
|
||||
<td align="left" width="363"><a href="cdt_u_newproj_incl_path.htm">Manage include paths dialog box</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="154">Manage defined symbols page</td>
|
||||
<td align="left" width="363"><a href="cdt_u_newproj_def_symb.htm">Manage defined symbols dialog box</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14">
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_buildset.htm">Make Builder</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_parser_error.htm">Error Parser</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_parser_binary.htm">Binary Parser</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_pathsymb.htm">Paths and Symbols</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_scanner_cfg_disc.htm">Scanner Configuration Discovery</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_incl_path.htm">Manage Include Paths</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_def_symb.htm">Manage Defined Symbols</a><br>
|
||||
|
||||
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
</body>
|
||||
</html>
|
|
@ -12,53 +12,51 @@
|
|||
<h1>Reference</h1>
|
||||
<p>This section describes the Views, Windows and Dialog Boxes available from the C/C++ perspective.</p>
|
||||
|
||||
<h3>View</h3>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_outlineview.htm">Outline View</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_dbg_view.htm">Debug View</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_registersview.htm">View information about registers</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_memoryview.htm">Inspect and change process memory</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_mem_view_pref.htm">Change the appearance of the memory view</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_shared_lib_view.htm">View information about shared libraries</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_signals_view.htm">View signals defined for a given debug target</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_dbg_view.htm">View debug information</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_dbg_pref.htm">Set C/C++ debug preferences</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_icons.htm">Icons</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_views.htm">Views</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_outlineview.htm">Outline View</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_o_dbg_view.htm">Debug View</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_registersview.htm">View information about registers</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_memoryview.htm">Inspect and change process memory</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_mem_view_pref.htm">Change the appearance of the memory view</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_shared_lib_view.htm">View information about shared libraries</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_signals_view.htm">View signals defined for a given debug target</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_dbg_view.htm">View debug information</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_dbg_pref.htm">Set C/C++ debug preferences</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_icons.htm">Icons</a><br>
|
||||
|
||||
<h3><a style="text-decoration:none" href="cdt_u_c_pref.htm">C/C++ Preferences</a></h3>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_build_pref.htm">Build Console</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_ceditor_pref.htm">C/C++ Editor</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_gen.htm">General</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_anno.htm">Annotations</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_color.htm">Colors</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_con_assist.htm">Content Assist</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_navigation.htm">Navigation</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_code_temp.htm">Code Templates</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt="">Debug<br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt="">GDB MI<br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt="">Source Code Locations<br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_make_targets_pref.htm">Make Targets</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_proj_prop_pages.htm">New Make Projects</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_buildset.htm">Make Builder</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_parser_error.htm">Error Parser</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_parser_binary.htm">Binary Parser</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_pathsymb.htm">Paths and Symbols</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_scanner_cfg_disc.htm">Scanner Configuration Discovery</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_incl_path.htm">Manage Include Paths</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_def_symb.htm">Manage Defined Symbols</a><br>
|
||||
|
||||
<h3>Run and Debug</h3>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_main.htm">Main</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_arg.htm">Arguments</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_env.htm">Environment</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_dbg.htm">Debugger</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_srce.htm">Source</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_comm.htm">Common</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_pref.htm">C/C++ Preferences</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_build_pref.htm">Build Console</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_o_ceditor_pref.htm">C/C++ Editor</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_gen.htm">General</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_anno.htm">Annotations</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_color.htm">Colors</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_con_assist.htm">Content Assist</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_navigation.htm">Navigation</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_code_temp.htm">Code Templates</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt="">Debug<br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt="">GDB MI<br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt="">Source Code Locations<br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_make_targets_pref.htm">Make Targets</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_o_proj_prop_pages.htm">New Make Projects</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_buildset.htm">Make Builder</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_parser_error.htm">Error Parser</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_parser_binary.htm">Binary Parser</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="75" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_pathsymb.htm">Paths and Symbols</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="100" height="1" alt=""><a style="text-decoration:none" href="cdt_u_scanner_cfg_disc.htm">Scanner Configuration Discovery</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="100" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_incl_path.htm">Manage Include Paths</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="100" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_def_symb.htm">Manage Defined Symbols</a><br>
|
||||
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_run_dbg_pages.htm">Run and Debug</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_main.htm">Main</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_arg.htm">Arguments</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_env.htm">Environment</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_dbg.htm">Debugger</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_srce.htm">Source</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_comm.htm">Common</a><br>
|
||||
|
||||
<h3>Search</h3>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_search.htm">C/C++ search page</a><br>
|
||||
|
||||
<p>
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14">
|
||||
</p>
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -3,8 +3,6 @@
|
|||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Run and Debug dialog boxes</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
|
@ -16,45 +14,14 @@
|
|||
|
||||
<p>This section describes the Run and Debug dialog boxes.</p>
|
||||
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="454">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="119">To learn about the</th>
|
||||
<th align="left" width="312">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="119">Main page</td>
|
||||
<td align="left" width="312"><a href="cdt_u_run_dbg_main.htm">Main page,
|
||||
Run or Debug dialog box</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="119">Arguments page</td>
|
||||
<td align="left" width="312"><a href="cdt_u_run_dbg_arg.htm">Arguments page,
|
||||
Run or Debug dialog box</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="119">Environment page</td>
|
||||
<td align="left" width="312"><a href="cdt_u_run_dbg_env.htm">Environment
|
||||
page, Run or Debug dialog box</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="119">Debugger page</td>
|
||||
<td align="left" width="312"><a href="cdt_u_run_dbg_dbg.htm">Debugger page,
|
||||
Run or Debug dialog box</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="119">Source page</td>
|
||||
<td align="left" width="312"><a href="cdt_u_run_dbg_srce.htm">Source page,
|
||||
Run or Debug dialog box</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="119">Common page</td>
|
||||
<td align="left" width="312"><a href="cdt_u_run_dbg_comm.htm">Common page,
|
||||
Run or Debug dialog box</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_main.htm">Main</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_arg.htm">Arguments</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_env.htm">Environment</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_dbg.htm">Debugger</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_srce.htm">Source</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_run_dbg_comm.htm">Common</a><br>
|
||||
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14">
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -3,8 +3,6 @@
|
|||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Views</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
|
@ -13,28 +11,20 @@
|
|||
<body>
|
||||
|
||||
<h1>Views</h1>
|
||||
<p>This section describes views of the C/C++ perspective.</p>
|
||||
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="540">
|
||||
<tr>
|
||||
<th align="left" valign="bottom" width="161">To learn about the</th>
|
||||
<th align="left" width="356">See</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="161">Outline view</td>
|
||||
<td align="left" width="356"><a href="cdt_u_outlineview.htm">Outline view</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="161">C/C++ Projects view</td>
|
||||
<td align="left" width="356"><a href="cdt_o_proj_prop_pages.htm">C/C++ Projects
|
||||
view</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="161">Debug view</td>
|
||||
<td align="left" width="356"><a href="cdt_o_dbg_view.htm">Debug views</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>
|
||||
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14">
|
||||
</body>
|
||||
<p>This section describes views of the C/C++ perspective.</p>
|
||||
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_outlineview.htm">Outline View</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_o_dbg_view.htm">Debug View</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_registersview.htm">View information about registers</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_memoryview.htm">Inspect and change process memory</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_mem_view_pref.htm">Change the appearance of the memory view</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_shared_lib_view.htm">View information about shared libraries</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_signals_view.htm">View signals defined for a given debug target</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_dbg_view.htm">View debug information</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_dbg_pref.htm">Set C/C++ debug preferences</a><br>
|
||||
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a style="text-decoration:none" href="cdt_u_icons.htm">Icons</a><br>
|
||||
|
||||
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Customizing the C-Build view</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -13,8 +21,8 @@
|
|||
<h1>Build Console page, Preferences window</h1>
|
||||
|
||||
<p>You can customize the appearance of the Build Console view.</p>
|
||||
|
||||
<p><img src="../images/BuildConsole.png" border="0" width="635" height="539" alt="Build Console Preferences Dialog Box"></p>
|
||||
<p><img src="../images/BuildConsole.png" width="318" height="270" onClick="changeSize(this,318,270);"
|
||||
alt="Build Console Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
|
||||
<dl>
|
||||
<dt>Always clear console before building</dt>
|
||||
|
@ -48,4 +56,4 @@
|
|||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Annotations page, Preferences window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Customize the appearance of the C/C++ Editor.
|
||||
|
@ -15,7 +23,8 @@ END INFOPOP-->
|
|||
<h1>Annotations page, Preferences window</h1>
|
||||
|
||||
<p>You can customize the appearance of annotations in the C/C++ editor on the Annotations page of the Preferences Window.</p>
|
||||
<p><img src="../images/editor_annotations_preferences.png" border="0" width="670" height="607" alt="Editor Annotations Preferences Dialog Box"></p>
|
||||
<p><img src="../images/editor_annotations_preferences.png" width="335" height="304" onClick="changeSize(this,335,304);"
|
||||
alt="Editor Annotations Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
|
||||
<dl>
|
||||
<dt>Annotation Presentation Options</dt>
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Colors page, Preferences window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<!--INFOPOP
|
||||
|
@ -16,7 +24,8 @@ END INFOPOP-->
|
|||
<h1>Colors page, Preferences window</h1>
|
||||
|
||||
<p>You can customize the appearance of the C/C++ editor on the Colors page of the Preferences window.</p>
|
||||
<p><img src="../images/editor_color_preferences.png" border="0" width="670" height="607" alt="Editor Color Preferences Dialog Box"></p>
|
||||
<p><img src="../images/editor_color_preferences.png" width="335" height="304" onClick="changeSize(this,335,304);"
|
||||
alt="Editor General Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
|
||||
<dl>
|
||||
<dt>System Default</dt>
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Content Assist page, Preferences window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Customize how the Content Assist feature works.
|
||||
|
@ -16,10 +24,8 @@ END INFOPOP-->
|
|||
|
||||
<p>You can customize the Content Assist feature on the Contents Assist page of the C/C++ Editor Preferences window. To change the Content Assist preferences click
|
||||
<b>Window > Preferences > C/C++ > C++ Editor > Content Assist.</b></p>
|
||||
<p>
|
||||
<img src="../images/contentAssist_preferences.png" border="0" width="667" height="525" alt="Content Assist Preferences Dialog Box">
|
||||
</p>
|
||||
|
||||
<p><img src="../images/contentAssist_preferences.png" width="334" height="263" onClick="changeSize(this,334,263);"
|
||||
alt="Content Assist Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
|
||||
<dl>
|
||||
<p><dt>Search scope for completion proposals</dt>
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>General page, Preferences window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<!--INFOPOP
|
||||
|
@ -16,7 +24,10 @@ END INFOPOP-->
|
|||
<h1>General page, Preferences window</h1>
|
||||
|
||||
<p>You can customize the appearance of the C/C++ editor on the General page of the Preferences window.</p>
|
||||
<p><img src="../images/editor_general_preferences.png" border="0" width="670" height="607" alt="Editor General Preferences Dialog Box"></p>
|
||||
<p><img src="../images/editor_general_preferences.png" width="335" height="304" onClick="changeSize(this,335,304);"
|
||||
alt="Editor General Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
|
||||
|
||||
<dl>
|
||||
<dt>Text Font</dt>
|
||||
<dd>Changes the font of the text in the workbench.</dd>
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Navigation page, Preferences window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<!--INFOPOP
|
||||
|
@ -16,8 +24,8 @@ END INFOPOP-->
|
|||
<h1>Navigation page, Preferences window</h1>
|
||||
|
||||
<p>You can customize the navigation configuration of the C/C++ editor on the Navigation page of the Preferences window.</p>
|
||||
<p><img src="../images/editor_navigation_preferences.png" border="0" width="665" height="611" alt="Editor Navigation Preferences Dialog Box"></p>
|
||||
|
||||
<p><img src="../images/editor_navigation_preferences.png" width="333" height="306" onClick="changeSize(this,333,306);"
|
||||
alt="Editor Navigation Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
<dl>
|
||||
<dt>Enable Hyperlink Navigation</dt>
|
||||
<dd>Select this checkbox to support hyperlink style navigation for Open Declarations.</dd>
|
||||
|
@ -35,4 +43,4 @@ END INFOPOP-->
|
|||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>C/C++ preferences</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
View information about your program C/C++ environment.
|
||||
|
@ -15,7 +23,8 @@ END INFOPOP-->
|
|||
<h1>C/C++ page, Preferences window</h1>
|
||||
|
||||
<p>The C/C++ Preference dialog box allows you to make changes to your C/C++ environment.</p>
|
||||
<p><img src="../images/c_cpp_preferences.png" border="0" width="635" height="539" alt="C/C++ Main Preferences Window"></p>
|
||||
<p> <img src="../images/c_cpp_preferences.png" width="318" height="270" onClick="changeSize(this,318,270);"
|
||||
alt="C/C++ Main Preferences Window" title="click to toggle image size"></p>
|
||||
<dl>
|
||||
<dt>Link view selection to active editor</dt>
|
||||
<dd>Select this checkbox to open an item selectedin the Projects view, in the Editor view.</dd>
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Code Templates page, Preferences window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Create, edit, remove, import, or export code templates.
|
||||
|
@ -18,8 +26,8 @@ END INFOPOP-->
|
|||
<p>You can manipulate any of the common code templates that are predefined within the CDT. To modify, delete, export,
|
||||
import, or create your own templates click <b>Window > Preferences > C/C++ > Code Templates</b>.</p>
|
||||
|
||||
<img src="../images/code_templates.png" border="0" width="737" height="539" alt="Code Templates Dialog Box">
|
||||
|
||||
<img src="../images/code_templates.png" width="369" height="270" onClick="changeSize(this,369,270);"
|
||||
alt="Code Templates Dialog Box" title="click to toggle image size">
|
||||
<dl>
|
||||
<dt>New</dt>
|
||||
<dd>Creates a new code template.</dd>
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Customizing the C-Build view</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -14,8 +22,8 @@
|
|||
|
||||
<p>You can customize Make options.</p>
|
||||
|
||||
<p><img src="../images/make_targets.png" border="0" width="570" height="494" alt="Make Targets Preferences Dialog Box"></p>
|
||||
|
||||
<p><img src="../images/make_targets.png" width="285" height="247" onClick="changeSize(this,285,247);"
|
||||
alt="Make Targets Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
<dl>
|
||||
<dt>Build make target in the background</dt>
|
||||
<dd>Select this checkbox to perform builds in the background.</dd>
|
||||
|
@ -34,4 +42,4 @@
|
|||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
|
@ -6,17 +6,22 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Make Builder page, C/C++ Properties window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Define the build settings for the current project.
|
||||
END INFOPOP-->
|
||||
|
||||
<body>
|
||||
|
||||
<h1>Make Builder page, C/C++ Preferences window</h1>
|
||||
|
||||
<p>You can define build settings on the Make Builder page of the C/C++ Preferences window.</p>
|
||||
<p><img src="../images/new_make-builder.png" border="0" width="732" height="611" alt="Make Builder Preferences Dialog Box"></p>
|
||||
<p><img src="../images/new_make-builder.png" width="366" height="306" onClick="changeSize(this,366,306);"
|
||||
alt="Make Builder Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
<dl>
|
||||
<dt>Use default</dt>
|
||||
<dd>Select this checkbox to use the default make command. Clear the check box to specify a new make command.</dd>
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Paths and symbols page, C/C++ Properties window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Enter include paths and symbols.
|
||||
|
@ -16,8 +24,8 @@ END INFOPOP-->
|
|||
<h1>Manage defined symbols dialog box</h1>
|
||||
|
||||
<p>You can manage preprocessor symbols from the Manage defined symbols dialog box.</p>
|
||||
<p><img src="../images/manage_defined_symbols.png" border="0" width="589" height="484" alt="Manage Defined Symbols Dialog Box"></p>
|
||||
|
||||
<p><img src="../images/manage_defined_symbols.png" width="295" height="242" onClick="changeSize(this,295,242);"
|
||||
alt="Manage Defined Symbols Dialog Box" title="click to toggle image size"></p>
|
||||
<dl>
|
||||
<dt>New</dt>
|
||||
<dd>Enter a new defined symbol.</dd>
|
||||
|
@ -47,4 +55,4 @@ END INFOPOP-->
|
|||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
|
@ -6,17 +6,23 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Paths and symbols page, C/C++ Properties window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Enter include paths and symbols.
|
||||
END INFOPOP-->
|
||||
|
||||
<body>
|
||||
|
||||
<h1>Manage include paths dialog box</h1>
|
||||
|
||||
<p>You can manage include paths from the Manage include paths dialog box.</p>
|
||||
<p><img src="../images/manage_include_path.png" border="0" width="589" height="484" alt="Manage Include Paths Dialog Box"></p>
|
||||
<p><img src="../images/manage_include_path.png" width="295" height="242" onClick="changeSize(this,295,242);"
|
||||
alt="Manage Include Paths Dialog Box" title="click to toggle image size"></p>
|
||||
|
||||
<dl>
|
||||
<dt>New</dt>
|
||||
|
@ -47,4 +53,4 @@ END INFOPOP-->
|
|||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
|
@ -6,17 +6,23 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Binary Parser, C/C++ Properties window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Select a binary parser for the target platform.
|
||||
END INFOPOP-->
|
||||
|
||||
<body>
|
||||
|
||||
<h1>Binary Parser page, C/C++ Preferences window</h1>
|
||||
|
||||
<p>You can view a list of binary parsers on the Binary Parser page of the C/C++ Preferences window.</p>
|
||||
<p><img src="../images/new_make-binary_parser.png" border="0" width="665" height="611" alt="Make Binary Parser Preferences Dialog Box"></p>
|
||||
<p><img src="../images/new_make-binary_parser.png" width="333" height="306" onClick="changeSize(this,333,306);"
|
||||
alt="Make Binary Parser Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
<dl>
|
||||
<dt>Binary Parser</dt>
|
||||
<dd>Select a binary parser from the list.</dd>
|
||||
|
|
|
@ -6,10 +6,15 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Error Parsers, C/C++ Properties window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Control the build messages displayed in the Tasks view.
|
||||
END INFOPOP-->
|
||||
|
||||
<body>
|
||||
|
||||
|
@ -17,7 +22,8 @@ END INFOPOP-->
|
|||
|
||||
<p>You can veiw a list of the filters that detect error patters in the build output log, on the Error Parsers page of the Preferences window.</p>
|
||||
|
||||
<p><img src="../images/new_make-error_parser.png" border="0" width="732" height="611" alt="Make Error Parser Preferences Dialog Box"></p>
|
||||
<p><img src="../images/new_make-error_parser.png" width="366" height="306" onClick="changeSize(this,366,306);"
|
||||
alt="Make Error Parser Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
|
||||
<dl>
|
||||
<dt>Error Parsers</dt>
|
||||
|
|
|
@ -6,17 +6,23 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Paths and symbols page, C/C++ Properties window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Enter include paths and symbols.
|
||||
END INFOPOP-->
|
||||
|
||||
<body>
|
||||
|
||||
<h1>Paths and Symbols page, C/C++ Preferences window</h1>
|
||||
|
||||
<p>You can define include paths and preprocessor symbols on the Paths and Symbols page of the C/C++ Preferences window.</p>
|
||||
<p><img src="../images/new_make-paths_symbols.png" border="0" width="615" height="612" alt="Make Paths and Symbols Preferences Dialog Box"></p>
|
||||
<p><img src="../images/new_make-paths_symbols.png" width="308" height="306" onClick="changeSize(this,308,306);"
|
||||
alt="Make Paths and Symbols Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
|
||||
<dl>
|
||||
<dt>Automate scanner configuration discovery</dt>
|
||||
|
|
|
@ -6,11 +6,15 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Outline view</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
View C/C++ file components.
|
||||
END INFOPOP-->
|
||||
|
||||
<body>
|
||||
|
||||
<h1>Outline view</h1>
|
||||
|
@ -18,7 +22,8 @@ END INFOPOP-->
|
|||
<p>The Outline view displays an outline of a structured C/C++ file that is currently
|
||||
open in the editor area, by listing the structural elements. </p>
|
||||
|
||||
<p><img src="../images/outlineView.png" border="0" width="838" height="312" alt="Outline View screen capture"></p>
|
||||
<p><img src="../images/outlineView.png" width="419" height="156" onClick="changeSize(this,419,156);"
|
||||
alt="Outline View screen capture" title="click to toggle image size"></p>
|
||||
|
||||
|
||||
<h2>Outline view toolbar icons</h2>
|
||||
|
|
|
@ -6,18 +6,22 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Paths and symbols page, C/C++ Properties window</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Configure Scanner Discovery.
|
||||
END INFOPOP-->
|
||||
|
||||
<body>
|
||||
|
||||
<h1>Scanner Configuration Discovery</h1>
|
||||
|
||||
<p>You can configure various options for the scanner configuration on the Scanner Configuration Discovery page of the C/C++ Properties window.</p>
|
||||
<p><img src="../images/scanner_cfg_disc.png" border="0" width="396" height="314" alt="Scanner Configuration Discovery Preferences Dialog Box"></p>
|
||||
|
||||
<p> <img src="../images/scanner_cfg_disc.png" width="198" height="157" onClick="changeSize(this,198,157);"
|
||||
alt="Editor General Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
<dl>
|
||||
<dt>Enable build output parser</dt>
|
||||
<dd>Select this checkbox to configure the scanner to parse the output from a build.</dd>
|
||||
|
|
|
@ -6,16 +6,22 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>C/C++ search page, Search dialog box</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<!--INFOPOP
|
||||
Search for C/C++ elements.
|
||||
END INFOPOP-->
|
||||
<body>
|
||||
|
||||
<h1>C/C++ search page, Search dialog box</h1>
|
||||
|
||||
<p>You can search for C/C++ elements on the C/C++ search page of the Search dialog box.</p>
|
||||
<p><img src="../images/search.png" border="0" width="512" height="394" alt="Search Dialog Box"></p>
|
||||
<p><img src="../images/search.png" width="256" height="197" onClick="changeSize(this,256,197);"
|
||||
alt="Editor General Preferences Dialog Box" title="click to toggle image size"></p>
|
||||
<dl>
|
||||
<dt>Search string</dt>
|
||||
<dd>Specifies a search string.</dd>
|
||||
|
|
|
@ -6,15 +6,26 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Building manually</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>Building manually</h1>
|
||||
|
||||
<p>Manual builds let you choose the scope of a build, whether to build,
|
||||
or rebuild projects. You can view the output of the make utility in the
|
||||
console.</p>
|
||||
<p>Manual builds let you choose the scope of a build, as well as options for building,
|
||||
or rebuilding projects. You can view the output of the make utility in the console.</p>
|
||||
|
||||
<p><img src="../images/console_build.png" width="300" height="75" onClick="changeSize(this,300,75);"
|
||||
alt="Screen capture showing sample build in console veiw" title="click to toggle image size"></p>
|
||||
|
||||
|
||||
<p>To rebuild all open projects:</p>
|
||||
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Creating a C/C++ file</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -24,13 +32,19 @@ information > Views and editors > Editor area</b>.</p>
|
|||
<p>To create a C++ file:</p>
|
||||
<ol>
|
||||
<li>In the <b>C++ Projects</b> view, right-click a project,
|
||||
and select <b>New > File</b>.</li>
|
||||
and select <b>New > File</b>.<br>
|
||||
<img src="../images/project_new_file.png" width="210" height="140" onClick="changeSize(this,210,140);"
|
||||
alt="Screen Capture of a task menu highlighting New > File in Projects View" title="click to toggle image size"></li>
|
||||
<li>In the list of projects, verify that the correct project is selected.</li>
|
||||
<li>In the <b>File name</b> box, type a name followed by the appropriate
|
||||
extension.</li>
|
||||
<li>Click <b>Finish</b>.</li>
|
||||
<li>In the <b>File name</b> box, type a name followed by the appropriate extension.</li>
|
||||
<li>Click <b>Finish</b>.<br>
|
||||
<img src="../images/project_new_file_name.png" width="219" height="287" onClick="changeSize(this,219,287);"
|
||||
alt="Screen Capture of a task menu highlighting New > File in Projects View" title="click to toggle image size"></li>
|
||||
<p>The file will open in the C/C++ editor.</p>
|
||||
<li>Enter your code in the editor view and type<b>CTRL+s</b> to save the file.</li>
|
||||
<li>Enter your code in the editor view..<br>
|
||||
<img src="../images/project_new_cppfile.png" width="241" height="179" onClick="changeSize(this,241,179);"
|
||||
alt="Screen Capture of the Editor view with a sample makefile" title="click to toggle image size"></li>
|
||||
<li>Type<b>CTRL+s</b> to save the file.</li>
|
||||
</ol>
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">
|
||||
<br>
|
||||
|
|
|
@ -3,11 +3,17 @@
|
|||
|
||||
<head>
|
||||
<meta http-equiv="Content-Language" content="en-us">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Selecting referenced projects</title>
|
||||
<link rel="stylesheet" type="text/css" href="../help.css">
|
||||
<script>
|
||||
function changeSize(theImage,wd,ht) {
|
||||
wdth=parseInt(theImage.style.width); hght=parseInt(theImage.style.height);
|
||||
if ( !(wdth==(wd*2)) ) {wdth=wd*2; hght=ht*2;}
|
||||
else {wdth=wd;hght=ht;}
|
||||
theImage.style.width=wdth; theImage.style.height=hght;
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -25,10 +31,14 @@ The least used projects are built first.</p>
|
|||
<p>To select referenced projects:</p>
|
||||
|
||||
<ol>
|
||||
<li>In the C/C++ Projects view, right-click a project, and select <b>Properties</b>.</li>
|
||||
<li>In the C/C++ Projects view, right-click a project, and select <b>Properties</b>.<br>
|
||||
<img src="../images/project_properties.png" width="200" height="235" onClick="changeSize(this,200,235);"
|
||||
alt="Screen Capture of the Project Properties menu" title="click to toggle image size"></li>
|
||||
<li>On the left, select <b>Project References</b> from the list.</li>
|
||||
<li>In the Project references... list, select referenced
|
||||
projects.</li>
|
||||
<li>In the Project references... list, select referenced projects..<br>
|
||||
<img src="../images/project_references.png" width="323" height="161" onClick="changeSize(this,323,161);"
|
||||
alt="Screen Capture of the Project References dialog box" title="click to toggle image size"></li>
|
||||
|
||||
<li>Click <b>OK</b>.</li>
|
||||
</ol>
|
||||
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">
|
||||
|
|