home *** CD-ROM | disk | FTP | other *** search
/ Beginning C++ Through Gam…rogramming (2nd Edition) / BCGP2E.ISO / bloodshed / devcpp-4.9.9.2_setup.exe / Lang / English.tips < prev    next >
Text File  |  2003-09-29  |  6KB  |  84 lines

  1. #
  2. # This is a TipOfTheDay tips file.
  3. # Keep each tip on one line.
  4. #
  5. # Lines starting with '#' are comments and ignored
  6. # Empty lines are also ignored.
  7. #
  8. # You can use these macros in the text:
  9. #    <CR>:         insert a linefeed
  10. #    <URL>:         is followed by a URL link
  11. #    <UDESC>:     is followed by a URL description
  12. #
  13. # Usage syntax (the text of the tip is <tip_text>):
  14. #    ( <tip_text> | <CR> )* [ <URL>text [ <UDESC>text ] ]
  15. #
  16. # Example tip:
  17. #    ...some tip<CR><CR>more lines...<URL>http://www.bloodshed.net/dev<UDESC>Click to visit Bloodshed Software
  18. #
  19. # More macros will be added as needed...
  20. #
  21. # Note1: if you want to use an ampersand (&), put two together (&&).
  22. # Note2: each tip can have no more than 255 chars.
  23. # Note3: the macro <CR> counts as one character, not four.
  24. # Note4: with macros <URL> and <UDESC>, the rest of the line is not displayed as a tip,
  25. #     so it does not count for the 255-chars limit.
  26. # Note5: Macro <UDESC> is optional. If ommited, <URL> will be printed as the link.
  27. # Note6: Macro <UDESC> if exists *must* follow the macro <URL>
  28. #
  29.  
  30. #
  31. # Important tips (appear first)
  32. #
  33. ...you shouldn't disable these tips?<CR><CR>The tips presented here will give you undocumented information not found anywhere else.<CR>If you disable them and want to view them at a later time, select "Help / Tip of the day"...
  34.  
  35. ...you can use WebUpdate to keep your Dev-C++ enviroment up to date with the latest bug fixes and cool new features?<CR><CR>Select "Tools / Check for Updates / Packages..."
  36.  
  37. #
  38. # Code-completion tips
  39. #
  40. ...the code completion feature will help you increase your productivity by suggesting all possible commands available in the current context?<CR><CR>To enable code completion, go to "Tools / Editor Options" and enable the class browser and code completion.
  41.  
  42. ...the code completion feature is triggered when you type ".", "->" or "::" in the editor window after a user-defined time-out?<CR><CR>To define this time-out go to "Tools / Editor Options / Class Browser / Code completion".
  43.  
  44. ...you can trigger the code completion feature by pressing "Ctrl+Space" at any time in the editor window?<CR><CR>(Try pressing "Ctrl+Shift+Space" while the cursor is inside a function's arguments parenthesis...)
  45.  
  46. ...shift-clicking on an entry in the class browser, takes you to the declaration instead of the implementation?<CR>Of course, you can also use the context menu for the same (and more!) function...
  47.  
  48. ...you can add custom folders in the class browser to find easier what you 're looking for in big projects? You can even nest the custom folders!<CR><CR>Just right-click in the class browser to bring-up the context menu...
  49.  
  50. ...the class browser custom folders information is kept in a file named "classfolders.dcf" in your project's root directory?<CR><CR>If something goes wrong and things get messed-up, just delete this file and re-open your project!
  51.  
  52. ...there are two display modes for the class browser?<CR>One shows you all the parsed classes/members/functions of the project, and the other shows you the relevant information *only* for the currently editing file.<CR><CR>Just right-click in the class browser and select "View mode"...
  53.  
  54. #
  55. # Project Manager tips
  56. #
  57. ...you can define if you will have to single-click or double-click a file in the project manager to open it in an editor?<CR><CR>To define this go to "Tools / Environment Options" and enable (or disable) the "Double click to open project manager files"...
  58.  
  59. ...you can define custom (top-level only) folders in the project manager to organize your files better?<CR><CR>To do this, right click on a file in the project manager to bring-up the context menu...
  60.  
  61. ...if you have created custom folders in the project manager, you can drag && drop files to re-arrange them?
  62.  
  63. #
  64. # File menu tips
  65. #
  66. ...you can get information about the file you 're working on?<CR><CR>Select "File / Properties" and you will get information about the size of the file, the number of lines, line comments, empty lines and included files!
  67.  
  68. ...you can save your project as a template?<CR><CR>Select "File / New / Template". This will save your project as a Dev-C++ template and will be available when you select "File / New / Project".<CR>This way you will have a base to start coding on, based on your taste!
  69.  
  70. ...you can import your MS Visual C++ projects in Dev-C++?<CR><CR>Just select "File / Import / Import MS Visual C++ project".<CR>You may need to tweak a little the project options after importing but, hey, it's work in progress!
  71.  
  72. ...you can export a source file or a whole project to HTML or RTF?<CR>This way you can upload your sources to a website and share them with the world!<CR><CR>Just click on "File / Export" and select the export method...
  73.  
  74. #
  75. # Edit menu tips
  76. #
  77. ...you can (un)comment a set of lines by selecting them and clicking on "Edit / (Un)Comment"?
  78.  
  79. ...you can (un)indent a set of lines by selecting them and clicking on "Edit / (Un)Indent"?
  80.  
  81. ...you can use bookmarks in the editor to move around code quickly?<CR><CR>Set or unset a bookmark by clicking on "Edit / Toggle bookmarks" and selecting the bookmark number.<CR>Go to a set bookmark by clicking on "Edit / Goto bookmarks" and selecting the bookmark number.
  82.  
  83. ...there is a powerful "Goto function" command under the "Search" menu?<CR><CR>It displays all the file's functions and by typing some part of the function name, the list filters down. Press enter and you will go to this function immediately!<CR>Note: class browsing must be enabled...
  84.