home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 September
/
PCWorld_2002-09_cd.bin
/
Software
/
Topware
/
pspad
/
Context
/
Pascal.DEF
< prev
next >
Wrap
Text File
|
2001-08-12
|
2KB
|
149 lines
; Tento soubor obsahuje makra programu PSPad pro Pascal
;
; ╪ßdky zaΦφnajφcφ st°ednφkem a prßzdnΘ °ßdky jsou ignorovßny
;
; Formßt p°φkaz∙ :
; [jmΘno_p°φkazu | popis p°φkazu (libovoln² text)]*klßvesovß_zkratka
; °ßdek p°φkazu, kter² bude vlo₧en
; °ßdek p°φkazu, kter² bude vlo₧en ...
;
; hlaviΦka p°φkazu je uzav°ena do [], znak | slou₧φ jako odd∞lovaΦ
; jmΘna p°φkazu a komentß°e.
; * urΦuje nepovinnou klßvesovou zkratku
; pokud °ßdek p°φkazu obsahuje znak |, kurzor se po vlo╛enφ do
; textu zastavφ na tomto mφst∞
; pokud °ßdek p°φkazu obsahuje znak º, bude zde vlo₧en oznaΦen² text
;
; autor: Borand - p°evzato z Delphi5
; poslednφ revize 12.8.2001
;
[arrayd | array declaration (var)]
array[0..|] of ;
[arrayc | array declaration (const)]
array[0..|] of = ();
[cases | case statement]
case | of
: ;
: ;
end;
[casee | case statement (with else)]
case | of
: ;
: ;
else ;
end;
[classf | class declaration (all parts)]
Tº| = class(T)
private
protected
public
published
end;
[classd | class declaration (no parts)]
Tº| = class(T)
end;
[classc | class declaration (with Create/Destroy overrides)]
Tº| = class(T)
private
protected
public
constructor Create; override;
destructor Destroy; override;
published
end;
[fors | for (no begin/end)]
for | := to do
º
[forb | for statement]
for | := to do begin
º
end;
[function | function declaration]
function |(): ;
begin
end;
[ifs | if (no begin/end)]
if | then
º
[ifb | if statement]
if | then begin
º
end;
[ife | if then (no begin/end) else (no begin/end)]
if | then
º
else
[ifeb | if then else]
if |
then begin
º
end
else begin
end;
[procedure | procedure declaration]
procedure º|();
begin
end;
[trye | try except]
try
º|
except
end;
[tryf | try finally]
try
º|
finally
end;
[trycf | try finally (with Create/Free)]
º := T|.Create;
try
finally
º.Free;
end;
[whileb | while statement]
while | do begin
º
end;
[whiles | while (no begin)]
while | do
[withb | with statement]
with | do begin
º
end;
[withs | with (no begin)]
with | do
º