1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

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).

This commit is contained in:
David Daoust 2004-04-28 17:02:19 +00:00
parent ebeb4082c9
commit eb74a74427
44 changed files with 440 additions and 468 deletions

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Content assist</title> <title>Content assist</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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>
<body> <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 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
&quot<b>.</b>&quot, &quot<b>-></b>&quot or &quot<b>::</b>&quot.</p> &quot<b>.</b>&quot, &quot<b>-></b>&quot or &quot<b>::</b>&quot.</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 <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 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>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> <p>For example, the code template <samp>do while statement</samp> contains the following code:</p>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Open declarations</title> <title>Open declarations</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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>
<body> <body>
@ -13,7 +21,10 @@
<h1>Open declarations</h1> <h1>Open declarations</h1>
<p>You can select an element name in your code and quickly navigate to its declaration.</p> <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 <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> 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> declaration</a><br>
<a href="../tasks/cdt_t_search.htm">Searching for C/C++ elements</a></p> <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> <p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21"> <br>
<br>
&nbsp;</p> <p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER="0" width="324" height="14"> </p>
<p>&nbsp;</p>
<p>
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER="0" width="324" height="14"> </p>
</body> </body>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Outline view</title> <title>Outline view</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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>
<body> <body>
@ -15,7 +23,8 @@
<p>The Outline view displays an outline of a structured C/C++ file that is currently <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> 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 <p>The Outline view shows the following elements in the source file in the order
in which they occur:</p> in which they occur:</p>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Project file views</title> <title>Project file views</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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>
<body> <body>
@ -27,7 +35,9 @@
</ul> </ul>
Files that you select in the C/C++ Projects view affect the information that is displayed in other views.</p> 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> <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 <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> <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> <h3>Toolbar icons</h3>
<p><table border="1" > <p><table border="1" >

View file

@ -12,23 +12,26 @@
<h1>C/C++ search</h1> <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 &gt; Concepts &gt; Workbench &gt; Working sets</b></li>
<li> The Eclipse workspace, see <b>Workbench User Guide &gt; Tasks &gt; Upgrading
Eclipse</b></li>
</ul>
<p>You can conduct a fully or partially qualified name search. Further <p>You can conduct a fully or partially qualified name search. Further
qualifying a search increases the accuracy and relevance of search results. The 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 sections below provide guidance on how to control the scope of your search
through the use of search delimiters, correct syntax, and wildcards.</p> 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 &gt; Concepts &gt; Workbench &gt; Working sets</b><br>
For information on the Eclipse workspace, see <b>Workbench User Guide &gt; Tasks &gt; Upgrading Eclipse</b></br>
<h2>What you can search for</h2> <h2>What you can search for</h2>
<p>The table below lists the element types that you can search for and special <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 considerations to note when searching for a given element type. You can search

View file

@ -3,8 +3,6 @@
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <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"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Build</title> <title>Build</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <link rel="stylesheet" type="text/css" href="../help.css">
@ -13,27 +11,12 @@
<body> <body>
<h1>Build</h1> <h1>Build</h1>
&nbsp;<p>This section describes the build views and terminology.</p> <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>
&nbsp;<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> </body>
</html> </html>

View file

@ -3,8 +3,6 @@
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <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"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Coding aids</title> <title>Coding aids</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <link rel="stylesheet" type="text/css" href="../help.css">
@ -13,39 +11,16 @@
<body> <body>
<h1>Coding aids</h1> <h1>Coding aids</h1>
&nbsp;<p>This section provides information on code entry aids.</p> <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>
&nbsp;<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> </body>
</html> </html>

View file

@ -12,42 +12,27 @@
<h1>Concepts</h1> <h1>Concepts</h1>
<p>Conceptual topics provide background information that you need to know to <p>Provides background information for CDT components, tasks and objectives.</p>
complete a specific task.</p>
&nbsp;<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>
&nbsp;<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> </body>
</html> </html>

View file

@ -3,8 +3,6 @@
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <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"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Debug</title> <title>Debug</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <link rel="stylesheet" type="text/css" href="../help.css">
@ -16,25 +14,11 @@
<p>This section describes CDT debug concepts.</p> <p>This section describes CDT debug concepts.</p>
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="508"> <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>
<tr> <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>
<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>
<p>&nbsp;</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> </body>
</html> </html>

View file

@ -9,33 +9,20 @@
</head> </head>
<body> <body>
<h1>C/C++ Development Toolkit User Guide</h1> <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> <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> </body></html>

View file

