Difference between revisions of "IDE Macros in paths and filenames"

From Lazarus wiki
Jump to navigationJump to search
Line 12: Line 12:
 
* TargetCPU - Target CPU of the current project
 
* TargetCPU - Target CPU of the current project
 
* TargetOS - Target OS of the current project
 
* TargetOS - Target OS of the current project
* FPCVer - FPC version. For example 2.2.2
+
* FPCVer - FPC version (since 0.9.25). For example '2.2.2'.
 
* LanguageID - IDE language, for example en for english, de for german
 
* LanguageID - IDE language, for example en for english, de for german
 
* LanguageName - IDE language name, the translated name of the current language. For instance: Deutsch for german.
 
* LanguageName - IDE language name, the translated name of the current language. For instance: Deutsch for german.

Revision as of 15:46, 18 August 2008

Deutsch (de) English (en) español (es) français (fr) português (pt) русский (ru)

  • Col - current column in source editor
  • Row - current row in source editor
  • CompPath - compiler path set in the environment options
  • CurToken - current token at the cursor in the source editor
  • EdFile - current filename in the source editor
  • ExeExt - executable file extension
  • FPCSrcDir - FPC source directory set in environment options
  • LazarusDir - Lazarus source directory set in environment options
  • LCLWidgetType - LCL widgetset of the current project
  • TargetCPU - Target CPU of the current project
  • TargetOS - Target OS of the current project
  • FPCVer - FPC version (since 0.9.25). For example '2.2.2'.
  • LanguageID - IDE language, for example en for english, de for german
  • LanguageName - IDE language name, the translated name of the current language. For instance: Deutsch for german.
  • Params - run parameters of the current project
  • Prompt - ask the user for a value. This is an interactive macro.
  • ProjFile - the full filename of the main source of the current project (.lpr)
  • ProjPath - the project directory (the directory of the .lpi file)
  • Save - save current file in source editor
  • SaveAll - save all
  • TargetFile - the output file of the current project (e.g. the executable or the library)
  • TargetCmdLine - the project executable plus run parameters
  • TestDir - Test directory set in the environment options
  • RunCmdLine - the command to launch the project
  • ProjPublishDir - publishing directory of the current project
  • ProjUnitPath - unit path of project directory
  • ProjIncPath - include path of project directory
  • ProjSrcPath - source path of project directory
  • ConfDir - directory where the IDE stores its config files
  • MakeExe - path to the 'make' program (gmake under BSD)
  • Project() - macro function for various values
    • Project(UnitPath) - unit path of project directory
    • Project(SrcPath) - source path of project directory
    • Project(IncPath) - include path of project directory
    • Project(InfoFile) - filename of the project information file (.lpi) (since r15287, 0.9.25)
  • Ext() - macro function for ExtractFileExt
  • Path() - macro function for ExtractFilePath
  • Name() - macro function for ExtractFileName
  • NameOnly() - macro function for ExtractFileNameOnly
  • MakeDir() - macro function for AppendPathDelim
  • MakeFile() - macro function for ChompPathDelim
  • PkgDir() - macro function for the directory (location of the .lpk) of a package ID given as parameter
  • PkgSrcPath() - macro function for the source path of a package ID given as parameter
  • PkgUnitPath() - macro function for the unit path of a package ID given as parameter
  • PkgIncPath() - macro function for the include path of a package ID given as parameter