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

From Lazarus wiki
Jump to navigationJump to search
Line 32: Line 32:
 
* Path() - macro function for ExtractFilePath
 
* Path() - macro function for ExtractFilePath
 
* Name() - macro function for ExtractFileName
 
* Name() - macro function for ExtractFileName
 +
* NameOnly() - macro function for ExtractFileNameOnly
 +
* MakeDir() - macro function for AppendPathDelim
 +
* MakeFile() - macro function for ChompPathDelim
 +
* 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

Revision as of 01:05, 16 April 2006

  • Col - current row in source editor
  • Row - current column 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
  • 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
  • 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() - makro function for various values
 * UnitPath - unit path of project directory
 * SrcPath - source path of project directory
 * IncPath - include path of project directory
  • 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
  • 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