diff options
author | Doug Schaefer | 2007-06-23 00:38:32 +0000 |
---|---|---|
committer | Doug Schaefer | 2007-06-23 00:38:32 +0000 |
commit | 7dbd86677cd698f7b1a0ed5b2ec12c3fc62cb7b4 (patch) | |
tree | 485035856c66b28b02e73715d8b3b811c58b8266 /doc | |
parent | b5ad1a939e3472db4aaaf28be9b5089744007fa3 (diff) | |
download | org.eclipse.cdt-7dbd86677cd698f7b1a0ed5b2ec12c3fc62cb7b4.tar.gz org.eclipse.cdt-7dbd86677cd698f7b1a0ed5b2ec12c3fc62cb7b4.tar.xz org.eclipse.cdt-7dbd86677cd698f7b1a0ed5b2ec12c3fc62cb7b4.zip |
Bug 193376 - Patch for Angelina - doc updates.
Diffstat (limited to 'doc')
40 files changed, 84 insertions, 251 deletions
diff --git a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_before_you_begin.htm b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_before_you_begin.htm index ae86442085a..7152daf9c57 100644 --- a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_before_you_begin.htm +++ b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_before_you_begin.htm @@ -57,7 +57,7 @@ MinGW File Release</a> section for the latest versions.</p> <li>Select download and install the MinGW base tools and the g++ compiler. You may select the Current or Candidate version of these tools. You may also install any of the other available compilers as well. - <p><b>Do not install the MinGW Make feature</b> as the MSYS version of make from step 3 + <p><b>Do not install the MinGW Make feature</b> as the MSYS version of make from step 5 is a more complete implementation of make.</p></li> <li>The MinGW setup program currently does not install the gdb debugger. To install the debugger, download the file from the following location: diff --git a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_basic.htm b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_basic.htm index 5e2ec1e052f..7914bc4981a 100644 --- a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_basic.htm +++ b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_basic.htm @@ -35,7 +35,7 @@ With CDT 4.0, you now select a project type, and that determines what build syst <a href="javascript:void(0)" onClick="newWin('../images/cdt_w_basic04.png')">Click here to see an illustration.</a><br></p> <p><br>By default, the CDT filters the <b>Toolchain</b> and <b>Project types</b> that it displays in those lists based on the language support for the C++ Project wizard you selected for this tutorial.</p> </li><br> - <li><p>In the <b>Project name</b> field, type a name for the project.</p> + <li><p>In the <b>Project name</b> field, type a name for the project, such as <b>Hello World</b>.</p> <br> <li><p>From the <b>Project types</b> list, expand <b>Executable</b> and select <b>Hello World C++ Project</b>. This project type provides a simple Hello World application in C++, and the makefile is automatically created by the CDT.</p> <br> @@ -67,63 +67,46 @@ With CDT 4.0, you now select a project type, and that determines what build syst <br> <p>A project is created with the default settings and a full set of configurations based on the project type and toolchain you selected. You should now see the new project in C/C++ Projects view.</p> + <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_w_basic12.png')">Click here to see an illustration.</a></p> + <br> </ol> -<h3>Step 2: Creating a new file for the project</h3> -<p>Now, you will create a new .cpp file (such as main.cpp) that will contain some code that you will copy from another file into an editor. </p> - -<ol> - <li>Right-click on your project in the Navigator. - <li>Select <b>New > Source File</b>. - <p>You should now see the new project in the C/C++ Projects view under the project, and the new file opens in the <b>Editor</b> view.</p> -</ol> - -<h3>Step 3: Enter and step through the code</h3> +<h3>Step 2: Reviewing the code and building the project</h3> <ol> - <li>Copy the code from the file <a href="javascript:void(0)" - onclick="newWin('hw_example.htm')" title="here">main.cpp</a> -file that was just created. -<p> -You can double click the <b>main.cpp</b> tab in the <b>Editor</b> -view to expand the view. <br> -<i>Note: Leave a blank line at the end of the code because it is required by some compilers.</i></p> -<p>On the tab in the <b>Editor</b> view, an asterisk character ("*") prefixes the file name. The asterisk indicates that the file has changed but has not been saved.</p> - <li>Notice that the <b>Outline</b> view has also been populated -with objects created from your code. </p> -<p>If you select an item from the <b>Outline</b> view, the -corresponding text in the editor is highlighted. -<li>Save the main.cpp file by clicking <span - style="font-weight: bold;">File > Save</span> or pressing <b>CTRL+S</b>. -<li>Build your project by pressing <b>CTRL+B</b>.</p> -<p>You can read through the build messages in the <b>Console</b> view. -The project should build successfully, showing the following message:</p> -<p><tt>Finished building target: HelloWorld.exe</tt></p> + <li>From the Project Explorer in the C++ Projects View, double-click the .cpp file that was created for your project, for example, <tt>Hello World.cpp</tt>. + <p>This file opens in a default editor. It contains C++ template code for the Hello World example project you selected earlier.</p> + <br> + <p><b>Note:</b> You can specify a different editor, and add or modify existing code templates in <b>Window > Preferences</b>.</p><p>In addition, the <b>Outline</b> view has also been populated +with objects created from your code.</p> <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_w_basic13.png')">Click here to see an illustration.</a></p> +</li> +<li>Optional: You can type additional code in this file, and then save the changes by clicking <span + style="font-weight: bold;">File > Save</span>, or pressing <b>CTRL+S</b>. + + <p><br>Next, you will need to build your project before you can run it.</p><br></li> +<li>Build your project by pressing <b>CTRL+B</b>, or select the project from the Project Explorer tab in the C++ Projects view and select <b>File > Build Project</b>.</p> +<p><br><b>Note:</b> If a build generates any errors or warnings, you can see those in the Problems view. If you encounter difficulty, see the topics <a href="../concepts/cdt_c_build_over.htm">Building C/C++ projects</a> and <a href="../concepts/cdt_c_before_you_begin.htm">Before you begin</a><br>.</p></li> +<li>Read through the build messages in the <b>Console</b> view. +The project should build successfully.</p> <br> <p>You will also see the <b>Outline</b> view has also been populated -with objects created from your code. </p> -<p>If you select an item from the <b>Outline</b> view, the -corresponding text in the editor is highlighted.</p></li> +with objects created from your code. If you select an item from the <b>Outline</b> view, the +corresponding text in the editor is highlighted.</p><br> </ol> -<h3>Step 4: Running the application</h3> +<h3>Step 3: Running the application</h3> + +<p>To run your application:</p> <ol> - <li>To run your application within the C/C++ Perspective, click <b>Run > Run...</b> - <li>Select <b>C/C++ Local Application</b>. - <li>Click <b>'New'</b>. -<li>Click <b>'New'</b>.</p> + <li>Within the C/C++ Perspective, click <b>Run > Run</b>.<p><br></p></li> + <li>Select <b>C/C++ Local Application</b>.<p><br></p></li> + <li>Click <b>New</b>.<p><br></p></li> -<p>A new Run Configuration is created. Its name and path to executable are provided by the project ('HelloWorld' in our case). + <p>A new Run Configuration is created. Its name and path to the executable are provided by the project ('Hello World' in our case). -<li>Click <b>'Run'</b>. -</ol> + <li>Click <b>Run</b>.<p><br></p> -<h3>Step 5: Reviewing and interpreting the results in the Console view</h3> -<p>Now, you should now see the Hello World application running in the <b>Console</b> view. -The <b>Console</b> also shows which application is running in a title bar. -You can configure this view to display different elements (such as user input elements) using different colors.</p> -<ol> - <li>Type in your name and press Enter. - <p>The title bar in the <b>Console</b> view shows you when the program has terminated.</p> +<p>Now, you should see the Hello World application running in the <b>Console</b> view. +The <b>Console</b> also shows which application is running in a title bar.</p><br></li> <li>You can click the other views to see the information that they contain. </ol> diff --git a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_build.htm b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_build.htm index dd3693f9328..4c0f358a8df 100644 --- a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_build.htm +++ b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_build.htm @@ -9,14 +9,16 @@ <body> <h1>Building a project</h1> <p>The make output and build progress information displays in the -Console view. The Make Targets view displays makefile actions. The +Console view. The Make Targets view displays makefile actions, and the Tasks view displays compile warnings or errors.</p> <p>To build a project:</p> <ol> - <li>In the <b>C/C++ Projects</b> view, select your project. For the tutorial, you want to select the <b>HelloWorld</b> project.</li> + <li>In the <b>C/C++ Projects</b> view, select your project. For the tutorial, you can to select the <b>Hello World</b> project you created earlier. <p><br></p></li> <li>Click <b>Project > Build Project</b>.</li> <p>If you see the error message:</p> + <br> <p><samp>Exec error:Launching failed</samp></p> + <br> <p>then CDT cannot locate the build command, usually <samp>make</samp>. Either your path is not configured correctly, or you do not have <samp>make</samp> installed on your system.</p> diff --git a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_existing_code.htm b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_existing_code.htm index 31ed4a873f9..da6b8908c5b 100644 --- a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_existing_code.htm +++ b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_existing_code.htm @@ -106,7 +106,7 @@ To check out existing C/C++ code that is not part of a project: <li>Click <b>Finish</b> to exit the <b>Check Out As</b> dialog. </p> - <li>Click <ui>Next</ui> to continue. + <li>Click <b>Next</b> to continue. </ol> <h3>Importing C/C++ code into an existing project</h3> @@ -118,25 +118,22 @@ To import a directory full of C/C++ code into an existing project: <ol> <li> Right-click the module or directory in the CVS - Repositories view and choose <ui>Check Out As…</ui> + Repositories view and choose <b>Check Out As</b> from the menu. <p> The IDE displays the Check Out As dialog. </p> -<li>Choose <ui>Check out into an existing project</ui>, and then click - <ui>Next</ui>. +<li>Choose <b>Check out into an existing project</b>, and then click + <b>Next</b>. The IDE displays the Check Out Into dialog: - <p> - <img src="images/cvs-checkout-into.gif" alt="Check Out Into"> - </p> </li> <li> Select an existing project from the list, and then - click <ui>Finish</ui> to add the code from CVS to the selected + click <b>Finish</b> to add the code from CVS to the selected project. </li> </ol> @@ -149,7 +146,7 @@ If your resource code is not managed in CVS but is available from the file syste <li>Identify a "root folder" of your source code tree.</li> <li>Create a new C/C++ project using the New Project Wizard, and specify the "root folder" as a non-default location of the new project.</li> </ol> -<p>Typically existing projects will have their own makefiles, so you should create a new Standard Make C/C++ project. For more information see +<p>Typically, existing projects will have their own makefiles, so you should create a new Make C/C++ project. For more information see <a href="../tasks/cdt_t_proj_new.htm">Creating a project</a> and <a href="../tasks/cdt_o_proj_files.htm">Working with C/C++ project files</a>.</p> diff --git a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_import.htm b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_import.htm index 83b082b762d..11d7b362a12 100644 --- a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_import.htm +++ b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_import.htm @@ -8,26 +8,26 @@ <script language="JavaScript"> function newWin(url) { - window.open(url, 'install_cdt', 'width=750, height=700, menubar=no, toolbar=no, status=no, resizable=yes, location=no, scrollbars=yes'); + window.open(url, 'install_cdt', 'width=950, height=700, menubar=no, toolbar=no, status=no, resizable=yes, location=no, scrollbars=yes'); } </script> </head> <body> -<h2>Turorial: Importing an existing project</h2> +<h2>Tutorial: Importing an existing project</h2> -<p>The following tutorial will walk you though the process of importing a simple application using the CDT.</p> +<p>The following tutorial takes you though the process of importing a simple application using the CDT.</p> <p>Step 1: You want to create a single project that will reflect all of the components for the existing source tree.<br></p> <ol> <li>Select <b>File > New > Project</b>. <li>For this tutorial, expand <b>C++</b> and select <b>C++ project</b>. - <p><br>The <b>New Project</b> wizard dispalys. <a href="javascript:void(0)" onClick="newWin('../images/cdt_w_import02.png')">Click here to see an illustration (displayed in a separate window)</a>.</p> <br> + <p><br>The <b>New Project</b> wizard displays. <a href="javascript:void(0)" onClick="newWin('../images/cdt_w_import02.png')">Click here to see an illustration (displayed in a separate window)</a>.</p> <br> <li>In the <b>Project name</b> field, type a name for the project. <li>Ensure that the <b>Use default location</b> option is not selected because you will need to specify where the resources reside in the file system since they do not reside in your workspace. - <li>In the <b>Location</b> field, specify the path for your project. For this tutorial, the project to import is assumed to reside in the directory C:\MySrcDirectory. + <li>In the <b>Location</b> field, specify a path for your project. <li>From the <b>Project types</b> list, expand <b>Makefile Project</b> and select <b>Hello World C++ Project</b>. <li>Click <b>Next</b>. <li>Select only the configurations you want created. Configurations display for each toolchain selected on the previous page of the wizard. diff --git a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_install_cdt.htm b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_install_cdt.htm index 72b922e3a8a..81dc2a2b929 100644 --- a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_install_cdt.htm +++ b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_install_cdt.htm @@ -29,52 +29,46 @@ function newWin(url) { <p>To obtain the latest CDT features:</p> <ol> - <li>Select <b>Help > Software Updates > Find and Install</b>.<p><br></p> + <li>Select <b>Help > Software Updates > Find and Install</b>. <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_find-install.png')">Click here to see an illustration (displayed in a separate window)</a>.</p> <br></li> - <li>In the <b>Feature Updates</b> window, select <b>Search for new features to install</b> and click <b>Next</b>. <p>Note: If you want to search for updates on features that you currently have installed, you can select the option <b>Search for updates of the currently installed features</b>.</p><br><p><br></p><p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_install_new.png')">Click here to see an illustration</a>.</p> + <li>In the <b>Feature Updates</b> window, select <b>Search for new features to install</b> and click <b>Next</b>.<br><p>Note: If you want to search for updates on features that you currently have installed, you can select the option <b>Search for updates of the currently installed features</b>, and then follow the steps to update using that method.</p><p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_install_new.png')">Click here to see an illustration</a>.</p> <br></li> - <li>If you have not updated previously, you will have to enter the location of the Eclipse CDT Install site. Click <b>New Remote Site...</b>.<p><br></p> + <li>If you have not updated previously, you will have to enter the location of the Eclipse CDT Install site. Click <b>New Remote Site...</b>. <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_install_sites.png')">Click here to see an illustration</a>.</p> <br></li> - <li>In the New Update Site dialog box, type the name and URL for the Eclipe update site in the spaces provided.<p><br></p> + <li>In the New Update Site dialog box, type the name and URL for the Eclipse update site. <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_install_new_sites.png')">Click here to see an illustration</a>.</p><br></li> - <li>Click <b>OK</b>. - <li>From the <b>Sites to include in search</b> list, select the update site you just created by clicking the appropriate check box, and click <b>Finish</b>.<p><br></p> + <li>Click <b>OK</b>.<p><br></p></li> + <li>From the <b>Sites to include in search</b> list, select the update site you just created by clicking the appropriate check box, and click <b>Finish</b>. <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_install_cdt_site.png')">Click here to see an illustration</a>.</p> <br></li> - <li>The Search Results dialog shows the features available to install from the update site. Select each of the following features, - ensuring that you have precisely the same version for each one: - <ul> - <li>Eclipse C/C+ Development Tooling SDK</li> - <li>Eclipse C/C+ Development Tools</li> - </ul> -<li>Expand and select any additional features that you require. De-select any options that do not apply to you. -<li>Click <b>Next</b>.<p><br></p> + <li>The Search Results dialog shows the features available to install from the update site. Expand and select any additional features that you require. De-select any options that do not apply to you.<p><br></p></li> +<li>Click <b>Next</b>. <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_search_results.png')">Click here to see an illustration</a>.</p><br> </li> - <li>You must accept the Eclipse.org Software User Agreement to continue installing the CDT update. If you accept the terms, select <b>I accept the terms in the license agreement</b> and then click <b>Next</b>.<p><br></p> + <li>You must accept the Eclipse.org Software User Agreement to continue installing the CDT update. If you accept the terms, select <b>I accept the terms in the license agreement</b> and then click <b>Next</b>. <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_license_agreement.png')">Click here to see an illustration</a>.</p> <br></li> - <p>You can review the summary list of the features you selected to install.<p> - <li>Optional: Click <b>Change Location</b> to select the location you would like the updates installed. Typically, this is the directory where you installed Eclipse. -<li>Click <b>Finish</b>.<p><br></p><p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_location.png')">Click here to see an illustration</a>.</p> + <p>You can review the summary list of the features you selected to install.<br></p><br></li> + <li>Optional: Click <b>Change Location</b> to select the location you would like the updates installed. Typically, this is the directory where you installed Eclipse.<p><br></p></li> +<li>Click <b>Finish</b>.<p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_location.png')">Click here to see an illustration</a>.</p> <br></li> <li>You will now start downloading the CDT components. You will have to verify that you want the features installed by clicking - <b>Install</b> for each feature you selected.<p><br></p> + <b>Install</b> for each feature you selected. <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_update_jar_verification.png')">Click here to see an illustration</a>.</p> - <br></li> + <br><p>Now, you have to restart Eclipse. </p><br></li> + - <p>Now, you have to restart Eclipse. - <li>Select <b>Yes</b> to complete the feature installation process.<p><br></p> + <li>Select <b>Yes</b> to complete the feature installation process. <p><a href="javascript:void(0)" onClick="newWin('../images/cdt_restart.png')">Click here to see an illustration</a>.</p> </ol> diff --git a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_standard.htm b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_standard.htm deleted file mode 100644 index 378a6473e96..00000000000 --- a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_standard.htm +++ /dev/null @@ -1,146 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> -<html lang="en"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> - <title>New CDT Project with your own makefile - Tutorial</title> - <link rel="stylesheet" type="text/css" href="../help.css"> - -<script language="JavaScript"> -var first = 0; -var last = 16; -var position = 0; - -var cdt_w_standardText= new Array(17) -cdt_w_standardText[0]='cdt_w_standard01.htm'; -cdt_w_standardText[1]='cdt_w_standard02.htm'; -cdt_w_standardText[2]='cdt_w_standard03.htm'; -cdt_w_standardText[3]='cdt_w_standard04.htm'; -cdt_w_standardText[4]='cdt_w_standard05.htm'; -cdt_w_standardText[5]='cdt_w_standard06.htm'; -cdt_w_standardText[6]='cdt_w_standard07.htm'; -cdt_w_standardText[7]='cdt_w_standard08.htm'; -cdt_w_standardText[8]='cdt_w_standard09.htm'; -cdt_w_standardText[9]='cdt_w_standard10.htm'; -cdt_w_standardText[10]='cdt_w_standard11.htm'; -cdt_w_standardText[11]='cdt_w_standard12.htm'; -cdt_w_standardText[12]='cdt_w_standard13.htm'; -cdt_w_standardText[13]='cdt_w_standard14.htm'; -cdt_w_standardText[14]='cdt_w_standard15.htm'; -cdt_w_standardText[15]='cdt_w_standard16.htm'; -cdt_w_standardText[16]='cdt_w_standard17.htm'; - -var cdt_w_standardPic= new Array(17) -cdt_w_standardPic[0]='../images/cdt_w_standard01.png'; -cdt_w_standardPic[1]='../images/cdt_w_standard02.png'; -cdt_w_standardPic[2]='../images/cdt_w_standard03.png'; -cdt_w_standardPic[3]='../images/cdt_w_standard04.png'; -cdt_w_standardPic[4]='../images/cdt_w_standard05.png'; -cdt_w_standardPic[5]='../images/cdt_w_standard06.png'; -cdt_w_standardPic[6]='../images/cdt_w_standard07.png'; -cdt_w_standardPic[7]='../images/cdt_w_standard08.png'; -cdt_w_standardPic[8]='../images/cdt_w_standard09.png'; -cdt_w_standardPic[9]='../images/cdt_w_standard10.png'; -cdt_w_standardPic[10]='../images/cdt_w_standard11.png'; -cdt_w_standardPic[11]='../images/cdt_w_standard12.png'; -cdt_w_standardPic[12]='../images/cdt_w_standard13.png'; -cdt_w_standardPic[13]='../images/cdt_w_standard14.png'; -cdt_w_standardPic[14]='../images/cdt_w_standard15.png'; -cdt_w_standardPic[15]='../images/cdt_w_standard16.png'; -cdt_w_standardPic[16]='../images/cdt_w_standard17.png'; - -var screenText= new Array(17) -screenText[0]='Eclipse Workbench'; -screenText[1]='Opening the C/C++ Perspective'; -screenText[2]='The C++ Perspective'; -screenText[3]='Creating a New Project'; -screenText[4]='New Project Wizard'; -screenText[5]='New Managed Make C++ Project'; -screenText[6]='Select a Target'; -screenText[7]='Error Parser Configuration'; -screenText[8]='New C++ Project in the Workbench'; -screenText[9]='Create a New File'; -screenText[10]='New File Wizard'; -screenText[11]='New File in the Workbench'; -screenText[12]='Entering Code in the New .cpp File'; -screenText[13]='Stepping Through the Code in Outline View'; -screenText[14]='Save the File'; -screenText[15]='Displaying New Executables in the Projects View'; -screenText[16]='Selecting Run from the Menu'; - - - -function nav_a() { - document.home.src='../images/icon_home.png'; - document.home.title='Start Over'; - - document.back.src='../images/icon_back.png'; - document.back.title='Back'; - - document.next.src='../images/icon_forward.png'; - document.next.title='Next'; - }; - -function nav_b() { - document.home.src='../images/trans.gif'; - document.home.title=''; - - document.back.src='../images/trans.gif'; - document.back.title=''; - - document.next.src='../images/icon_forward.png'; - document.next.title='Next'; - }; - -function nav_e() { - document.home.src='../images/icon_home.png'; - document.home.title='Start Over'; - - document.back.src='../images/icon_back.png'; - document.back.title='Back'; - - document.next.src='../images/trans.gif'; - document.next.title=''; - }; - -function show() { - textFrame.location.href = cdt_w_standardText[position]; - document.screen.src = cdt_w_standardPic[position]; - document.screen.alt = screenText[position]; -} - -function reset() { - position = first; - show(); - nav_b(); -} - -function goNext() { - if ( position == first ) { nav_a(); }; - if ( position < last ) { position++; show(); } - if ( position == last ) { nav_e(); } -} - -function goBack() { - if ( position == last ) { nav_a(); }; - if ( position > first ) { position--; show()}; - if ( position == first ) { nav_b(); }; -} - -</script> - -</head> -<body> -<h2>New CDT Project with your own makefile - Tutorial</h2> -<IFRAME name=textFrame SRC="cdt_w_standard01.htm" TITLE="cdt_w_standard Text" MARGINWIDTH=0 MARGINHEIGHT=0 width=800 height=200 frameborder=0 SCROLLING=auto></IFRAME> -<hr> -<table width="120px" border="0" cellspacing="0" summary=""> - <tr> - <td align="center"><img src="../images/trans.gif" width="22" height="22" onClick="reset();" title="" name="home"></td> - <td align="center"><img src="../images/trans.gif" align="left" width="22" height="22" onClick="goBack();" title="" name="back"></td> - <td align="center"><img src="../images/icon_forward.png" align="right" width="22" height="22" onClick="goNext();" title="Next" name="next" ></td> - </tr> -</table> -<p><img src="../images/cdt_w_standard01.png" align="center" alt="Eclipse Logo" name="screen" ></p> -<img src="../images/ng00_04a.gif" ALT="IBM Copyright Statement" > -</body> -</html>
\ No newline at end of file diff --git a/doc/org.eclipse.cdt.doc.user/images/c_paths.png b/doc/org.eclipse.cdt.doc.user/images/c_paths.png Binary files differindex 9af4487874a..3c1d51c7ade 100644 --- a/doc/org.eclipse.cdt.doc.user/images/c_paths.png +++ b/doc/org.eclipse.cdt.doc.user/images/c_paths.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_new_brk_action.png b/doc/org.eclipse.cdt.doc.user/images/cdt_new_brk_action.png Binary files differindex 9ff87eb97c0..7d186805056 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_new_brk_action.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_new_brk_action.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_pref_brk_action.png b/doc/org.eclipse.cdt.doc.user/images/cdt_pref_brk_action.png Binary files differindex 91ab8376839..c05e5880691 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_pref_brk_action.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_pref_brk_action.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_update_find-install.png b/doc/org.eclipse.cdt.doc.user/images/cdt_update_find-install.png Binary files differindex f27c439106c..de40ebfc00e 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_update_find-install.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_update_find-install.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_cdt_site.png b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_cdt_site.png Binary files differindex 7555d6b5755..634bfe3cbb3 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_cdt_site.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_cdt_site.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new.png b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new.png Binary files differindex 98b5e859960..176c7b670b2 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new_sites.png b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new_sites.png Binary files differindex 142f34f662e..3533e413c4d 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new_sites.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new_sites.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_sites.png b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_sites.png Binary files differindex c320d8c4b45..c0454b625d3 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_sites.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_sites.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_update_license_agreement.png b/doc/org.eclipse.cdt.doc.user/images/cdt_update_license_agreement.png Binary files differindex b1c3bd56301..428f6b237bd 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_update_license_agreement.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_update_license_agreement.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic12.png b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic12.png Binary files differindex 73176739687..0dd8d6945ed 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic12.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic12.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic13.png b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic13.png Binary files differindex 43ffed3a6c0..6ebc3a71846 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic13.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic13.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic14.png b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic14.png Binary files differindex 414edbaa3a1..a8bac4229d5 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic14.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic14.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic15.png b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic15.png Binary files differindex 23d84c6de5e..7c90dc7d50f 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic15.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic15.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic19.png b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic19.png Binary files differindex 36f1c727041..d64163c9d6d 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic19.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic19.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic20.png b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic20.png Binary files differindex c6ffad1435f..cf3e06dc956 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic20.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic20.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_w_import02.png b/doc/org.eclipse.cdt.doc.user/images/cdt_w_import02.png Binary files differindex 34bd76baae2..c99fe37673c 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_w_import02.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_w_import02.png diff --git a/doc/org.eclipse.cdt.doc.user/images/cdt_w_import03.png b/doc/org.eclipse.cdt.doc.user/images/cdt_w_import03.png Binary files differindex d361bf94259..89ea3940c1e 100644 --- a/doc/org.eclipse.cdt.doc.user/images/cdt_w_import03.png +++ b/doc/org.eclipse.cdt.doc.user/images/cdt_w_import03.png diff --git a/doc/org.eclipse.cdt.doc.user/images/code_templates_new.png b/doc/org.eclipse.cdt.doc.user/images/code_templates_new.png Binary files differindex 57e75586b43..622b125f0f8 100644 --- a/doc/org.eclipse.cdt.doc.user/images/code_templates_new.png +++ b/doc/org.eclipse.cdt.doc.user/images/code_templates_new.png diff --git a/doc/org.eclipse.cdt.doc.user/images/codetemplates_example.png b/doc/org.eclipse.cdt.doc.user/images/codetemplates_example.png Binary files differindex ff1646eada4..8cb7ff0d044 100644 --- a/doc/org.eclipse.cdt.doc.user/images/codetemplates_example.png +++ b/doc/org.eclipse.cdt.doc.user/images/codetemplates_example.png diff --git a/doc/org.eclipse.cdt.doc.user/images/contentAssist_preferences.png b/doc/org.eclipse.cdt.doc.user/images/contentAssist_preferences.png Binary files differindex bed8a92890d..7d93c11ae83 100644 --- a/doc/org.eclipse.cdt.doc.user/images/contentAssist_preferences.png +++ b/doc/org.eclipse.cdt.doc.user/images/contentAssist_preferences.png diff --git a/doc/org.eclipse.cdt.doc.user/images/customize_perspective.png b/doc/org.eclipse.cdt.doc.user/images/customize_perspective.png Binary files differindex e505eb0d871..81eecc037ba 100644 --- a/doc/org.eclipse.cdt.doc.user/images/customize_perspective.png +++ b/doc/org.eclipse.cdt.doc.user/images/customize_perspective.png diff --git a/doc/org.eclipse.cdt.doc.user/images/editor_color_preferences.png b/doc/org.eclipse.cdt.doc.user/images/editor_color_preferences.png Binary files differindex ed2e05364c8..8e0dee77ef5 100644 --- a/doc/org.eclipse.cdt.doc.user/images/editor_color_preferences.png +++ b/doc/org.eclipse.cdt.doc.user/images/editor_color_preferences.png diff --git a/doc/org.eclipse.cdt.doc.user/images/editor_general_preferences.png b/doc/org.eclipse.cdt.doc.user/images/editor_general_preferences.png Binary files differindex 4a2002d8573..411f3be3460 100644 --- a/doc/org.eclipse.cdt.doc.user/images/editor_general_preferences.png +++ b/doc/org.eclipse.cdt.doc.user/images/editor_general_preferences.png diff --git a/doc/org.eclipse.cdt.doc.user/images/file_new_conv.png b/doc/org.eclipse.cdt.doc.user/images/file_new_conv.png Binary files differindex 0b7545de3d6..8747012ffc4 100644 --- a/doc/org.eclipse.cdt.doc.user/images/file_new_conv.png +++ b/doc/org.eclipse.cdt.doc.user/images/file_new_conv.png diff --git a/doc/org.eclipse.cdt.doc.user/images/new_proj_wz_config.png b/doc/org.eclipse.cdt.doc.user/images/new_proj_wz_config.png Binary files differindex 9544c83ca3b..ad81aea0d7f 100644 --- a/doc/org.eclipse.cdt.doc.user/images/new_proj_wz_config.png +++ b/doc/org.eclipse.cdt.doc.user/images/new_proj_wz_config.png diff --git a/doc/org.eclipse.cdt.doc.user/images/new_project_wizard.png b/doc/org.eclipse.cdt.doc.user/images/new_project_wizard.png Binary files differindex 0309c97db67..68ba7e97b51 100644 --- a/doc/org.eclipse.cdt.doc.user/images/new_project_wizard.png +++ b/doc/org.eclipse.cdt.doc.user/images/new_project_wizard.png diff --git a/doc/org.eclipse.cdt.doc.user/images/project_rename.png b/doc/org.eclipse.cdt.doc.user/images/project_rename.png Binary files differindex 402ab625aa8..e998ae1feef 100644 --- a/doc/org.eclipse.cdt.doc.user/images/project_rename.png +++ b/doc/org.eclipse.cdt.doc.user/images/project_rename.png diff --git a/doc/org.eclipse.cdt.doc.user/images/window_customize_perspective.png b/doc/org.eclipse.cdt.doc.user/images/window_customize_perspective.png Binary files differindex a34d6904a84..8f84327859c 100644 --- a/doc/org.eclipse.cdt.doc.user/images/window_customize_perspective.png +++ b/doc/org.eclipse.cdt.doc.user/images/window_customize_perspective.png diff --git a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_appearance_pref.htm b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_appearance_pref.htm index 30c91b2152d..4af86243fe2 100644 --- a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_appearance_pref.htm +++ b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_appearance_pref.htm @@ -12,7 +12,7 @@ <h1>Appearance preferences</h1> -<p>Customize the appearance of C elements in viewers using the <b>Appearance</b> preference panel.</p> +<p>Use the <b>Appearance</b> panel of the Preferences window to customize the appearance of C elements in the viewers.</p> <p><img src="../images/view_appearance_prefs.png" width="627" height="524"></p> <table width="700px" cellpadding="5" cellspacing="0" border="1" > @@ -26,19 +26,19 @@ <tbody> <tr> <td width="241" valign="top"><b>Show translation unit numbers </b></td> - <td width="433" valign="top">Activate this checkbox to show translation unit numbers. </td> + <td width="433" valign="top">Select this option to show translation unit numbers. </td> </tr> <tr> <td valign="top"><b>Group the includes in the C/C++ projects view </b></td> - <td valign="top">Activate this checkbox to group include files in the C/C++ project view. </td> + <td valign="top">Select this option to group include files in the C/C++ project view. </td> </tr> <tr> <td valign="top"><b>Group the includes in the outliner </b></td> - <td valign="top">Activate this checkbox to group include files in outline views. </td> + <td valign="top">Select this option to group include files in outline views. </td> </tr> <tr> <td valign="top"><b>Group the namespaces in the outliner </b></td> - <td valign="top">Activate this checkbox to group files by namespaces in outline views. </td> + <td valign="top">Select this option to group files by namespaces in outline views. </td> </tr> </tbody> </table> diff --git a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_build_pref.htm b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_build_pref.htm index c8032263085..0925bfbc5b5 100644 --- a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_build_pref.htm +++ b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_build_pref.htm @@ -24,35 +24,35 @@ <tbody> <tr> <td><dt>Always clear console before building</dt></td> - <td>Select this checkbox to clear the console whenever you perform a build.</td> + <td>Select this option to clear the contents of the Console view every time you perform a build.</td> </tr> <tr> <td><dt>Open console when building</dt></td> - <td>Select this checkbox to open the console build when you perform a build.</td> + <td>Select this option to open the Console view when you perform a build.</td> </tr> <tr> <td><dt>Bring console to top when building (if present)</dt></td> - <td>Select this checkbox to bring the build console to the front when you perform a build.</td> + <td>Select this option to make the Console view the active window when you perform a build.</td> </tr> <tr> <td><dt>Limit console output (#lines)</dt></td> - <td>You specify the maximum number of lines that appear in the build console view.</td> + <td>Specify the maximum number of lines that can display in the Console view.</td> </tr> <tr> <td><dt>Display tab width</dt></td> - <td>You can specify the number of spaces for a tab.</td> + <td>Specify the number of spaces for a tab.</td> </tr> <tr> <td><dt>Output text color</dt></td> - <td>You can customize the color of text in the build console.</td> + <td>Customize the color of text in the Console view.</td> </tr> <tr> <td><dt>Information message text color</dt></td> - <td>You can customize the color of information text messages in the build console.</td> + <td>Customize the color of information text messages in the Console view.</td> </tr> <tr> <td><dt>Error message text color</dt></td> - <td>You can customize the color of error text messages in the build console.</td> + <td>Customize the color of error messages in the Console view.</td> </tr> </tbody> </table> diff --git a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_config.htm b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_config.htm index 74512355ab7..db1aeea2cde 100644 --- a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_config.htm +++ b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_config.htm @@ -8,7 +8,7 @@ </head> <body> <h1>New Project Wizard, Select configurations</h1> -<p>You can select toolchain(s) from this page of the wizard.</p> +<p>You can select configuration(s) from this page of the wizard. </p> <p><img src="../images/new_proj_wz_config.png" alt="New Project Wizard, Select configurations"></p> <p> diff --git a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_toolchain.htm b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_toolchain.htm index edad2795e9d..309c96bb52d 100644 --- a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_toolchain.htm +++ b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_toolchain.htm @@ -8,7 +8,10 @@ </head> <body> <h1>New Project Wizard, Select a toolchain</h1> -<p>You can select toolchain(s) from this page of the wizard.</p> +<p>You can select toolchain(s) from this page of the wizard. A toolchain is a set of tools (such as a compiler, linker, and assembler) intended to build your project. + Additional tools, such as a debugger, can be associated with a toolchain. + There can be several toolchains available, depending on the project type you specify, and the compilers installed on your system.</p> + <br> <p><img src="../images/new_proj_wz_toolchain.png" alt="New Project Wizard, Select a toolchain"></p> <p> @@ -24,9 +27,9 @@ </tr> <tr> <td><b>Show Project Types and toolchains only if they are supported on the platform</b></td> - <td>If checked (default), list is filtered so that only toolchains + <td>When selected (default), the list is filtered so that only toolchains that are buildable on the host system are shown.<br> - If unchecked, lists all known toolchains.</td> + If it is not selected, the list displays all known toolchains.</td> </tr> </tbody> </table> diff --git a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_type.htm b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_type.htm index b7ee77377f2..5734bbc3acc 100644 --- a/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_type.htm +++ b/doc/org.eclipse.cdt.doc.user/reference/cdt_u_new_proj_wiz_type.htm @@ -8,7 +8,7 @@ </head> <body> <h1>New Project Wizard, Select a Project Type</h1> -<p>You can select the type of project from this page of the wizard.</p> +<p>You can select a type of project from this page of the wizard. This project type will determine the toolchain and data, and tabs that the CDT uses. Once created, C/C++ projects display in the C/C++ Projects view.<p> <p><img src="../images/new_proj_wz_type.png" alt="New Project Wizard, Select a Project Type"></p> <p> @@ -35,7 +35,7 @@ types that are buildable on the host system are shown.<br> <p><img border="0" src="../images/ngconcepts.gif" ALT="Related concepts" width="143" height="21"><br> -<a href="../concepts/cdt_c_projects.htm">CDT projects</a><br> +<a href="../concepts/cdt_c_projects.htm">CDT projects (detailed information about project types)</a><br> </p> <p><img border="0" src="../images/ngtasks.gif" ALT="Related tasks" width="143" height="21"><br> |