Subversion Repositories spacemission

Rev

Rev 6 | Rev 24 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
object SpeicherungForm: TSpeicherungForm
2
  Left = 281
3
  Top = 153
4
  BorderIcons = [biSystemMenu]
5
  BorderStyle = bsSingle
6
  Caption = 'Levels'
15 daniel-mar 7
  ClientHeight = 408
8
  ClientWidth = 445
1 daniel-mar 9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
6 daniel-mar 12
  Font.Height = -11
1 daniel-mar 13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  Position = poMainFormCenter
16
  OnHide = FormHide
17
  OnShow = FormShow
18
  TextHeight = 13
19
  object Bevel1: TBevel
20
    Left = 8
21
    Top = 56
22
    Width = 433
23
    Height = 2
24
    Shape = bsBottomLine
25
  end
26
  object Label2: TLabel
27
    Left = 8
28
    Top = 72
29
    Width = 58
30
    Height = 13
31
    Caption = 'Spielst'#228'nde:'
32
  end
33
  object Label3: TLabel
34
    Left = 8
35
    Top = 336
36
    Width = 92
37
    Height = 13
38
    Caption = 'Levelinformationen:'
39
  end
40
  object Label1: TLabel
41
    Left = 8
42
    Top = 20
43
    Width = 78
44
    Height = 13
45
    Caption = 'Spielstandname:'
46
  end
47
  object LadenBtn: TButton
48
    Left = 336
49
    Top = 72
50
    Width = 105
51
    Height = 25
52
    Caption = '&Laden'
53
    Enabled = False
54
    TabOrder = 0
55
    OnClick = LadenBtnClick
56
  end
57
  object LoeschenBtn: TButton
58
    Left = 336
59
    Top = 104
60
    Width = 105
61
    Height = 25
62
    Caption = 'L'#246'&schen'
63
    Enabled = False
64
    TabOrder = 1
65
    OnClick = LoeschenBtnClick
66
  end
67
  object AktualisierenBtn: TButton
68
    Left = 336
69
    Top = 144
70
    Width = 105
71
    Height = 25
72
    Caption = '&Aktualisieren'
73
    TabOrder = 2
74
    OnClick = DsFancyButton2Click
75
  end
76
  object SpeichernBtn: TButton
77
    Left = 336
78
    Top = 16
79
    Width = 105
80
    Height = 25
81
    Caption = '&Speichern'
82
    TabOrder = 3
83
    OnClick = SpeichernBtnClick
84
  end
85
  object AbbrechenBtn: TButton
86
    Left = 336
87
    Top = 376
88
    Width = 105
89
    Height = 25
90
    Cancel = True
91
    Caption = 'Schli&e'#223'en'
92
    Default = True
93
    ModalResult = 1
94
    TabOrder = 4
95
    OnClick = AbbrechenBtnClick
96
  end
97
  object LevelListBox: TListBox
98
    Left = 112
99
    Top = 72
100
    Width = 201
101
    Height = 249
102
    ItemHeight = 13
103
    TabOrder = 5
104
    OnClick = LevelListBoxClick
105
    OnDblClick = LevelListBoxDblClick
106
  end
107
  object ElPanel1: TPanel
108
    Left = 112
109
    Top = 336
110
    Width = 201
111
    Height = 65
112
    BevelOuter = bvLowered
113
    Color = clWindow
114
    TabOrder = 6
115
    object li3a: TLabel
116
      Left = 8
117
      Top = 40
118
      Width = 32
119
      Height = 13
120
      Caption = 'Gr'#246#223'e:'
121
    end
122
    object li1b: TLabel
123
      Left = 96
124
      Top = 8
125
      Width = 17
126
      Height = 13
127
      Caption = 'n/a'
128
    end
129
    object li1a: TLabel
130
      Left = 8
131
      Top = 8
132
      Width = 47
133
      Height = 13
134
      Caption = 'Einheiten:'
135
    end
136
    object li2b: TLabel
137
      Left = 96
138
      Top = 24
139
      Width = 17
140
      Height = 13
141
      Caption = 'n/a'
142
    end
143
    object li2a: TLabel
144
      Left = 8
145
      Top = 24
146
      Width = 26
147
      Height = 13
148
      Caption = 'Boss:'
149
    end
150
    object li3b: TLabel
151
      Left = 96
152
      Top = 40
153
      Width = 17
154
      Height = 13
155
      Caption = 'n/a'
156
    end
157
    object liu: TLabel
158
      Left = 8
159
      Top = 8
160
      Width = 135
161
      Height = 13
162
      Caption = 'Das Level ist nicht einlesbar!'
163
      Font.Charset = DEFAULT_CHARSET
164
      Font.Color = clMaroon
165
      Font.Height = -11
166
      Font.Name = 'MS Sans Serif'
167
      Font.Style = []
168
      ParentFont = False
169
      Visible = False
170
    end
171
    object liw: TLabel
172
      Left = 8
173
      Top = 8
174
      Width = 104
175
      Height = 13
176
      Caption = 'W'#228'hlen Sie ein Level.'
177
      Font.Charset = DEFAULT_CHARSET
178
      Font.Color = clNavy
179
      Font.Height = -11
180
      Font.Name = 'MS Sans Serif'
181
      Font.Style = []
182
      ParentFont = False
183
      Visible = False
184
    end
185
  end
186
  object SpinEditEdt: TEdit
187
    Left = 112
188
    Top = 20
189
    Width = 185
190
    Height = 21
191
    MaxLength = 4
192
    TabOrder = 7
193
    Text = '1'
194
    OnChange = SpinEditEdtChange
195
    OnKeyPress = SpinEditEdtKeyPress
196
  end
197
  object SpinEdit: TUpDown
198
    Left = 296
199
    Top = 22
200
    Width = 17
201
    Height = 19
202
    Min = 1
203
    Max = 9999
204
    Position = 1
205
    TabOrder = 8
206
    OnClick = SpinEditClick
207
  end
208
end