@ -3,37 +3,18 @@
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <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"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>CDT projects</title> <title>CDT projects</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <link rel="stylesheet" type="text/css" href="../help.css">
</head> </head>
<body> <body>
<h1>CDT Projects</h1> <h1>CDT Projects</h1>
&nbsp;<p>This section provides information on C/C++ project files and project-related <p>This section provides information on C/C++ project files and project-related C/C++ views.</p>
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>
&nbsp;<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> </body>
</html> </html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -14,35 +14,13 @@
<p>This section describes how to set preferences for the C/C++ editor.</p> <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"> <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>
<tr> <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>
<th align="left" valign="bottom" width="244">To change preferences for</th> <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>
<th align="left" width="241">See</th> <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>
</tr> <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>
<tr>
<td align="left" width="244">C/C++ editor</td> <p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
<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>
</body> </body>

View file

@ -3,8 +3,6 @@
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <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"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Debug views</title> <title>Debug views</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <link rel="stylesheet" type="text/css" href="../help.css">
@ -16,44 +14,16 @@
<p>This section describes debug views.</p> <p>This section describes debug views.</p>
<table border="1" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="508"> <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>
<tr> <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>
<th align="left" valign="bottom" width="279">To</th> <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>
<th align="left" width="206">See</th> <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>
</tr> <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>
<tr> <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>
<td align="left" width="279">View information about registers</td> <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>
<td align="left" width="206"><a href="cdt_u_registersview.htm">Registers view</a></td> <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>
</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/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> </body>

View file

@ -13,45 +13,15 @@
<h1>New Make Projects properties</h1> <h1>New Make Projects properties</h1>
<p>In this section, learn about the C/C++ New Make Projects properties pages.</p> <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"> <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>
<tr> <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>
<th align="left" valign="bottom" width="154">To learn about the</th> <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>
<th align="left" width="363">See</th> <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>
</tr> <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>
<tr> <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>
<td align="left" width="154">Make Builder page</td> <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>
<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">
<p><img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14"></p>
</body>
</html> </html>

View file

@ -12,53 +12,51 @@
<h1>Reference</h1> <h1>Reference</h1>
<p>This section describes the Views, Windows and Dialog Boxes available from the C/C++ perspective.</p> <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_o_views.htm">Views</a><br>
<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="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="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_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="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="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="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="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="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="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="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="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="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="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="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="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="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="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="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_c_pref.htm">C/C++ Preferences</a><br>
<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="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="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_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="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="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="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="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="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="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="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="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="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="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="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="25" height="1" alt="">Debug<br> <img src="../images/trans.gif" border="0" width="50" 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="75" 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="75" 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="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="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_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="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="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="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="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="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="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_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="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="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="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="75" 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="100" 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_o_run_dbg_pages.htm">Run and Debug</a><br>
<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="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="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="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="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="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="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="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="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="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="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="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> <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> <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> </html>

View file

@ -3,8 +3,6 @@
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <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"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Run and Debug dialog boxes</title> <title>Run and Debug dialog boxes</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <link rel="stylesheet" type="text/css" href="../help.css">
@ -16,45 +14,14 @@
<p>This section describes the Run and Debug dialog boxes.</p> <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"> <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>
<tr> <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>
<th align="left" valign="bottom" width="119">To learn about the</th> <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>
<th align="left" width="312">See</th> <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>
</tr> <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>
<tr> <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>
<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/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> </body>
</html> </html>

View file

