Difference between revisions of "IDE Window: Project Options"

From Lazarus wiki
Jump to navigationJump to search
Line 50: Line 50:
  
 
== Session ==
 
== Session ==
 +
 +
=== Save editor info for closed files ===
 +
 +
The IDE saves the editor settings (caret position, top line, page index, bookmarks, jump history) even for closed files and will restore it, when the file is opened again. Default: enabled.
 +
 +
=== Save editor info only for project files ===
 +
 +
The IDE saves various settings for each file, like editor settings, run file settings, resource names. Normally the IDE will save this information together with the project sesssion information (.lpi or .lps file). Enable this to not store such values on disk. Default: true.
 +
 +
=== Save session information in ===
 +
 +
Each project has a session. A session contains all meta information about open files in the source editor, the bookmarks, jump history and run file information. You can setup, where to store this information for the current project:
 +
 +
* Save in .lpi file - the file will change often.
 +
* Save the .lps file in the project directory - useful if the .lpi file is under version control (e.g. cvs, svn).
 +
* Save in IDE config directory - useful if the project directory is write only
 +
* Do not save any session info - useful for the paranoids.

Revision as of 17:40, 30 April 2006

Application

Title

Same as setting

 Application.Title:='some text';

The title is shown differently on the various platforms.

Target file name

Set here the filename of the generated executable. If the file is relative it will be expanded with the project directory (.lpi file).

Forms

You can create forms on start of the project. This is the same as adding

 Application.CreateForm(FormX,TFormX); 

lines to the code.

Note: The forms are automatically created, not automatically shown. They are shown if their 'Visible' property is set to true. For instance the form variable is set, so you can write 'Form1.Caption:='Some text';'. To show such a form add a line 'Form1.Show;' or 'Form1.ShowModal;'.

Miscellanous

Main unit is Pascal Source

The main source is the root unit of a project. Typically this is the .lpr file. Set to true, if the main source is a pascal source.

Main Unit has Uses Section containing all Units of project

If this is enabled, the IDE will update the uses section whenever a unit is added or removed from the project.

Main Unit has Application.CreateForm statements

If this is enabled the IDE will add/remove Application.CreateForm(FormX, TFormX); statements for forms.

Main Unit has Application.Title statement

If this is enabled the IDE will add/remove Application.Title:='Some Text' statements.

Project is runnable

Project can be runned in the debugger.

Always build (even if nothing changed)

If disabled, the IDE checks before running for changes and if nothing changed will skip the compile step.

LazDoc

Session

Save editor info for closed files

The IDE saves the editor settings (caret position, top line, page index, bookmarks, jump history) even for closed files and will restore it, when the file is opened again. Default: enabled.

Save editor info only for project files

The IDE saves various settings for each file, like editor settings, run file settings, resource names. Normally the IDE will save this information together with the project sesssion information (.lpi or .lps file). Enable this to not store such values on disk. Default: true.

Save session information in

Each project has a session. A session contains all meta information about open files in the source editor, the bookmarks, jump history and run file information. You can setup, where to store this information for the current project:

  • Save in .lpi file - the file will change often.
  • Save the .lps file in the project directory - useful if the .lpi file is under version control (e.g. cvs, svn).
  • Save in IDE config directory - useful if the project directory is write only
  • Do not save any session info - useful for the paranoids.