Subversion Repositories svnkaklik

Compare Revisions

No changes between revisions

Ignore whitespace Rev 5 → Rev 6

/programy/delphi/hello/Hello_p.cfg
0,0 → 1,35
-$A8
-$B-
-$C+
-$D+
-$E-
-$F-
-$G+
-$H+
-$I+
-$J-
-$K-
-$L+
-$M-
-$N+
-$O+
-$P+
-$Q-
-$R-
-$S-
-$T-
-$U-
-$V+
-$W-
-$X+
-$YD
-$Z1
-cg
-AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
-H+
-W+
-M
-$M16384,1048576
-K$00400000
-LE"c:\program files\borland\delphi6\Projects\Bpl"
-LN"c:\program files\borland\delphi6\Projects\Bpl"
/programy/delphi/hello/Hello_p.dof
0,0 → 1,89
[FileVersion]
Version=6.0
 
[Compiler]
A=8
B=0
C=1
D=1
E=0
F=0
G=1
H=1
I=1
J=0
K=0
L=1
M=0
N=1
O=1
P=1
Q=0
R=0
S=0
T=0
U=0
V=1
W=0
X=1
Y=1
Z=1
ShowHints=1
ShowWarnings=1
UnitAliases=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
 
[Linker]
MapFile=0
OutputObjs=0
ConsoleApp=1
DebugInfo=0
RemoteSymbols=0
MinStackSize=16384
MaxStackSize=1048576
ImageBase=4194304
ExeDescription=
 
[Directories]
OutputDir=
UnitOutputDir=
PackageDLLOutputDir=
PackageDCPOutputDir=
SearchPath=
Packages=
Conditionals=
DebugSourceDirs=
UsePackages=0
 
[Parameters]
RunParams=
HostApplication=
Launcher=
UseLauncher=0
DebugCWD=
 
[Version Info]
IncludeVerInfo=0
AutoIncBuild=0
MajorVer=1
MinorVer=0
Release=0
Build=0
Debug=0
PreRelease=0
Special=0
Private=0
DLL=0
Locale=1029
CodePage=1250
 
[Version Info Keys]
CompanyName=
FileDescription=
FileVersion=1.0.0.0
InternalName=
LegalCopyright=
LegalTrademarks=
OriginalFilename=
ProductName=
ProductVersion=1.0.0.0
Comments=
/programy/delphi/hello/Hello_p.dpr
0,0 → 1,13
program Hello_p;
 
uses
Forms,
Unit1 in 'Unit1.pas' {Hlavni_Formular};
 
{$R *.res}
 
begin
Application.Initialize;
Application.CreateForm(THlavni_Formular, Hlavni_Formular);
Application.Run;
end.
/programy/delphi/hello/Hello_p.res
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/programy/delphi/hello/Unit1.dcu
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/programy/delphi/hello/Unit1.dfm
0,0 → 1,32
object Hlavni_Formular: THlavni_Formular
Left = 336
Top = 120
Width = 289
Height = 172
Caption = 'Prvn'#205' Program'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clGreen
Font.Height = -33
Font.Name = 'Times New Roman'
Font.Style = [fsBold]
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 37
object Label1: TLabel
Left = 56
Top = 16
Width = 175
Height = 37
Caption = 'Hello World'
end
object Button1: TButton
Left = 48
Top = 88
Width = 193
Height = 49
Caption = 'Tla'#269#237'tko'
TabOrder = 0
OnClick = Button1Click
end
end
/programy/delphi/hello/Unit1.pas
0,0 → 1,41
unit Unit1;
 
interface
 
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
 
type
THlavni_Formular = class(TForm)
Label1: TLabel;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
 
var
Hlavni_Formular: THlavni_Formular;
 
implementation
 
{$R *.dfm}
 
procedure THlavni_Formular.Button1Click(Sender: TObject);
begin
if Tlacitko.Caption='èesky' then
begin
Label1.Caption:='Ahoj Všichni!';
Tlacitko.Caption:='English';
end
else
begin
Label1.Caption:='Hello World!';
Tlacitko.Caption:='èesky';
end;
 
 
end.
/programy/delphi/hello/Unit1.~dfm
0,0 → 1,16
object Hlavni_Formular: THlavni_Formular
Left = 343
Top = 199
Width = 289
Height = 172
Caption = 'Prvn'#205' Program'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
end
/programy/delphi/hello/Unit1.~pas
0,0 → 1,24
unit Unit1;
 
interface
 
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
 
type
THlavni_Formular = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end;
 
var
Hlavni_Formular: THlavni_Formular;
 
implementation
 
{$R *.dfm}
 
end.
/programy/delphi/hello/vssver.scc
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property