Subversion Repositories spacemission

Compare Revisions

No changes between revisions

Regard whitespace Rev HEAD → Rev 1

/LevMain.vlb
File deleted
\ No newline at end of file
/LevEdit_Icon.ico
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Deleted: svn:mime-type
-application/octet-stream
\ No newline at end of property
/GamSplash.dfm
File deleted
/LICENSE
File deleted
/GamSpeicherung.dfm
File deleted
/Converter.cfg
File deleted
/Converter_Icon.ico
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Deleted: svn:mime-type
-application/octet-stream
\ No newline at end of property
/Readme.md
File deleted
\ No newline at end of file
/_Projektgruppe.groupproj
File deleted
/Converter.res
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Deleted: svn:mime-type
-application/octet-stream
\ No newline at end of property
/GamMain.vlb
File deleted
\ No newline at end of file
/CnvMain.pas
File deleted
/ComInfo.pas
File deleted
/Converter.dproj
File deleted
/Signaturen.txt
File deleted
/CnvMain.dfm
File deleted
/Converter.dpr
File deleted
/GamSplash.pas
File deleted
/Converter.bdsproj
File deleted
/ComInfo.dfm
File deleted
/GamMain.pas
File deleted
/SpaceMission.dproj
File deleted
/SpaceMission_Icon.ico
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Deleted: svn:mime-type
-application/octet-stream
\ No newline at end of property
/Global.pas
File deleted
/GamMain.dfm
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Deleted: svn:mime-type
-application/octet-stream
\ No newline at end of property
/LevEdit.dproj
File deleted
/GamCheat.pas
File deleted
/GamCheat.dfm
File deleted
/_PreBuild.bat
File deleted
/GamSpeicherung.pas
File deleted
/_PostBuild.bat
File deleted
/SplInfo.dfm
0,0 → 1,133
object InfoForm: TInfoForm
Left = 289
Top = 184
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Informationen'
ClientHeight = 193
ClientWidth = 321
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
OnHide = FormHide
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object HomeLbl: TLabel
Left = 32
Top = 136
Width = 48
Height = 13
Caption = 'Webseite:'
Transparent = True
end
object Image: TImage
Left = 8
Top = 8
Width = 65
Height = 57
Center = True
Stretch = True
end
object FirmaLbl: TLabel
Left = 88
Top = 8
Width = 31
Height = 13
Caption = 'Firma'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
Transparent = True
end
object NameLbl: TLabel
Left = 104
Top = 24
Width = 28
Height = 13
Caption = 'Name'
Transparent = True
end
object VersionLbl: TLabel
Left = 232
Top = 24
Width = 35
Height = 13
Caption = 'Version'
Transparent = True
end
object EMailLbl: TLabel
Left = 32
Top = 120
Width = 32
Height = 13
Caption = 'E-Mail:'
Transparent = True
end
object CopyrightLbl: TLabel
Left = 8
Top = 80
Width = 44
Height = 13
Caption = 'Copyright'
Transparent = True
end
object Copyright2Lbl: TLabel
Left = 8
Top = 96
Width = 117
Height = 13
Caption = 'Alle Rechte vorbehalten!'
Transparent = True
end
object URL2: TLabel
Left = 152
Top = 136
Width = 117
Height = 13
Cursor = crHandPoint
Caption = 'www.daniel-marschall.de'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsUnderline]
ParentFont = False
Transparent = True
OnClick = URL2Click
end
object URL1: TLabel
Left = 152
Top = 120
Width = 118
Height = 13
Cursor = crHandPoint
Caption = 'info@daniel-marschall.de'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsUnderline]
ParentFont = False
Transparent = True
OnClick = URL1Click
end
object ElPopupButton1: TButton
Left = 208
Top = 160
Width = 107
Height = 25
Caption = 'OK'
TabOrder = 0
OnClick = ElPopupButton1Click
end
end
/LevEdit.dpr
2,8 → 2,8
 
{$Description 'SpaceMission Leveleditor 1.1'}
 
{%ToDo 'LevEdit.todo'}
 
 
uses
Windows,
Forms,
11,13 → 11,12
SysUtils,
MMSystem,
LevMain in 'LevMain.pas' {MainForm},
LevText in 'LevText.pas' {TextForm},
LevSplash in 'LevSplash.pas' {SplashForm},
LevSpeicherung in 'LevSpeicherung.pas' {SpeicherungForm},
ComInfo in 'ComInfo.pas' {InfoForm},
LevInfo in 'LevInfo.pas' {InfoForm},
LevSource in 'LevSource.pas' {SourceForm},
LevOptions in 'LevOptions.pas' {LevelForm},
Global in 'Global.pas'{$IF CompilerVersion >= 23.0},
System.UITypes{$IFEND};
LevOptions in 'LevOptions.pas' {LevelForm};
 
{$R *.RES}
 
55,6 → 54,7
exit;
end;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TTextForm, TextForm);
Application.CreateForm(TSpeicherungForm, SpeicherungForm);
Application.CreateForm(TInfoForm, InfoForm);
Application.CreateForm(TSourceForm, SourceForm);