From 7dbd86677cd698f7b1a0ed5b2ec12c3fc62cb7b4 Mon Sep 17 00:00:00 2001 From: Doug Schaefer Date: Sat, 23 Jun 2007 00:38:32 +0000 Subject: Bug 193376 - Patch for Angelina - doc updates. --- .../concepts/cdt_c_before_you_begin.htm | 2 +- .../getting_started/cdt_w_basic.htm | 77 +++++------ .../getting_started/cdt_w_build.htm | 6 +- .../getting_started/cdt_w_existing_code.htm | 15 +-- .../getting_started/cdt_w_import.htm | 10 +- .../getting_started/cdt_w_install_cdt.htm | 38 +++--- .../getting_started/cdt_w_standard.htm | 146 --------------------- doc/org.eclipse.cdt.doc.user/images/c_paths.png | Bin 46702 -> 50672 bytes .../images/cdt_new_brk_action.png | Bin 12554 -> 19215 bytes .../images/cdt_pref_brk_action.png | Bin 21582 -> 39942 bytes .../images/cdt_update_find-install.png | Bin 16754 -> 26570 bytes .../images/cdt_update_install_cdt_site.png | Bin 16782 -> 32074 bytes .../images/cdt_update_install_new.png | Bin 16620 -> 28900 bytes .../images/cdt_update_install_new_sites.png | Bin 5989 -> 10136 bytes .../images/cdt_update_install_sites.png | Bin 16775 -> 30387 bytes .../images/cdt_update_license_agreement.png | Bin 27940 -> 90360 bytes .../images/cdt_w_basic12.png | Bin 55352 -> 20281 bytes .../images/cdt_w_basic13.png | Bin 54590 -> 6544 bytes .../images/cdt_w_basic14.png | Bin 60400 -> 30497 bytes .../images/cdt_w_basic15.png | Bin 63866 -> 20877 bytes .../images/cdt_w_basic19.png | Bin 64611 -> 27952 bytes .../images/cdt_w_basic20.png | Bin 65065 -> 25264 bytes .../images/cdt_w_import02.png | Bin 30592 -> 27696 bytes .../images/cdt_w_import03.png | Bin 14787 -> 74172 bytes .../images/code_templates_new.png | Bin 4684 -> 17498 bytes .../images/codetemplates_example.png | Bin 5436 -> 21152 bytes .../images/contentAssist_preferences.png | Bin 21862 -> 47458 bytes .../images/customize_perspective.png | Bin 13242 -> 50024 bytes .../images/editor_color_preferences.png | Bin 28055 -> 63235 bytes .../images/editor_general_preferences.png | Bin 20293 -> 45989 bytes .../images/file_new_conv.png | Bin 8356 -> 27115 bytes .../images/new_proj_wz_config.png | Bin 29471 -> 31086 bytes .../images/new_project_wizard.png | Bin 27936 -> 27815 bytes .../images/project_rename.png | Bin 34464 -> 33124 bytes .../images/window_customize_perspective.png | Bin 13381 -> 31916 bytes .../reference/cdt_u_appearance_pref.htm | 10 +- .../reference/cdt_u_build_pref.htm | 16 +-- .../reference/cdt_u_new_proj_wiz_config.htm | 2 +- .../reference/cdt_u_new_proj_wiz_toolchain.htm | 9 +- .../reference/cdt_u_new_proj_wiz_type.htm | 4 +- 40 files changed, 84 insertions(+), 251 deletions(-) delete mode 100644 doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_standard.htm (limited to 'doc') 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 section for the latest versions.

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

    Do not install the MinGW Make feature as the MSYS version of make from step 3 +

    Do not install the MinGW Make feature as the MSYS version of make from step 5 is a more complete implementation of make.

  • 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 Click here to see an illustration.


    By default, the CDT filters the Toolchain and Project types that it displays in those lists based on the language support for the C++ Project wizard you selected for this tutorial.


  • -
  • In the Project name field, type a name for the project.

    +
  • In the Project name field, type a name for the project, such as Hello World.


  • From the Project types list, expand Executable and select Hello World C++ Project. This project type provides a simple Hello World application in C++, and the makefile is automatically created by the CDT.


    @@ -67,63 +67,46 @@ With CDT 4.0, you now select a project type, and that determines what build syst

    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.

    +

    Click here to see an illustration.

    +
    -

    Step 2: Creating a new file for the project

    -

    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.

    - -
      -
    1. Right-click on your project in the Navigator. -
    2. Select New > Source File. -

      You should now see the new project in the C/C++ Projects view under the project, and the new file opens in the Editor view.

      -
    - -

    Step 3: Enter and step through the code

    +

    Step 2: Reviewing the code and building the project

      -
    1. Copy the code from the file main.cpp -file that was just created. -

      -You can double click the main.cpp tab in the Editor -view to expand the view.
      -Note: Leave a blank line at the end of the code because it is required by some compilers.

      -

      On the tab in the Editor view, an asterisk character ("*") prefixes the file name. The asterisk indicates that the file has changed but has not been saved.

      -
    2. Notice that the Outline view has also been populated -with objects created from your code.

      -

      If you select an item from the Outline view, the -corresponding text in the editor is highlighted. -

    3. Save the main.cpp file by clicking File > Save or pressing CTRL+S. -
    4. Build your project by pressing CTRL+B.

      -

      You can read through the build messages in the Console view. -The project should build successfully, showing the following message:

      -

      Finished building target: HelloWorld.exe

      +
    5. From the Project Explorer in the C++ Projects View, double-click the .cpp file that was created for your project, for example, Hello World.cpp. +

      This file opens in a default editor. It contains C++ template code for the Hello World example project you selected earlier.

      +
      +

      Note: You can specify a different editor, and add or modify existing code templates in Window > Preferences.

      In addition, the Outline view has also been populated +with objects created from your code.

      Click here to see an illustration.

      +
    6. +
    7. Optional: You can type additional code in this file, and then save the changes by clicking File > Save, or pressing CTRL+S. + +


      Next, you will need to build your project before you can run it.


    8. +
    9. Build your project by pressing CTRL+B, or select the project from the Project Explorer tab in the C++ Projects view and select File > Build Project.

      +


      Note: If a build generates any errors or warnings, you can see those in the Problems view. If you encounter difficulty, see the topics Building C/C++ projects and Before you begin
      .

    10. +
    11. Read through the build messages in the Console view. +The project should build successfully.


      You will also see the Outline view has also been populated -with objects created from your code.

      -

      If you select an item from the Outline view, the -corresponding text in the editor is highlighted.

    12. +with objects created from your code. If you select an item from the Outline view, the +corresponding text in the editor is highlighted.


    -

    Step 4: Running the application

    +

    Step 3: Running the application

    + +

    To run your application:

      -
    1. To run your application within the C/C++ Perspective, click Run > Run... -
    2. Select C/C++ Local Application. -
    3. Click 'New'. -
    4. Click 'New'.

      +
    5. Within the C/C++ Perspective, click Run > Run.


    6. +
    7. Select C/C++ Local Application.


    8. +
    9. Click New.


    10. -

      A new Run Configuration is created. Its name and path to executable are provided by the project ('HelloWorld' in our case). +

      A new Run Configuration is created. Its name and path to the executable are provided by the project ('Hello World' in our case). -

    11. Click 'Run'. -
    +
  • Click Run.


    -

    Step 5: Reviewing and interpreting the results in the Console view

    -

    Now, you should now see the Hello World application running in the Console view. -The Console 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.

    -
      -
    1. Type in your name and press Enter. -

      The title bar in the Console view shows you when the program has terminated.

      +

      Now, you should see the Hello World application running in the Console view. +The Console also shows which application is running in a title bar.


    2. You can click the other views to see the information that they contain.
    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 @@

    Building a project

    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.

    To build a project:

      -
    1. In the C/C++ Projects view, select your project. For the tutorial, you want to select the HelloWorld project.
    2. +
    3. In the C/C++ Projects view, select your project. For the tutorial, you can to select the Hello World project you created earlier.


    4. Click Project > Build Project.
    5. If you see the error message:

      +

      Exec error:Launching failed

      +

      then CDT cannot locate the build command, usually make. Either your path is not configured correctly, or you do not have make installed on your system.

      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:
    6. Click Finish to exit the Check Out As dialog.

      -
    7. Click Next to continue. +
    8. Click Next to continue.

    Importing C/C++ code into an existing project

    @@ -118,25 +118,22 @@ To import a directory full of C/C++ code into an existing project:
    1. Right-click the module or directory in the CVS - Repositories view and choose Check Out As… + Repositories view and choose Check Out As from the menu.

      The IDE displays the Check Out As dialog.

      -
    2. Choose Check out into an existing project, and then click - Next. +
    3. Choose Check out into an existing project, and then click + Next. The IDE displays the Check Out Into dialog: -

      - Check Out Into -

    4. Select an existing project from the list, and then - click Finish to add the code from CVS to the selected + click Finish to add the code from CVS to the selected project.
    @@ -149,7 +146,7 @@ If your resource code is not managed in CVS but is available from the file syste
  • Identify a "root folder" of your source code tree.
  • 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.
  • -

    Typically existing projects will have their own makefiles, so you should create a new Standard Make C/C++ project. For more information see +

    Typically, existing projects will have their own makefiles, so you should create a new Make C/C++ project. For more information see Creating a project and Working with C/C++ project files.

    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 @@ -

    Turorial: Importing an existing project

    +

    Tutorial: Importing an existing project

    -

    The following tutorial will walk you though the process of importing a simple application using the CDT.

    +

    The following tutorial takes you though the process of importing a simple application using the CDT.

    Step 1: You want to create a single project that will reflect all of the components for the existing source tree.

    1. Select File > New > Project.
    2. For this tutorial, expand C++ and select C++ project. -


      The New Project wizard dispalys. Click here to see an illustration (displayed in a separate window).


      +


      The New Project wizard displays. Click here to see an illustration (displayed in a separate window).


    3. In the Project name field, type a name for the project.
    4. Ensure that the Use default location 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. -
    5. In the Location field, specify the path for your project. For this tutorial, the project to import is assumed to reside in the directory C:\MySrcDirectory. +
    6. In the Location field, specify a path for your project.
    7. From the Project types list, expand Makefile Project and select Hello World C++ Project.
    8. Click Next.
    9. 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) {

      To obtain the latest CDT features:

        -
      1. Select Help > Software Updates > Find and Install.


        +
      2. Select Help > Software Updates > Find and Install.

        Click here to see an illustration (displayed in a separate window).


      3. -
      4. In the Feature Updates window, select Search for new features to install and click Next.

        Note: If you want to search for updates on features that you currently have installed, you can select the option Search for updates of the currently installed features.



        Click here to see an illustration.

        +
      5. In the Feature Updates window, select Search for new features to install and click Next.

        Note: If you want to search for updates on features that you currently have installed, you can select the option Search for updates of the currently installed features, and then follow the steps to update using that method.

        Click here to see an illustration.


      6. -
      7. If you have not updated previously, you will have to enter the location of the Eclipse CDT Install site. Click New Remote Site....


        +
      8. If you have not updated previously, you will have to enter the location of the Eclipse CDT Install site. Click New Remote Site....

        Click here to see an illustration.


      9. -
      10. In the New Update Site dialog box, type the name and URL for the Eclipe update site in the spaces provided.


        +
      11. In the New Update Site dialog box, type the name and URL for the Eclipse update site.

        Click here to see an illustration.


      12. -
      13. Click OK. -
      14. From the Sites to include in search list, select the update site you just created by clicking the appropriate check box, and click Finish.


        +
      15. Click OK.


      16. +
      17. From the Sites to include in search list, select the update site you just created by clicking the appropriate check box, and click Finish.

        Click here to see an illustration.


      18. -
      19. 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: -
          -
        • Eclipse C/C+ Development Tooling SDK
        • -
        • Eclipse C/C+ Development Tools
        • -
        -
      20. Expand and select any additional features that you require. De-select any options that do not apply to you. -
      21. Click Next.


        +
      22. 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.


      23. +
      24. Click Next.

        Click here to see an illustration.


      25. -
      26. You must accept the Eclipse.org Software User Agreement to continue installing the CDT update. If you accept the terms, select I accept the terms in the license agreement and then click Next.


        +
      27. You must accept the Eclipse.org Software User Agreement to continue installing the CDT update. If you accept the terms, select I accept the terms in the license agreement and then click Next.

        Click here to see an illustration.


      28. -

        You can review the summary list of the features you selected to install.

        -

      29. Optional: Click Change Location to select the location you would like the updates installed. Typically, this is the directory where you installed Eclipse. -
      30. Click Finish.


        Click here to see an illustration.

        +

        You can review the summary list of the features you selected to install.


      31. +
      32. Optional: Click Change Location to select the location you would like the updates installed. Typically, this is the directory where you installed Eclipse.


      33. +
      34. Click Finish.

        Click here to see an illustration.


      35. You will now start downloading the CDT components. You will have to verify that you want the features installed by clicking - Install for each feature you selected.


        + Install for each feature you selected.

        Click here to see an illustration.

        -
      36. +

        Now, you have to restart Eclipse.


        + -

        Now, you have to restart Eclipse. -

      37. Select Yes to complete the feature installation process.


        +
      38. Select Yes to complete the feature installation process.

        Click here to see an illustration.

      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 @@ - - - - - New CDT Project with your own makefile - Tutorial - - - - - - -

      New CDT Project with your own makefile - Tutorial

      - -
      - - - - - - -
      -

      Eclipse Logo

      -IBM Copyright Statement - - \ 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 index 9af4487874a..3c1d51c7ade 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/c_paths.png and b/doc/org.eclipse.cdt.doc.user/images/c_paths.png differ 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 index 9ff87eb97c0..7d186805056 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_new_brk_action.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_new_brk_action.png differ 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 index 91ab8376839..c05e5880691 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_pref_brk_action.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_pref_brk_action.png differ 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 index f27c439106c..de40ebfc00e 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_update_find-install.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_update_find-install.png differ 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 index 7555d6b5755..634bfe3cbb3 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_cdt_site.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_cdt_site.png differ 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 index 98b5e859960..176c7b670b2 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new.png differ 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 index 142f34f662e..3533e413c4d 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new_sites.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_new_sites.png differ 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 index c320d8c4b45..c0454b625d3 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_sites.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_update_install_sites.png differ 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 index b1c3bd56301..428f6b237bd 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_update_license_agreement.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_update_license_agreement.png differ 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 index 73176739687..0dd8d6945ed 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic12.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic12.png differ 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 index 43ffed3a6c0..6ebc3a71846 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic13.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic13.png differ 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 index 414edbaa3a1..a8bac4229d5 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic14.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic14.png differ 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 index 23d84c6de5e..7c90dc7d50f 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic15.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic15.png differ 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 index 36f1c727041..d64163c9d6d 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic19.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic19.png differ 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 index c6ffad1435f..cf3e06dc956 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic20.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_w_basic20.png differ 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 index 34bd76baae2..c99fe37673c 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_w_import02.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_w_import02.png differ 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 index d361bf94259..89ea3940c1e 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/cdt_w_import03.png and b/doc/org.eclipse.cdt.doc.user/images/cdt_w_import03.png differ 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 index 57e75586b43..622b125f0f8 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/code_templates_new.png and b/doc/org.eclipse.cdt.doc.user/images/code_templates_new.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/codetemplates_example.png b/doc/org.eclipse.cdt.doc.user/images/codetemplates_example.png index ff1646eada4..8cb7ff0d044 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/codetemplates_example.png and b/doc/org.eclipse.cdt.doc.user/images/codetemplates_example.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/contentAssist_preferences.png b/doc/org.eclipse.cdt.doc.user/images/contentAssist_preferences.png index bed8a92890d..7d93c11ae83 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/contentAssist_preferences.png and b/doc/org.eclipse.cdt.doc.user/images/contentAssist_preferences.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/customize_perspective.png b/doc/org.eclipse.cdt.doc.user/images/customize_perspective.png index e505eb0d871..81eecc037ba 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/customize_perspective.png and b/doc/org.eclipse.cdt.doc.user/images/customize_perspective.png differ 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 index ed2e05364c8..8e0dee77ef5 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/editor_color_preferences.png and b/doc/org.eclipse.cdt.doc.user/images/editor_color_preferences.png differ 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 index 4a2002d8573..411f3be3460 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/editor_general_preferences.png and b/doc/org.eclipse.cdt.doc.user/images/editor_general_preferences.png differ 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 index 0b7545de3d6..8747012ffc4 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/file_new_conv.png and b/doc/org.eclipse.cdt.doc.user/images/file_new_conv.png differ 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 index 9544c83ca3b..ad81aea0d7f 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/new_proj_wz_config.png and b/doc/org.eclipse.cdt.doc.user/images/new_proj_wz_config.png differ 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 index 0309c97db67..68ba7e97b51 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/new_project_wizard.png and b/doc/org.eclipse.cdt.doc.user/images/new_project_wizard.png differ diff --git a/doc/org.eclipse.cdt.doc.user/images/project_rename.png b/doc/org.eclipse.cdt.doc.user/images/project_rename.png index 402ab625aa8..e998ae1feef 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/project_rename.png and b/doc/org.eclipse.cdt.doc.user/images/project_rename.png differ 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 index a34d6904a84..8f84327859c 100644 Binary files a/doc/org.eclipse.cdt.doc.user/images/window_customize_perspective.png and b/doc/org.eclipse.cdt.doc.user/images/window_customize_perspective.png differ 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 @@

      Appearance preferences

      -

      Customize the appearance of C elements in viewers using the Appearance preference panel.

      +

      Use the Appearance panel of the Preferences window to customize the appearance of C elements in the viewers.

      @@ -26,19 +26,19 @@ - + - + - + - +
      Show translation unit numbers Activate this checkbox to show translation unit numbers. Select this option to show translation unit numbers.
      Group the includes in the C/C++ projects view Activate this checkbox to group include files in the C/C++ project view. Select this option to group include files in the C/C++ project view.
      Group the includes in the outliner Activate this checkbox to group include files in outline views. Select this option to group include files in outline views.
      Group the namespaces in the outliner Activate this checkbox to group files by namespaces in outline views. Select this option to group files by namespaces in outline views.
      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 @@
      Always clear console before building
      - Select this checkbox to clear the console whenever you perform a build. + Select this option to clear the contents of the Console view every time you perform a build.
      Open console when building
      - Select this checkbox to open the console build when you perform a build. + Select this option to open the Console view when you perform a build.
      Bring console to top when building (if present)
      - Select this checkbox to bring the build console to the front when you perform a build. + Select this option to make the Console view the active window when you perform a build.
      Limit console output (#lines)
      - You specify the maximum number of lines that appear in the build console view. + Specify the maximum number of lines that can display in the Console view.
      Display tab width
      - You can specify the number of spaces for a tab. + Specify the number of spaces for a tab.
      Output text color
      - You can customize the color of text in the build console. + Customize the color of text in the Console view.
      Information message text color
      - You can customize the color of information text messages in the build console. + Customize the color of information text messages in the Console view.
      Error message text color
      - You can customize the color of error text messages in the build console. + Customize the color of error messages in the Console view. 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 @@

      New Project Wizard, Select configurations

      -

      You can select toolchain(s) from this page of the wizard.

      +

      You can select configuration(s) from this page of the wizard.

      New Project Wizard, Select configurations

      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 @@

      New Project Wizard, Select a toolchain

      -

      You can select toolchain(s) from this page of the wizard.

      +

      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.

      +

      New Project Wizard, Select a toolchain

      @@ -24,9 +27,9 @@ Show Project Types and toolchains only if they are supported on the platform - If checked (default), list is filtered so that only toolchains + When selected (default), the list is filtered so that only toolchains that are buildable on the host system are shown.
      - If unchecked, lists all known toolchains. + If it is not selected, the list displays all known toolchains. 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 @@

      New Project Wizard, Select a Project Type

      -

      You can select the type of project from this page of the wizard.

      +

      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.

      New Project Wizard, Select a Project Type

      @@ -35,7 +35,7 @@ types that are buildable on the host system are shown.

      Related concepts
      -CDT projects
      +CDT projects (detailed information about project types)

      Related tasks
      -- cgit v1.2.3