@ -3,8 +3,6 @@
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <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"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Views</title> <title>Views</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <link rel="stylesheet" type="text/css" href="../help.css">
@ -13,28 +11,20 @@
<body> <body>
<h1>Views</h1> <h1>Views</h1>
&nbsp;<p>This section describes views of the C/C++ perspective.</p> <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>
<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> </html>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Customizing the C-Build view</title> <title>Customizing the C-Build view</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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>
<body> <body>
@ -13,8 +21,8 @@
<h1>Build Console page, Preferences window</h1> <h1>Build Console page, Preferences window</h1>
<p>You can customize the appearance of the Build Console view.</p> <p>You can customize the appearance of the Build Console view.</p>
<p><img src="../images/BuildConsole.png" width="318" height="270" onClick="changeSize(this,318,270);"
<p><img src="../images/BuildConsole.png" border="0" width="635" height="539" alt="Build Console Preferences Dialog Box"></p> alt="Build Console Preferences Dialog Box" title="click to toggle image size"></p>
<dl> <dl>
<dt>Always clear console before building</dt> <dt>Always clear console before building</dt>
@ -48,4 +56,4 @@
</body> </body>
</html> </html>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Annotations page, Preferences window</title> <title>Annotations page, Preferences window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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 <!--INFOPOP
Customize the appearance of the C/C++ Editor. Customize the appearance of the C/C++ Editor.
@ -15,7 +23,8 @@ END INFOPOP-->
<h1>Annotations page, Preferences window</h1> <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>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> <dl>
<dt>Annotation Presentation Options</dt> <dt>Annotation Presentation Options</dt>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Colors page, Preferences window</title> <title>Colors page, Preferences window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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 <!--INFOPOP
@ -16,7 +24,8 @@ END INFOPOP-->
<h1>Colors page, Preferences window</h1> <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>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> <dl>
<dt>System Default</dt> <dt>System Default</dt>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Content Assist page, Preferences window</title> <title>Content Assist page, Preferences window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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 <!--INFOPOP
Customize how the Content Assist feature works. 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 <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 &gt; Preferences &gt; C/C++ &gt; C++ Editor &gt; Content Assist.</b></p> <b>Window &gt; Preferences &gt; C/C++ &gt; C++ Editor &gt; Content Assist.</b></p>
<p> <p><img src="../images/contentAssist_preferences.png" width="334" height="263" onClick="changeSize(this,334,263);"
<img src="../images/contentAssist_preferences.png" border="0" width="667" height="525" alt="Content Assist Preferences Dialog Box"> alt="Content Assist Preferences Dialog Box" title="click to toggle image size"></p>
</p>
<dl> <dl>
<p><dt>Search scope for completion proposals</dt> <p><dt>Search scope for completion proposals</dt>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>General page, Preferences window</title> <title>General page, Preferences window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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 <!--INFOPOP
@ -16,7 +24,10 @@ END INFOPOP-->
<h1>General page, Preferences window</h1> <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>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> <dl>
<dt>Text Font</dt> <dt>Text Font</dt>
<dd>Changes the font of the text in the workbench.</dd> <dd>Changes the font of the text in the workbench.</dd>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Navigation page, Preferences window</title> <title>Navigation page, Preferences window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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 <!--INFOPOP
@ -16,8 +24,8 @@ END INFOPOP-->
<h1>Navigation page, Preferences window</h1> <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>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> <dl>
<dt>Enable Hyperlink Navigation</dt> <dt>Enable Hyperlink Navigation</dt>
<dd>Select this checkbox to support hyperlink style navigation for Open Declarations.</dd> <dd>Select this checkbox to support hyperlink style navigation for Open Declarations.</dd>
@ -35,4 +43,4 @@ END INFOPOP-->
</body> </body>
</html> </html>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>C/C++ preferences</title> <title>C/C++ preferences</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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 <!--INFOPOP
View information about your program C/C++ environment. View information about your program C/C++ environment.
@ -15,7 +23,8 @@ END INFOPOP-->
<h1>C/C++ page, Preferences window</h1> <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>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> <dl>
<dt>Link view selection to active editor</dt> <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> <dd>Select this checkbox to open an item selectedin the Projects view, in the Editor view.</dd>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Code Templates page, Preferences window</title> <title>Code Templates page, Preferences window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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 <!--INFOPOP
Create, edit, remove, import, or export code templates. 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, <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 &gt; Preferences &gt; C/C++ &gt; Code Templates</b>.</p> import, or create your own templates click <b>Window &gt; Preferences &gt; C/C++ &gt; 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> <dl>
<dt>New</dt> <dt>New</dt>
<dd>Creates a new code template.</dd> <dd>Creates a new code template.</dd>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Customizing the C-Build view</title> <title>Customizing the C-Build view</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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>
<body> <body>
@ -14,8 +22,8 @@
<p>You can customize Make options.</p> <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> <dl>
<dt>Build make target in the background</dt> <dt>Build make target in the background</dt>
<dd>Select this checkbox to perform builds in the background.</dd> <dd>Select this checkbox to perform builds in the background.</dd>
@ -34,4 +42,4 @@
</body> </body>
</html> </html>

View file

@ -6,17 +6,22 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Make Builder page, C/C++ Properties window</title> <title>Make Builder page, C/C++ Properties window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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
Define the build settings for the current project.
END INFOPOP-->
<body> <body>
<h1>Make Builder page, C/C++ Preferences window</h1> <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>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> <dl>
<dt>Use default</dt> <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> <dd>Select this checkbox to use the default make command. Clear the check box to specify a new make command.</dd>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Paths and symbols page, C/C++ Properties window</title> <title>Paths and symbols page, C/C++ Properties window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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 <!--INFOPOP
Enter include paths and symbols. Enter include paths and symbols.
@ -16,8 +24,8 @@ END INFOPOP-->
<h1>Manage defined symbols dialog box</h1> <h1>Manage defined symbols dialog box</h1>
<p>You can manage preprocessor symbols from the Manage defined symbols dialog box.</p> <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> <dl>
<dt>New</dt> <dt>New</dt>
<dd>Enter a new defined symbol.</dd> <dd>Enter a new defined symbol.</dd>
@ -47,4 +55,4 @@ END INFOPOP-->
</body> </body>
</html> </html>

View file

