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

From Free Pascal wiki
Jump to navigationJump to search
Line 9: Line 9:
 
* FPCSrcDir - Répertoire source de FPC fixé dans les options d'environnement
 
* FPCSrcDir - Répertoire source de FPC fixé dans les options d'environnement
 
* LazarusDir - Répertoire source de Lazarus fixé dans les options d'environnement
 
* LazarusDir - Répertoire source de Lazarus fixé dans les options d'environnement
* LCLWidgetType - jeux de gadget LCL du projet courant
+
* LCLWidgetType - jeux de composants graphiques LCL du projet courant
 
* TargetCPU - Unité centrale de traitement cible du projet en cours  
 
* TargetCPU - Unité centrale de traitement cible du projet en cours  
 
* TargetOS - OS cible du projet en cours  
 
* TargetOS - OS cible du projet en cours  

Revision as of 23:18, 30 June 2007

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

  • Col - colonne courante dans l'éditeur de source
  • Row - ligne courante dans l'éditeur de source
  • CompPath - le chemin de compilateur fixé dans les options d'environnement
  • CurToken - marque courante au curseur dans l'éditeur de source
  • EdFile - nom de fichier courant dans l'éditeur de source
  • ExeExt - extension du fichier exécutable
  • FPCSrcDir - Répertoire source de FPC fixé dans les options d'environnement
  • LazarusDir - Répertoire source de Lazarus fixé dans les options d'environnement
  • LCLWidgetType - jeux de composants graphiques LCL du projet courant
  • TargetCPU - Unité centrale de traitement cible du projet en cours
  • TargetOS - OS cible du projet en cours
  • LanguageID - Langue de l'ide, par exemple en pour l'anglais , de pour l'allemand
  • LanguageName - IDE language name, the translated name of the current language. For instance: Deutsch for german.
  • Params - paramètres d'exécution du projet en cours
  • Prompt - demander à l'utilisateur une valeur . C'est une macro interactive .
  • ProjFile - le nom de fichier complet de la source principale du projet en cours (.lpr)
  • ProjPath - the project directory (the directory of the .lpi file)
  • Save - save current file in source editor
  • SaveAll - Enregistre tout
  • 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
    • Project(UnitPath) - unit path of project directory
    • Project(SrcPath) - source path of project directory
    • Project(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
  • 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