Subversion Repositories spacemission

Rev

Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 daniel-mar 1
object MainForm: TMainForm
2
  Left = 268
3
  Top = 153
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  Caption = 'SpaceMission Levelconverter'
7
  ClientHeight = 201
8
  ClientWidth = 345
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
6 daniel-mar 12
  Font.Height = -11
3 daniel-mar 13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  OldCreateOrder = False
16
  Position = poDesktopCenter
17
  OnClose = FormClose
18
  OnCreate = FormCreate
6 daniel-mar 19
  PixelsPerInch = 96
3 daniel-mar 20
  TextHeight = 13
21
  object Bevel1: TBevel
22
    Left = 8
23
    Top = 136
24
    Width = 329
25
    Height = 2
26
    Shape = bsBottomLine
27
  end
28
  object Label1: TLabel
29
    Left = 8
30
    Top = 8
31
    Width = 301
32
    Height = 26
33
    Caption = 
34
      'Der SpaceMission Levelconverter wandelt die Levels Ihrer alten'#13#10 +
35
      'SpaceMission-Version in die aktuelle Version 1.0 / 1.1 um.'
36
    Transparent = True
37
  end
38
  object Label2: TLabel
39
    Left = 8
40
    Top = 184
41
    Width = 322
42
    Height = 13
43
    Caption = 
44
      'Die korrekte Umschreibung der Levels kann nicht garantiert werde' +
45
      'n!'
46
    Font.Charset = DEFAULT_CHARSET
47
    Font.Color = clMaroon
48
    Font.Height = -11
49
    Font.Name = 'MS Sans Serif'
50
    Font.Style = []
51
    ParentFont = False
52
  end
53
  object Run: TButton
54
    Left = 176
55
    Top = 96
56
    Width = 161
57
    Height = 25
58
    Caption = 'Converter starten'
59
    Default = True
60
    TabOrder = 0
61
    OnClick = RunClick
62
  end
63
  object Button1: TButton
64
    Left = 8
65
    Top = 152
66
    Width = 105
67
    Height = 25
68
    Caption = 'Eingabeordner'
69
    TabOrder = 1
70
    OnClick = Button1Click
71
  end
72
  object Button2: TButton
73
    Left = 120
74
    Top = 152
75
    Width = 105
76
    Height = 25
77
    Caption = 'Ausgabeordner'
78
    TabOrder = 2
79
    OnClick = Button2Click
80
  end
81
  object Button3: TButton
82
    Left = 232
83
    Top = 152
84
    Width = 105
85
    Height = 25
86
    Caption = 'Levelordner'
87
    TabOrder = 3
88
    OnClick = Button3Click
89
  end
90
  object comb: TComboBox
91
    Left = 8
92
    Top = 96
93
    Width = 161
94
    Height = 21
95
    Style = csDropDownList
6 daniel-mar 96
    ItemHeight = 13
3 daniel-mar 97
    TabOrder = 4
98
    Items.Strings = (
99
      'Version 0.2 --> Version 0.3'
100
      'Version 0.2 --> Version 0.4'
101
      'Version 0.3 --> Version 0.4'
102
      'Version 0.4 --> Version 1.0'
103
      'Version 0.2 --> Version 1.0'
104
      'Version 0.3 --> Version 1.0')
105
  end
106
  object gauge: TProgressBar
107
    Left = 8
108
    Top = 48
109
    Width = 329
110
    Height = 33
111
    Smooth = True
112
    TabOrder = 5
113
  end
114
end