@ -6,17 +6,23 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Paths and symbols page, C/C++ Properties window</title> <title>Paths and symbols page, C/C++ Properties window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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> </head>
<!--INFOPOP
Enter include paths and symbols.
END INFOPOP-->
<body> <body>
<h1>Manage include paths dialog box</h1> <h1>Manage include paths dialog box</h1>
<p>You can manage include paths from the Manage include paths dialog box.</p> <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> <dl>
<dt>New</dt> <dt>New</dt>
@ -47,4 +53,4 @@ END INFOPOP-->
</body> </body>
</html> </html>

View file

@ -6,17 +6,23 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Binary Parser, C/C++ Properties window</title> <title>Binary Parser, C/C++ Properties window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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
Select a binary parser for the target platform.
END INFOPOP-->
<body> <body>
<h1>Binary Parser page, C/C++ Preferences window</h1> <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>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> <dl>
<dt>Binary Parser</dt> <dt>Binary Parser</dt>
<dd>Select a binary parser from the list.</dd> <dd>Select a binary parser from the list.</dd>

View file

@ -6,10 +6,15 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Error Parsers, C/C++ Properties window</title> <title>Error Parsers, C/C++ Properties window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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
Control the build messages displayed in the Tasks view.
END INFOPOP-->
<body> <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>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> <dl>
<dt>Error Parsers</dt> <dt>Error Parsers</dt>

View file

@ -6,17 +6,23 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Paths and symbols page, C/C++ Properties window</title> <title>Paths and symbols page, C/C++ Properties window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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> <body>
<h1>Paths and Symbols page, C/C++ Preferences window</h1> <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>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> <dl>
<dt>Automate scanner configuration discovery</dt> <dt>Automate scanner configuration discovery</dt>

View file

@ -6,11 +6,15 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Outline view</title> <title>Outline view</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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
View C/C++ file components.
END INFOPOP-->
<body> <body>
<h1>Outline view</h1> <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 <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> 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> <h2>Outline view toolbar icons</h2>

View file

@ -6,18 +6,22 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Paths and symbols page, C/C++ Properties window</title> <title>Paths and symbols page, C/C++ Properties window</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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
Configure Scanner Discovery.
END INFOPOP-->
<body> <body>
<h1>Scanner Configuration Discovery</h1> <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>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> <dl>
<dt>Enable build output parser</dt> <dt>Enable build output parser</dt>
<dd>Select this checkbox to configure the scanner to parse the output from a build.</dd> <dd>Select this checkbox to configure the scanner to parse the output from a build.</dd>

View file

@ -6,16 +6,22 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>C/C++ search page, Search dialog box</title> <title>C/C++ search page, Search dialog box</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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
Search for C/C++ elements.
END INFOPOP-->
<body> <body>
<h1>C/C++ search page, Search dialog box</h1> <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>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> <dl>
<dt>Search string</dt> <dt>Search string</dt>
<dd>Specifies a search string.</dd> <dd>Specifies a search string.</dd>

View file

@ -6,15 +6,26 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Building manually</title> <title>Building manually</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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>
<body> <body>
<h1>Building manually</h1> <h1>Building manually</h1>
<p>Manual builds let you choose the scope of a build, whether to build, <p>Manual builds let you choose the scope of a build, as well as options for building,
or rebuild projects. You can view the output of the make utility in the or rebuilding projects. You can view the output of the make utility in the console.</p>
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> <p>To rebuild all open projects:</p>

View file

@ -6,6 +6,14 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Creating a C/C++ file</title> <title>Creating a C/C++ file</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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>
<body> <body>
@ -24,13 +32,19 @@ information &gt; Views and editors &gt; Editor area</b>.</p>
<p>To create a C++ file:</p> <p>To create a C++ file:</p>
<ol> <ol>
<li>In the <b>C++ Projects</b> view, right-click a project, <li>In the <b>C++ Projects</b> view, right-click a project,
and select <b>New &gt; File</b>.</li> and select <b>New &gt; 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 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 <li>In the <b>File name</b> box, type a name followed by the appropriate extension.</li>
extension.</li> <li>Click <b>Finish</b>.<br>
<li>Click <b>Finish</b>.</li> <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> <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> </ol>
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"> <p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">
<br> <br>

View file

@ -3,11 +3,17 @@
<head> <head>
<meta http-equiv="Content-Language" content="en-us"> <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"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Selecting referenced projects</title> <title>Selecting referenced projects</title>
<link rel="stylesheet" type="text/css" href="../help.css"> <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>
<body> <body>
@ -25,10 +31,14 @@ The least used projects are built first.</p>
<p>To select referenced projects:</p> <p>To select referenced projects:</p>
<ol> <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>On the left, select <b>Project References</b> from the list.</li>
<li>In the Project references... list, select referenced <li>In the Project references... list, select referenced projects..<br>
projects.</li> <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> <li>Click <b>OK</b>.</li>
</ol> </ol>
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"> <p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">