1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

From Dave Williams: Doc cleanup.

This commit is contained in:
David Daoust 2004-06-14 11:25:12 +00:00
parent 49500fb30e
commit cda607e788
82 changed files with 518 additions and 428 deletions

View file

@ -54,7 +54,7 @@ build.</p>
<p>Build-related information is displayed as follows:</p>
<ul>
<li>The C-Build view displays the output of the make utility.</li>
<li>The Console view displays the output of the make utility.</li>
<li>The Tasks view displays a list of compiler errors and warnings related to
your projects.</li>
<li>Makefile actions are displayed in the Make Targets view.</li>
@ -67,26 +67,26 @@ view</b>.</p>
<p>You can either create a C project for which you supply the
<span class="filename">makefile</span>
<b>makefile</b>
or create a C project for which the CDT generates makefiles automatically.
</p>
<p>To create a new project, from the menu bar choose
<span class="guilabel">File > New > Project</span>.
<b>File > New > Project</b>.
In the dialog that appears:
</p>
<ul>
<li>To create a project for which you supply the <span class="filename">makefile</span>,
<li>To create a project for which you supply the <b>makefile</b>,
select either
<span class="guilabel">Standard Make C project</span> or
<b>Standard Make C project</b> or
<span class="guilabel">Standard Make C++ project</span>.
<b>Standard Make C++ project</b>.
</li>
<li>To create a project for which the CDT supplies a basic
<span class="filename">makefile</span>, select either
<span class="guilabel">Managed Make C project</span> or
<span class="guilabel">Managed Make C++ project</span>.
<b>makefile</b>, select either
<b>Managed Make C project</b> or
<b>Managed Make C++ project</b>.
</li>
</ul>
@ -100,8 +100,8 @@ select either
you can set the <i>build order</i>.
If your project refers to another project, the CDT must build the other project first.
To set the build order, from the menu bar select
<span class="guilabel">Window &gt; Preferences &gt;
Build Order</span>.
<b>Window &gt; Preferences &gt;
Build Order</b>.
<p>When you set the build order, the CDT does not rebuild projects
that depend
on a project; you must rebuild all projects to ensure all changes are
@ -114,7 +114,7 @@ propagated.
<dd>You can set the CDT to perform an <i>automatic save</i> of all modified resources
when you perform a manual build; from the menu bar, select
<span class="guilabel">Windows &gt; Preferences &gt; Workbench</span>.
<b>Windows &gt; Preferences &gt; Workbench</b>.
By default, this feature is disabled.
</dd>
</dl>
@ -122,32 +122,32 @@ By default, this feature is disabled.
<h2>Controlling the building of your project</h2>
<p>The C/C++ compiler that a project uses is controlled by the project's
<span class="guilabel">Properties</span> setting.
<b>Properties</b> setting.
To view a project's properties, right-click on the project and select
<span class="guilabel">Properties</span>.
<b>Properties</b>.
In the dialog that appears, the
<span class="guilabel">C/C++ Make Project</span> page enables you
<b>C/C++ Make Project</b> page enables you
to control a variety of settings, including:</p>
<dl>
<dt>Build Setting</dt>
<dd>Controls whether the compiler will <span class="guilabel">Stop On Error</span>
or <span class="guilabel">Keep Going On Error</span>.
Choosing <span class="guilabel">Keep Going On Error</span> will force the compiler to
<dd>Controls whether the compiler will <b>Stop On Error</b>
or <b>Keep Going On Error</b>.
Choosing <b>Keep Going On Error</b> will force the compiler to
attempt to build all referenced projects even if the current project has errors.
</dd>
<dt>Build Command</dt>
<dd>Controls which compiler is used.
By default the compiler is <span class="command">C Builder</span>
(<span class="command">gcc</span>).</dd>
By default the compiler is <b>C Builder</b>
(<b>gcc</b>).</dd>
<dt>Workbench Build Behavior</dt>
<dd>Controls the auto-build on save feature and what operations
are performed during a build and rebuild.</dd>
</dl>
<p>The <span class="guilabel">External Tools Builders</span> page
<p>The <b>External Tools Builders</b> page
enables you to add, reorder, or remove external build tools.
</p>
@ -157,11 +157,11 @@ enables you to add, reorder, or remove external build tools.
</p>
<ul>
<li>The <span class="guilabel">C-Build</span> view displays the output of the make utility.</li>
<li>The <span class="guilabel">Tasks</span> view displays a list
<li>The <b>Console</b> view displays the output of the make utility.</li>
<li>The <b>Tasks</b> view displays a list
of compiler errors and warnings related to your projects.
</li>
<li>Build actions display in the <span class="guilabel">Make Targets</span> view.</li>
<li>Build actions display in the <b>Make Targets</b> view.</li>
</ul>
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">

View file

