Subversion Repositories spacemission

Rev

Rev 84 | 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
29 daniel-mar 4
  BorderStyle = bsDialog
1 daniel-mar 5
  Caption = 'Levels'
40 daniel-mar 6
  ClientHeight = 424
7
  ClientWidth = 447
1 daniel-mar 8
  Color = clBtnFace
9
  Font.Charset = DEFAULT_CHARSET
10
  Font.Color = clWindowText
6 daniel-mar 11
  Font.Height = -11
1 daniel-mar 12
  Font.Name = 'MS Sans Serif'
13
  Font.Style = []
14
  Position = poMainFormCenter
40 daniel-mar 15
  OnCreate = FormCreate
1 daniel-mar 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
40 daniel-mar 29
    Width = 34
1 daniel-mar 30
    Height = 13
40 daniel-mar 31
    Caption = 'Levels:'
1 daniel-mar 32
  end
33
  object Label3: TLabel
34
    Left = 8
35
    Top = 336
40 daniel-mar 36
    Width = 67
1 daniel-mar 37
    Height = 13
40 daniel-mar 38
    Caption = 'Informationen:'
1 daniel-mar 39
  end
40
  object Label1: TLabel
41
    Left = 8
42
    Top = 20
40 daniel-mar 43
    Width = 55
1 daniel-mar 44
    Height = 13
40 daniel-mar 45
    Caption = 'Levelname:'
1 daniel-mar 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
40 daniel-mar 87
    Top = 391
1 daniel-mar 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
  end
106
  object ElPanel1: TPanel
107
    Left = 112
108
    Top = 336
109
    Width = 201
40 daniel-mar 110
    Height = 80
1 daniel-mar 111
    BevelOuter = bvLowered
112
    Color = clWindow
113
    TabOrder = 6
114
    object li3a: TLabel
115
      Left = 8
116
      Top = 40
117
      Width = 32
118
      Height = 13
119
      Caption = 'Gr'#246#223'e:'
120
    end
121
    object li1b: TLabel
122
      Left = 96
123
      Top = 8
124
      Width = 17
125
      Height = 13
126
      Caption = 'n/a'
127
    end
128
    object li1a: TLabel
129
      Left = 8
130
      Top = 8
131
      Width = 47
132
      Height = 13
133
      Caption = 'Einheiten:'
134
    end
135
    object li2b: TLabel
136
      Left = 96
137
      Top = 24
138
      Width = 17
139
      Height = 13
140
      Caption = 'n/a'
141
    end
142
    object li2a: TLabel
143
      Left = 8
144
      Top = 24
145
      Width = 26
146
      Height = 13
147
      Caption = 'Boss:'
148
    end
149
    object li3b: TLabel
150
      Left = 96
151
      Top = 40
152
      Width = 17
153
      Height = 13
154
      Caption = 'n/a'
155
    end
156
    object liu: TLabel
157
      Left = 8
158
      Top = 8
159
      Width = 135
160
      Height = 13
161
      Caption = 'Das Level ist nicht einlesbar!'
162
      Font.Charset = DEFAULT_CHARSET
163
      Font.Color = clMaroon
164
      Font.Height = -11
165
      Font.Name = 'MS Sans Serif'
166
      Font.Style = []
167
      ParentFont = False
168
      Visible = False
169
    end
170
    object liw: TLabel
171
      Left = 8
172
      Top = 8
85 daniel-mar 173
      Width = 125
1 daniel-mar 174
      Height = 13
84 daniel-mar 175
      Caption = 'Bitte w'#228'hlen Sie ein Level.'
1 daniel-mar 176
      Font.Charset = DEFAULT_CHARSET
177
      Font.Color = clNavy
178
      Font.Height = -11
179
      Font.Name = 'MS Sans Serif'
180
      Font.Style = []
181
      ParentFont = False
182
      Visible = False
183
    end
43 daniel-mar 184
    object li4: TLabel
185
      Left = 8
186
      Top = 56
187
      Width = 118
188
      Height = 13
189
      Caption = 'Name / Autor unbekannt'
190
    end
1 daniel-mar 191
  end
24 daniel-mar 192
  object LevelNumber: TSpinEdit
1 daniel-mar 193
    Left = 112
30 daniel-mar 194
    Top = 16
24 daniel-mar 195
    Width = 201
196
    Height = 22
40 daniel-mar 197
    MaxValue = 0
198
    MinValue = 0
1 daniel-mar 199
    TabOrder = 7
40 daniel-mar 200
    Value = 0
1 daniel-mar 201
  end
202
end