Subversion Repositories spacemission

Rev

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