@ -46,8 +46,7 @@ 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
&quot;<b>.</b>&quot;, &quot;<b>-></b>&quot; or &quot;<b>::</b>&quot;.</p>
<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><img src="../images/contentAssist_example.png" alt="C++ example showing Code Assist popup"></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
@ -65,22 +64,20 @@ 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>
<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>
<img src="../images/editor_c_codetemplates_use.png" alt="C++ example showing Code Assist popup"></p>
<p>For example, the code template <samp>do while statement</samp> contains the following code:</p>
<p><pre>do {
${cursor}
} while (${condition});</pre></p>
<p><img src="../images/codetemplates_example.png" alt="Code Template showing do-while example"></p>
<p> When you select the <samp>do</samp> code template from the list, you insert the following code:</p>
<p><pre>do {
} while (condition);</pre></p>
<p>If the completion engine finds only one proposal in your templates, that proposal is inserted at the current cursor position.
For example if you create a new CPP file and type <tt>mai+CTRL+SPACE</tt> the following code is inserted at the cursor location:</p>
For example if you create a new .cpp file and type <tt>mai+CTRL+SPACE</tt> the following code is inserted at the cursor location:</p>
<p><pre>int
main(int argc, char **argv) {

View file

@ -6,14 +6,6 @@
<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 language="JavaScript">
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>
@ -22,8 +14,7 @@ function changeSize(theImage,wd,ht) {
<p>You can select an element name in your code and quickly navigate to its declaration.</p>
<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">
<img src="../images/openDeclarations.png" alt="Editor View showing Open Declarations option">
<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>

View file

@ -6,14 +6,6 @@
<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 language="JavaScript">
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>
@ -23,8 +15,7 @@ function changeSize(theImage,wd,ht) {
<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" 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>
<img src="../images/outlineView.png" alt="Editor View highlighting corrisponding element in the Outline View"></li>
<p>The Outline view shows the following elements in the source file in the order
in which they occur:</p>

View file

@ -32,19 +32,19 @@ views:</p>
<dd>Lists all of your C/C++ projects.</dd>
<dt>Navigator view</dt>
<dd>Lists all files in your Eclipse <span class="filename">workspace</span>.</dd>
<dd>Lists all files in your Eclipse <b>workspace</b>.</dd>
<dt>Tasks view</dt>
<dd>Lists things such as tasks, compiler warnings, and errors.</dd>
<dt>C-Build view</dt>
<dd>Displays the output from <span class="command">make</span>.</dd>
<dt>Console view</dt>
<dd>Displays the output from <b>make</b>.</dd>
<dt>Properties view</dt>
<dd>Lists the properties of a file that has been selected in
the <span class="guilabel">C/C++ Projects</span> view or the
the <b>C/C++ Projects</b> view or the
<span class="guilabel">Navigator</span> view.</dd>
<b>Navigator</b> view.</dd>
<dt>Outline view</dt>
<dd>Lists file elements.</dd>

View file

@ -41,7 +41,6 @@ By default it consists of an editor area and the following views:
<ul>
<li>C/C++ Projects (the file navigator for C/C++ resources)</li>
<li>Navigator (the file navigator for all Eclipse resources)</li>
<li>C-Build</li>
<li>Console</li>
<li>Properties</li>
<li>Tasks</li>

View file

@ -23,9 +23,8 @@ The <b>C/C++</b> perspective displays these panels in a single Eclipse window. <
<p>The following views are commonly used in the <b>C/C++</b> perspective:</p>
<dl>
<dt>C-Build</dt><dd>Displays the output from your build command.</dd>
<dt>C/C++ Projects</dt><dd>Shows your C/C++ projects and files.It operates in much the same way as the <b>Navigator</b>.</dd>
<dt>Console</dt><dd>Displays your program's output.</dd>
<dt>Console</dt><dd>Displays your program's output, as well as the output from your build command.</dd>
<dt>Make Targets</dt><dd>Enables you to select the make targets you want to build for a particular CPU.</dd>
<dt>Navigator</dt><dd>Shows all of the file system's files under your workspace directory.</dd>
<dt>Outline</dt><dd>Displays the structure of the file currently open in an editor.</dd>

View file

@ -2,89 +2,376 @@
<?NLS TYPE="org.eclipse.help.contexts"?>
<!--
******************************************************************
** (C) COPYRIGHT International Business Machines Corp. 2001,2003
** (C) COPYRIGHT International Business Machines Corp. 2001,2004
** All Rights Reserved * Licensed Materials - Property of IBM
******************************************************************
-->
<!DOCTYPE contexts [
<!ENTITY defaultCSHelp "Default Context Sensitive Help">
<!ENTITY errorParsers "Error Parsers, C/C++ Properties window">
<!ENTITY binaryParser "Binary Parser page, C/C++ Properties window">
<!ENTITY targetPlatform "Target platform, C/C++ Properties window">
<!ENTITY generalPage "General page, Preferences window">
<!ENTITY annotationsPage "Annotations page, Preferences window">
<!ENTITY colorsPage "Colors page, Preferences window">
<!ENTITY contentAssist "Content Assist page, Preferences window">
<!ENTITY codeTemplates "Code Templates page, Preferences window">
<!ENTITY searchPage "C/C++ Search page, Search dialog box">
<!ENTITY outlineView "Outline view">
<!ENTITY projectsView "C/C++ Projects view">
<!ENTITY commonPage "Common page, Run/Debug dialog box">
]>
<contexts>
<context id ="default_cs_help">
<context id ="projects_view">
<description>Click below to see help.</description>
<topic href="default_cs_help.htm"
label="&defaultCSHelp;"/>
<topic href="reference/cdt_u_cproj_view.htm"
label="C/C++ Projects view"/>
</context>
<context id ="cdt_error_parsers_page">
<description>Control the build messages displayed in the Tasks view. </description>
<topic href="reference/cdt_u_newproj_parser_error.htm"
label="&errorParsers;"/>
<context id ="navigator_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_navigator_view.htm"
label="Navigator view"/>
</context>
<context id ="cdt_binary_parser_page">
<description>Select a binary parser for the target platform. </description>
<topic href="reference/cdt_u_newproj_parser_binary.htm"
label="&binaryParser;"/>
<context id ="outline_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_outline_view.htm"
label="Outline view"/>
</context>
<context id ="man_proj_platform_help">
<description>Select a target deployment platform. </description>
<topic href="reference/cdt_u_newproj_platf.htm"
label="&targetPlatform;"/>
<context id ="make_targets_view">
<description>Click below to see help.</description>
<topic href="rreference/cdt_u_make_targets_view.htm"
label="Make Targets view"/>
</context>
<context id ="new_c_editor_pref_page_context">
<description>Customize the appearance of the C/C++ Editor. </description>
<topic href="reference/cdt_u_c_editor_gen.htm"
label="&generalPage;"/>
<context id ="editor_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_editor_view.htm"
label="Editor view"/>
</context>
<context id ="new_c_editor_annotations_pref_page_context">
<description>Customize the appearance of the C/C++ Editor. </description>
<topic href="reference/cdt_u_c_editor_anno.htm"
label="&annotationsPage;"/>
<context id ="console_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_console_view.htm"
label="Console view"/>
</context>
<context id ="new_c_editor_colors_pref_page_context">
<description>Customize the appearance of the C/C++ editor. </description>
<topic href="reference/cdt_u_c_editor_color.htm"
label="&colorsPage;"/>
<context id ="problems_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_problems_view.htm"
label="Problems view"/>
</context>
<context id ="new_c_editor_content_assist_pref_page_context">
<description>Customize how the Content Assist feature works. </description>
<topic href="reference/cdt_u_c_editor_con_assist.htm"
label="&contentAssist;"/>
<context id ="properties_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_properties_view.htm"
label="Properties view"/>
</context>
<context id ="new_c_templates_pref_page_context">
<description>Create, edit, remove, import, or export code templates. </description>
<context id ="search_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_search_view.htm"
label="Search view"/>
</context>
<context id ="registers_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_registersview.htm"
label="Registers view"/>
</context>
<context id ="memory_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_memoryview.htm"
label="Memory view"/>
</context>
<context id ="mem_view_pref">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_mem_view_pref.htm"
label="Memory view preferences"/>
</context>
<context id ="shared_lib_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_shared_lib_view.htm"
label="Shared libraries view"/>
</context>
<context id ="signals_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_signals_view.htm"
label="Signals view"/>
</context>
<context id ="dbg_view">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_dbg_view.htm"
label="Debug view"/>
</context>
<context id ="dbg_pref">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_dbg_pref.htm"
label="Debug preferences"/>
</context>
<context id ="find_replace">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_find_replace.htm"
label="C/C++ Find and Replace"/>
</context>
<context id ="c_pref">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_c_pref.htm"
label="C/C++ Preferences"/>
</context>
<context id ="build_pref">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_build_pref.htm"
label="Build Console"/>
</context>
<context id ="code_temp">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_code_temp.htm"
label="&codeTemplates;"/>
label="Code Templates"/>
</context>
<context id ="c_search_page">
<description>Search for C/C++ elements. </description>
<context id ="c_editor_gen">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_c_editor_gen.htm"
label="Editor General Preferences"/>
</context>
<context id ="c_editor_color">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_c_editor_color.htm"
label="Editor Colors Preferences"/>
</context>
<context id ="c_editor_con_assist">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_c_editor_con_assist.htm"
label="Editor Content Assist Preferences"/>
</context>
<context id ="c_editor_hov">
<description>Click below to see help.</description>
<topic href="cdt_u_c_editor_hov.htm"
label="Editor Hovers Preferences"/>
</context>
<context id ="c_editor_navigation">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_c_editor_navigation.htm"
label="Editor Navigation Preferences"/>
</context>
<context id ="c_file_types">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_c_file_types.htm"
label="File Types"/>
</context>
<context id ="make_targets_pref">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_make_targets_pref.htm"
label="Make Targets"/>
</context>
<context id ="newproj_buildset">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_newproj_buildset.htm"
label="Make Builder"/>
</context>
<context id ="newproj_parser_error">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_newproj_parser_error.htm"
label="Error Parser"/>
</context>
<context id ="newproj_parser_binary">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_newproj_parser_binary.htm"
label="Binary Parser"/>
</context>
<context id ="discovery_preferences">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_discovery_preferences.htm"
label="Discovery Options"/>
</context>
<context id ="man_prop_info">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_mprop_info.htm"
label="Info"/>
</context>
<context id ="man_prop_builder">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_mprop_builders.htm"
label="Builders"/>
</context>
<context id ="man_prop_build">
<description>Click below to see help.</description>
<topic href="cdt_u_mprop_build.htm"
label="Build"/>
</context>
<context id ="man_prop_file_types">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_mprop_file_types.htm"
label="File Types"/>
</context>
<context id ="man_prop_indexer">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_mprop_indexer.htm"
label="Indexer"/>
</context>
<context id ="man_prop_error">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_mprop_merror.htm"
label="Error Parser"/>
</context>
<context id ="man_prop_references">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_mprop_ref.htm"
label="Project References"/>
</context>
<context id ="std_prop_info">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_info.htm"
label="Info"/>
</context>
<context id ="std_prop_builder">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_builders.htm"
label="Builders"/>
</context>
<context id ="std_prop_file_types">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_file_types.htm"
label="File Types"/>
</context>
<context id ="std_prop_include">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_includes.htm"
label="Include Paths and Symbols"/>
</context>
<context id ="std_prop_indexer">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_indexer.htm"
label="Indexer"/>
</context>
<context id ="std_prop_build">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_mbuild.htm"
label="Make Builder"/>
</context>
<context id ="std_prop_error">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_merror.htm"
label="Error Parser"/>
</context>
<context id ="std_prop_binary">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_mbinary.htm"
label="Binary Parser"/>
</context>
<context id ="std_prop_discovery">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_mdiscovery.htm"
label="Discovery Options"/>
</context>
<context id ="std_prop_source">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_psource.htm"
label="Source"/>
</context>
<context id ="std_prop_output">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_poutput.htm"
label="Output"/>
</context>
<context id ="std_prop_projects">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_pproj.htm"
label="Projects"/>
</context>
<context id ="std_prop_libraries">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_plib.htm"
label="Libraries"/>
</context>
<context id ="std_prop_containers">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_pcontainers.htm"
label="Path Containers"/>
</context>
<context id ="std_prop_references">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_sprop_ref.htm"
label="Project References"/>
</context>
<context id ="new_proj_wiz">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz.htm"
label="C/C++ New Project Wizard"/>
</context>
<context id ="new_proj_wiz_m_name">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_m_name.htm"
label="Name"/>
</context>
<context id ="new_proj_wiz_m_target">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_m_target.htm"
label="Select a Target"/>
</context>
<context id ="new_proj_wiz_m_proj">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_m_proj.htm"
label="Referenced Projects"/>
</context>
<context id ="new_proj_wiz_m_errorp">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_m_errorp.htm"
label="Error Parsers"/>
</context>
<context id ="new_proj_wiz_m_cindexer">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_m_cindexer.htm"
label="C/C++ Indexer"/>
</context>
<context id ="new_proj_wiz_s_name">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_s_name.htm"
label="Name"/>
</context>
<context id ="new_proj_wiz_s_proj">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_s_proj.htm"
label="Referenced Projects"/>
</context>
<context id ="new_proj_wiz_s_mbuilder">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_s_mbuilder.htm"
label="Make Builder"/>
</context>
<context id ="new_proj_wiz_s_errorp">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_s_errorp.htm"
label="Error Parsers"/>
</context>
<context id ="new_proj_wiz_s_binary">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_s_binary.htm"
label="Binary Parser"/>
</context>
<context id ="new_proj_wiz_s_discovery">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_s_discovery.htm"
label="Discovery Options"/>
</context>
<context id ="new_proj_wiz_s_cindexer">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_new_proj_wiz_s_cindexer.htm"
label="C/C++ Indexer"/>
</context>
<context id ="run_dbg_main">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_run_dbg_main.htm"
label="Main"/>
</context>
<context id ="run_dbg_arg">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_run_dbg_arg.htm"
label="Arguments"/>
</context>
<context id ="run_dbg_env">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_run_dbg_env.htm"
label="Environment"/>
</context>
<context id ="run_dbg_dbg">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_run_dbg_dbg.htm"
label="Debugger"/>
</context>
<context id ="run_dbg_srce">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_run_dbg_srce.htm"
label="Source"/>
</context>
<context id ="run_dbg_comm">
<description>Click below to see help.</description>
<topic href="reference/run_dbg_comm"
label="Common"/>
</context>
<context id ="cdt_u_search">
<description>Click below to see help.</description>
<topic href="reference/cdt_u_search.htm"
label="&searchPage;"/>
label="C/C++ search page"/>
</context>
</contexts>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -44,16 +44,17 @@
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a style="text-decoration:none" href="cdt_u_find_replace.htm">C/C++ Find and Replace</a><br>
<img src="../images/trans.gif" border="0" width="50" 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="100" 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="100" height="1" alt=""><a style="text-decoration:none" href="cdt_o_ceditor_pref.htm">C/C++ Editor preferences</a><br>
<img src="../images/trans.gif" border="0" width="150" 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="150" 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="150" 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="150" 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="100" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_file_types.htm">File Types</a><br>
<img src="../images/trans.gif" border="0" width="100" 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="100" height="1" alt="">Debug<br>
<img src="../images/trans.gif" border="0" width="150" height="1" alt="">GDB MI<br>
<img src="../images/trans.gif" border="0" width="150" height="1" alt="">Source Code Locations<br>
<img src="../images/trans.gif" border="0" width="100" height="1" alt=""><a style="text-decoration:none" href="cdt_o_ceditor_pref.htm">C/C++ Editor preferences</a><br>
<img src="../images/trans.gif" border="0" width="150" 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="150" 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="150" 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="150" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_editor_hov.htm">Hovers</a><br>
<img src="../images/trans.gif" border="0" width="150" 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="100" height="1" alt=""><a style="text-decoration:none" href="cdt_u_c_file_types.htm">File Types</a><br>
<img src="../images/trans.gif" border="0" width="100" 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="100" height="1" alt=""><a style="text-decoration:none" href="cdt_o_proj_prop_pages.htm">New Make Projects properties</a><br>
<img src="../images/trans.gif" border="0" width="150" height="1" alt=""><a style="text-decoration:none" href="cdt_u_newproj_buildset.htm">Make Builder</a><br>

View file

@ -4,7 +4,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Customizing the C-Build view</title>
<title>Customizing the Console view</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
function changeSize(theImage,wd,ht) {

View file

@ -0,0 +1,44 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html lang="en">
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hovers page, Preferences window</title>
<link rel="stylesheet" type="text/css" href="../help.css">
</head>
<!--INFOPOP
Customize the appearance of the C/C++ Editor.
END INFOPOP-->
<body>
<h1>Hovers page, Preferences window</h1>
<p>You can customize the appearance of the C/C++ editor hover behavior on the Hovers page of the Preferences window.</p>
<p><img src="../images/editor_hover_preferences.png" alt="Editor Hover Preferences Window"></p>
<dl>
<dt>Enable editor problem annotation</dt>
<dd>&nbsp;</dd>
<dt>Text Hover key modifier preferences:</dt>
<dd>&nbsp;</dd>
<dt>Pressed key modifier while hovering:</dt>
<dd>&nbsp;</dd>
<dt>Description</dt>
<dd>&nbsp;</dd>
</dl>
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"> <br>
<a href="../concepts/cdt_o_code_entry.htm">Coding aids</a></p>
<p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21">
<br>
<a href="../tasks/cdt_t_cust_cpp_editor.htm">Customizing the C/C++ editor</a></p>
<p><img border="0" src="../images/ngref.gif" ALT="Related reference" width="143" height="21">
<br>
<a href="cdt_o_ceditor_pref.htm">C/C++ editor preferences</a></p>
<img src="../images/ng03_04.gif" ALT="IBM Copyright Statement" BORDER=0 width="324" height="14">
</body>
</html>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Edit Menu actions</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>Edit Menu actions</h1>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Run Menu</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -21,7 +13,7 @@ function changeSize(theImage,wd,ht) {
<h1>Run Menu actions</h1>
<p>Run and Debug menu commands:</p>
<p><img src="../images/run_menu.png" alt="Run Menu" ></p>
<p><img src="../images/cdt_menu_run.png" alt="Run Menu" ></p>
<p><table border="1" cellspacing="0" cellpadding="3">
<tr><th>Name</th><th>Function</th><th>Keyboard Shortcut</th></tr>

View file

@ -4,7 +4,7 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Customizing the C-Build view</title>
<title>Build Make Targets in the Background</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
function changeSize(theImage,wd,ht) {
@ -20,7 +20,7 @@ function changeSize(theImage,wd,ht) {
<h1>Make Targets page, Preferences window</h1>
<p>You can customize Make options.</p>
<p>You can force the building of make targets in the background.</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>

View file

@ -6,14 +6,6 @@
<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 language="JavaScript">
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>
@ -22,8 +14,7 @@ function changeSize(theImage,wd,ht) {
<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" width="419" height="156" onClick="changeSize(this,419,156);"
alt="Outline View screen capture" title="click to toggle image size"></p>
<p><img src="../images/outlineView.png" alt="Outline View"></p>
<h2>Outline view toolbar icons</h2>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>C/C++ Problems view</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -26,8 +18,7 @@
<p>Errors are passed up from your C++ compiler. The <b>Problems</b> view lists the error, filename and folder.
If you can select an error the associated file will open in the <b>C/C++ Editor</b> view and the cursor will display the line where the error was encountered.</p>
<p><img src="../images/cdt_error_workbench.png" width="400" height="300" onClick="changeSize(this,400,300);"
alt="C/C++ Perspective in Eclipse showing code errors" title="click to toggle image size"></p>
<p><img src="../images/cdt_error_workbench.png" alt="C/C++ Perspective in Eclipse showing code errors" ></p>
<h2>Problems view Toolbar</h2>

View file

@ -6,22 +6,13 @@
<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 language="JavaScript">
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>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" width="198" height="157" onClick="changeSize(this,198,157);"
alt="Editor General Preferences Dialog Box" title="click to toggle image size"></p>
<p> <img src="../images/scanner_cfg_disc.png" alt="Editor General Preferences Window"></p>
<dl>
<dt>Enable build output parser</dt>
<dd>Select this checkbox to configure the scanner to parse the output from a build.</dd>

View file

@ -22,7 +22,7 @@
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a href="cdt_t_manualbuild.htm">Build your project as required</a><br>
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a href="cdt_t_autosave.htm">Save modified resources before you build</a><br>
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a href="cdt_t_addmaketarget.htm">Add a make target</a><br>
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a href="cdt_t_cbuild_pref.htm">Customize the C-Build view</a><br>
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a href="cdt_t_cbuild_pref.htm">Customize the Console view</a><br>
<img src="../images/trans.gif" border="0" width="25" height="1" alt=""><a href="cdt_o_tasksview.htm">View and manage compile errors</a><br>
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a href="cdt_t_jumperror.htm">Jump to errors</a><br>
<img src="../images/trans.gif" border="0" width="50" height="1" alt=""><a href="cdt_t_filtererror.htm">Filter errors</a><br>

View file

@ -27,10 +27,10 @@ executes.</p>
<p>To add a breakpoint point, double click the marker bar located in the left margin of the
<b>C/C++ Editor</b> beside the line of code where you want to add a breakpoint. A dot
<img alt="Icon: Breakpoint object" src="../images/icon_breakpoint_obj.gif" width="16" height="16"> is
displayed in the marker bar and in the <b>Breakpoints</b> view, along with the name of the associated file.<br>
<img src="../images/add_breakpoint.png" width="227" height="168" onClick="changeSize(this,227,168);"
alt="Screen Capture of the edit view with the cursor highlighting a breakpoint" title="click to toggle image size">
</p>
displayed in the marker bar and in the <b>Breakpoints</b> view, along with the name of the associated file.</p>
<p><img src="../images/add_breakpoint.png" alt="Edit view with the cursor highlighting a breakpoint"> </p>
<p>For more information on marker bar icons, see <b>Workbench User Guide &gt;
Reference &gt; User interface information &gt; Icons and buttons &gt; Editor area
marker bar</b>.</p>

View file

@ -6,13 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Creating and editing code templates</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -29,8 +22,7 @@ org.eclipse.jdt.ui folders. </p>
<li>Click <b>Window &gt; Preferences</b>.</li>
<li>Expand <b>C/C++</b>, and click <b>Code Templates</b>.</li>
<li>Click <b>New</b>.<br>
<img src="../images/code_templates_new.png" width="365" height="304" onClick="changeSize(this,365,304);"
alt="Screen capture for inserting a new Code Template" title="click to toggle image size">
<img src="../images/code_templates_new.png" alt="Creating a new Code Template Window">
</li>
<li><p>Do the following:</p>
@ -54,8 +46,7 @@ org.eclipse.jdt.ui folders. </p>
<li>Click <b>Window &gt; Preferences</b>.</li>
<li>Expand <b>C/C++</b>, and click <b>Code Templates</b>.</li>
<li>Click <b>Edit</b>. The New Template dialog box opens.<br>
<img src="../images/code_templates_edit.png" width="368" height="269" onClick="changeSize(this,368,269);"
alt="Screen capture for editing a Code Template" title="click to toggle image size">
<img src="../images/codetemplates_example.png" alt="Editing a Code Template">
</li>
<li><p>Do the following:</p>
<ul>

View file

@ -48,8 +48,7 @@ Defining build settings</a>.</p>
<li>Click <b>OK</b>.</li>
<p>The target option is added under the <b>Build Make Target</b> menu item on the C/C++
Projects view context menu.</p>
<p>You can view the output of the make
utility in the C-Build view.</p>
<p>You can view the output of the make utility in the Console view.</p>
</ol>
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">

View file

@ -1,39 +1,29 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html lang="en">
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Autosaving on a manual build</title>
<title>Autosaving on a build</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>Autosaving on a manual build</h1>
<h1>Autosaving on a build</h1>
<p>You can let the CDT save modified files whenever you perform a manual build.
The files are saved before the build is performed so that the latest
version of your files is built.&nbsp; You can view the output of the make
utility in the C-Build view.</p>
version of your files is built. You can view the output of the make
utility in the Console view.</p>
<p>To save resources before manual builds:</p>
<ol>
<li>Click <b>Window &gt; Preferences</b>. </li>
<li>Select <b>Workbench</b> from the list.<br>
<img src="../images/workbench_prop.png" width="318" height="270" onClick="changeSize(this,318,270);"
alt="Screen Capture of Workbench Properties" title="click to toggle image size"></li>
<li>On the Workbench page, select the <b>Save all modified resources automatically
prior to manual build</b> check box.<li>Click <b>OK</b>.</li>
<p>The CDT will now save your resources when you build a project.</ol>
<img src="../images/workbench_prop.png" alt="Workbench Properties options window"></li>
<li>On the Workbench page, select the <b>Save automatically before build</b> check box.<li>Click <b>OK</b>.</li>
</ol>
<p>The CDT will now save your resources when you build a project.</p>
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">
<br>

View file

@ -4,33 +4,25 @@
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Customizing the C-Build view</title>
<title>Customizing the Console view</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>Customizing the C-Build view</h1>
<h1>Customizing the Console view</h1>
<p>The C-Build view displays the output of the make utility.</p>
<p>To set C-Build view preferences</p>
<p>The Console view displays the output of the make utility.</p>
<p>To set Console view preferences</p>
<ol>
<li>Click <b>Window &gt; Preferences</b>.</li>
<li>Expand <b>C/C++</b>, and click <b>Build Console</b>.<br>
<img src="../images/BuildConsole.png" width="318" height="270" onClick="changeSize(this,318,270);"
alt="Screen Capture of Build Console Properties" title="click to toggle image size"></li>
<img src="../images/BuildConsole.png" alt="Build Console Properties"></li>
<li>To display information on the latest build, select the <b>Always clear console before building</b> check box.</li>
<li>To open the C-Build view when a project is built, select the <b>Open console when building</b> check box.</li>
<li>To display the console if it is already open when a project is built,
select the <b>Bring the console to top when building (if present)</b>.</li>
<li>To open the Console view when a project is built, select the <b>Open console when building</b> check box.</li>
<li>To display the console if it is already open when a project is built, select the <b>Bring the console to top when building (if present)</b> check box.</li>
<li>To change the number of lines the console stores in its history, enter a new value in the text field next to <b>Limit console output (# lines)</b>.</li>
<li>To change the number of spaces represented by a tab, enter the number in the txt field next to <b>Display tab width</b>.</li>
<li>Click <b>OK</b>.</li>
</ol>

View file

@ -30,9 +30,8 @@ commonly-used snippets of code.</p>
<li>In the C/C++ editor, type at least the first letter of a code template or
element then <b>Ctrl+Space</b>.<br>
A list displays the code templates
<img border="0" src="../images/template_obj.gif" width="16" height="16"> followed by the elements that start with the letter combination you typed.</li>
<img src="../images/contentAssist_example.png" width="299" height="272" onClick="changeSize(this,299,272);"
alt="Screen Capture of Content Assist Example" title="click to toggle image size">
<img border="0" src="../images/template_obj.gif" width="16" height="16"> followed by the elements that start with the letter combination you typed.</li><br>
<img src="../images/contentAssist_example.png" alt="Editor View showing Content Assist Example">
<li>Do one of the following:
<ul>
@ -49,8 +48,7 @@ commonly-used snippets of code.</p>
<li>Click <b>Window &gt; Preferences</b>.</li>
<li>Expand <b>C/C++</b>, and click <b>C/C++ Editor</b>.</li>
<li>Click the <b>Content Assist</b> tab.<br>
<img src="../images/contentAssist_preferences.png" width="334" height="263" onClick="changeSize(this,334,263);"
alt="Screen Capture of Content Assist Preferences" title="click to toggle image size"></li>
<img src="../images/contentAssist_preferences.png" alt="Content Assist Preferences"</li>
<li>Do the following:
<ul>
<li>To change the scope from which Content Assist retrieves its proposals, select

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Assigning a C or C++ nature to a project</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -26,8 +18,7 @@ function changeSize(theImage,wd,ht) {
<ol>
<li>Click <b>File &gt; New &gt; Other</b>.<br>
<img src="../images/new_project.png" width="267" height="236" onClick="changeSize(this,267,236);"
alt="Screen Capture of the New Project window" title="click to toggle image size"></li>
<img src="../images/new_proj_convert.png" alt="New Project window"></li>
<li>Click <b>C</b> or <b>C++</b>.</li>
<li>Click <b>Convert to C/C++ Make Project</b>.</li>
<li>Click <b>Next</b>.</li>

View file

@ -29,16 +29,12 @@ END INFOPOP-->
<li>Click <b>Window &gt; Preferences</b>.</li><br>
<li>Expand<b> C/C++</b>, and click <b>C/C++ Editor</b>.</li><br>
<li>To set general preferences for the editor click the <b>General</b> tab.<br>
<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"></li>
<img src="../images/editor_general_preferences.png" alt="Editor General Preferences Window"></li>
<li>On the General Page set your preferences and click <b>Apply</b>. For a description of the General preferences click <a href="../reference/cdt_u_c_editor_gen.htm">here</a>.</li><br>
<li>To control the information that is displayed in the margins of the C/C++ editor, click the <b>Annotations</b> tab.<br>
<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"></li>
<li>On the Annotations page set your preferences and click <b>Apply</b>. For a description of the Annotation preferences click <a href="../reference/cdt_u_c_editor_anno.htm">here</a>.</li><br>
<li>To customize the color of the text in the editable area of the C/C++ editor, click the <b>Colors</b> tab.<br>
<img src="../images/editor_color_preferences.png" width="335" height="304" onClick="changeSize(this,335,304);"
alt="Editor Color Preferences Dialog Box" title="click to toggle image size"></li>
<img src="../images/editor_color_preferences.png" alt="Editor Color Preferences Window"></li>
<li>On the Colors page set your preferences and click <b>Apply</b>. For a description of the Color preferences click <a href="../reference/cdt_u_c_editor_color.htm">here</a>.</li><br>
<li>To customize Content Assist preferences, click the <b>Content Assist</b> tab. For more information, see <a href="cdt_t_contentassist.htm">Using Content Assist</a></li><br>
<li>Click <b>OK</b>.</li><br>

View file

@ -33,17 +33,14 @@ information &gt; Views and editors &gt; Editor area</b>.</p>
<ol>
<li>In the <b>C++ Projects</b> view, right-click a project,
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>
<img src="../images/project_new_file.png" alt="New &gt; File in Projects View"></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>.<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>
<img src="../images/project_new_file_name.png" alt="New File Wizard"></li>
<p>The file will open in the C/C++ editor.</p>
<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>
<img src="../images/project_new_cppfile.png" alt="Editor view with a sample code"></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">

View file

@ -27,16 +27,13 @@ view.</p>
<p>To create a makefile:</p>
<ol>
<li>In the <b>C++ Projects</b> view, right-click a project, 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>
<img src="../images/project_new_file.png" alt="New &gt; File in Projects View"></li>
<li>In the <b>File name</b> box, type <b>makefile</b>.</li>
<li>In the list of projects, verify that the correct project is selected.</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>
<img src="../images/project_new_file_name.png" alt="New File Wizard"></li>
<li>The C/C++ editor opens. Type makefile instructions in the C/C++ editor.<br>
<img src="../images/project_new_makefile.png" width="303" height="160" onClick="changeSize(this,303,160);"
alt="Screen Capture of the Editor view with a sample makefile" title="click to toggle image size"></li>
<img src="../images/project_new_makefile.png" alt="Editor view with a sample code"></li>
<li>Click <b>File &gt;
Save</b>.</li></ol>
<p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21">

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Creating a run or debug configuration</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -29,8 +21,7 @@ function changeSize(theImage,wd,ht) {
<li>In the <b>Configurations</b> box, expand <b>C/C++ Local</b>.</li>
<li>Click <b>New</b>. The name of the new project is displayed in the
Configurations box. The default name is the name of the project.<br>
<img src="../images/run_config.png" width="326" height="272" onClick="changeSize(this,326,272);"
alt="screen capture showing Run Configuration dialog box" title="click to toggle image size"> </li>
<img src="../images/run_config.png" alt="Run Configuration window"> </li>
<li>To change the default name of the new run/debug configuration, see
<a href="cdt_t_run_main.htm">Selecting an application to run or debug</a>.</li>
</ol>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Creating a project</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -26,14 +18,12 @@ function changeSize(theImage,wd,ht) {
<ol>
<li>Click <b>File &gt; New &gt; Project</b>.<br>
<img src="../images/file_new_project.png" width="187" height="112" onClick="changeSize(this,187,112);"
alt="Screen Capture for creating a new project" title="click to toggle image size">
<img src="../images/file_menu.png" alt="File &gt;New &gt; Project">
</li>
<li>In the New Project wizard, click <b>C</b> or <b>C++</b>.</li>
<li>Click <b>Standard Make C++ Project </b>&nbsp;or <b>Managed Make C++ Project</b>.</li>
<li>Click <b>Next</b>.<br>
<img src="../images/new_project_wizard.png" width="260" height="220" onClick="changeSize(this,260,220);"
alt="Screen Capture for selecting new project type" title="click to toggle image size"></li>
<img src="../images/new_project_wizard.png" alt="New Project Wizard"></li>
<li>In the <b>Name</b> box, type a name.</li>
<li>To specify a different directory in which to save your project, clear the <b>
Use Default Location</b> check box, and enter the path in the <b>Location</b>
@ -42,8 +32,7 @@ function changeSize(theImage,wd,ht) {
platform. For more information, see <a href="cdt_t_proj_platf.htm">Selecting a
deployment platform</a>.</li>
<li>To create your project, click <b>Finish</b>.<br>
<img src="../images/new_project_wizard_managed.png" width="264" height="220" onClick="changeSize(this,264,220);"
alt="Screen Capture for entering the name of the new project" title="click to toggle image size"></li>
<img src="../images/new_proj_wz_man_name.png" alt="Managed New Project Wizard"></li>
</li>
<li>If a message box prompts
you to switch perspectives, click <b>Yes</b>.<li>Define your project

View file

@ -6,14 +6,6 @@
<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 language="JavaScript">
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>
@ -32,12 +24,10 @@ The least used projects are built first.</p>
<ol>
<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>
<img src="../images/project_properties.png" alt="Project Properties menu"></li>
<li>On the left, select <b>Project References</b> from the list.</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>
<img src="../images/project_references.png" alt="Project References dialog box"></li>
<li>Click <b>OK</b>.</li>
</ol>

View file

@ -6,28 +6,19 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Renaming a project</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>Renaming a project</h1>
<p>You can rename a project.</p>
<p>You can rename a project, and have all instances changed using the refactoring engine.</p>
<p>To rename a project:</p>
<ol>
<li>In the C/C++ Projects view, right-click a project, and select <b> Rename</b>.<br>
<img src="../images/project_rename.png" width="200" height="240" onClick="changeSize(this,200,240);"
alt="Screen Capture of a task menu highlighting Rename in Projects View" title="click to toggle image size"></li>
<img src="../images/project_rename.png" alt="Project Properties menu highlighting Rename"></li>
<li>Type a new name.</li>
<li>Press <b>Enter</b>.</li>
</ol>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hiding files by type in the C/C++ Projects view</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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,11 +17,9 @@ view.</p>
<p>To hide files by type:</p>
<ol>
<li>In the C/C++ Projects view, click the <b>Menu</b> icon<img border="0" src="../images/ref-79.gif" width="16" height="16">.<br>
<img src="../images/projects_filters.png" width="278" height="109" onClick="changeSize(this,278,109);"
alt="Screen Capture of the selection of Filters from Projects View" title="click to toggle image size"></li>
<img src="../images/projects_filters.png" alt="Filters from Projects View"></li>
<li>Click <b>Filters</b>.<br>
<img src="../images/c_element_filters.png" width="191" height="248" onClick="changeSize(this,191,248);"
alt="Screen Capture of the C Element Filters dialog box" title="click to toggle image size"></li>
<img src="../images/c_element_filters.png" alt="C Element Filters Window"></li>
<li>Select the file types that you want to hide.</li>
<li>Click <b>OK</b>.</li>
<p>The C/C++ Projects view refreshes automatically.</ol>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Specifying execution arguments</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -31,8 +23,7 @@ for a run configuration.</p>
<li>In the <b>Configurations</b> box, expand <b>C/C++ Local</b>.</li>
<li>Select a run or debug configuration.</li>
<li>Click the <b>Arguments</b> tab.<br>
<img src="../images/run_arguments.png" width="331" height="241" onClick="changeSize(this,331,241);"
alt="Screen Capture of Run Arguments dialog box" title="click to toggle image size">
<img src="../images/run_arguments.png" alt="Run Arguments window">
</li>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Specifying the location of the run configuration</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -31,14 +23,12 @@ perspective to open when running an application.</p>
<li>Click <b>Run &gt; Run</b> or <b>Run &gt; Debug</b>.</li>
<li>In the <b>Configurations</b> box, expand <b>C/C++ Local</b>.</li>
<li>Click the <b>Common</b> tab.<br>
<img src="../images/run_common.png" width="326" height="272" onClick="changeSize(this,326,272);"
alt="Screen Capture of Run Common dialog box" title="click to toggle image size">
<img src="../images/run_common.png" alt="Run Common window">
</li>
<li>To save <samp> .launch</samp> to a project in your workspace, and to be able
to commit it to CVS, click <b>Shared</b>.</li>
<li>In the <b>Folder Selection</b> window, select a project, and click <b>OK</b>.<br>
<img src="../images/run_common_folder.png" width="325" height="272" onClick="changeSize(this,325,272);"
alt="Screen Capture of Run Common Folder Selection dialog box" title="click to toggle image size">
<img src="../images/run_common_folder.png" alt="Run Common Folder Selection window">
</li>
<li>To specify which perspective opens when you run, select a perspective
from the <b>Run mode</b> list.</li>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Selecting a run or debug configuration</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -29,8 +21,7 @@ function changeSize(theImage,wd,ht) {
<li>Click <b>Run &gt; Run</b> or <b>Run &gt; Debug</b>.</li>
<li>In the <b>Configurations</b> box, expand <b>C/C++ Local</b>.</li>
<li>Select a run or debug configuration.<br>
<img src="../images/run_config.png" width="326" height="272" onClick="changeSize(this,326,272);"
alt="Screen Capture of Run Config dialog box" title="click to toggle image size"></li>
<img src="../images/run_config.png" alt="Run Configuration Window"></li>
<li>Select a configuration from the Configurations list.</li>
<li>Click <b>Run</b> or <b>Debug</b>.</li>
</ol>

View file

@ -30,8 +30,7 @@ function changeSize(theImage,wd,ht) {
<li>In the <b>Configurations</b> box, expand <b>C/C++ Local</b>.</li>
<li>Select a run or debug configuration.</li>
<li>Click the <b>Debugger</b> tab..<br>
<img src="../images/run_debugger.png" width="366" height="272" onClick="changeSize(this,366,272);"
alt="Screen Capture of Run Debugger dialog box" title="click to toggle image size">
<img src="../images/run_debugger.png" alt="Run Debugger window">
</li>
<li>Select a debugger from the <b>Debugger</b> list.</li>
<li>To be prompted to select a process from a list at run-time, select <b>Attach to running process</b>.</li>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Setting environment variables</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -31,8 +23,7 @@ runs.</p>
<li>In the <b>Configurations</b> box, expand <b>C/C++ Local</b>.</li>
<li>Select a run or debug configuration.</li>
<li>Click the <b>Environment</b> tab..<br>
<img src="../images/run_environment.png" width="326" height="272" onClick="changeSize(this,326,272);"
alt="Screen Capture of Run Common dialog box" title="click to toggle image size">
<img src="../images/run_environment.png" alt="Run Environment Window">
</li>
<li>Do one of the following:
<ul>

View file

@ -6,14 +6,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Selecting an application to run or debug</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -31,8 +24,7 @@ this run configuration.</p>
<li>In the <b>Configurations</b> box, expand <b>C/C++ Local</b>.</li>
<li>Select a run or debug configuration.</li>
<li>Click the <b>Main</b> tab.<br>
<img src="../images/run_config.png" width="326" height="272" onClick="changeSize(this,326,272);"
alt="Screen Capture of Run Config dialog box" title="click to toggle image size">
<img src="../images/run_config.png" alt="Run Configuration Window">
</li>
<li>Do the following:
<ul><li>In the <b>Name</b> box, type a descriptive name for this new a

View file

@ -6,14 +6,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Specifying the location of source files</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -33,9 +26,7 @@ project.</p>
<li>Select a run or debug configuration.</li>
<li>Click the <b>Source</b> tab.<p>The Generic Source Locations list shows
the location of the project selected in the C/C++ Projects view and any
referenced projects.<br>
<img src="../images/run_source.png" width="326" height="296" onClick="changeSize(this,326,296);"
alt="Screen Capture of Run Source dialog box" title="click to toggle image size"></li>
referenced projects.</li>
<li>To add an existing source locations:
<ul>
<li>Click <b>Add</b> to be prompted to select a process from a list at run-time.</li>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Searching for C/C++ elements</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -51,7 +43,7 @@ include paths and symbols are correctly defined. For more information, see
selected element name.</p></ul>
<li>Click <b>Search &gt; C/C++</b>.</li>
<li>In the <b>Search string</b> box, type a search string.<br>
<img src="../images/search.png" width="256" height="192" onClick="changeSize(this,256,197);" alt="Screen capture of Search dialog box" title="click to toggle image size"></li>
<img src="../images/search.png" alt="Search dialog box"></li>
<li>To make your search case sensitive, select the <b>Case sensitive</b> box.</li>
<li>Select an element in the <b>Search For</b> box.</li>
<li>Select a search limiter in the <b>Limit To</b> box.</li>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Setting build order</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>
@ -35,7 +27,7 @@ propagated.</p>
<ol>
<li>Click <b>Window &gt; Preferences</b>.</li>
<li>Select <b>Build Order</b> from the list.<br>
<img src="../images/build_order.png" width="318" height="270" onClick="changeSize(this,318,270);" alt="Screen capture of Build Order dialog box." title="click to toggle image size">
<img src="../images/build_order.png" alt="Build Order Preference Window.">
</li>
<li>Clear the <b>Use default build order</b> checkbox. </li>
<li>Select a project in the list.</li>

View file

@ -6,14 +6,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Displaying C/C++ file components in the C/C++ Projects view</title>
<link rel="stylesheet" type="text/css" href="../help.css">
<script language="JavaScript">
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>

View file

@ -39,14 +39,15 @@
<topic label="C/C++ Find and Replace" href="reference/cdt_u_find_replace.htm"/>
<topic label="C/C++ Preferences" href="reference/cdt_u_c_pref.htm">
<topic label="Build Console" href="reference/cdt_u_build_pref.htm"/>
<topic label="Code Templates" href="reference/cdt_u_code_temp.htm"/>
<topic label="C/C++ Editor preferences" href="reference/cdt_o_ceditor_pref.htm">
<topic label="General" href="reference/cdt_u_c_editor_gen.htm"/>
<topic label="Colors" href="reference/cdt_u_c_editor_color.htm"/>
<topic label="Content Assist" href="reference/cdt_u_c_editor_con_assist.htm"/>
<topic label="Hovers" href="reference/cdt_u_c_editor_hov.htm"/>
<topic label="Navigation" href="reference/cdt_u_c_editor_navigation.htm"/>
</topic>
<topic label="File Types" href="reference/cdt_u_c_file_types.htm"/>
<topic label="Code Templates" href="reference/cdt_u_code_temp.htm"/>
<topic label="Make Targets" href="reference/cdt_u_make_targets_pref.htm"/>
<topic label="New Make Projects properties" href="reference/cdt_o_proj_prop_pages.htm">
<topic label="Make Builder" href="reference/cdt_u_newproj_buildset.htm"/>