Subversion Repositories spacemission

Rev

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

Rev Author Line No. Line
3 daniel-mar 1
object CheatForm: TCheatForm
2
  Left = 275
3
  Top = 165
29 daniel-mar 4
  BorderStyle = bsDialog
3 daniel-mar 5
  Caption = 'Cheatverwaltung'
6
  ClientHeight = 233
7
  ClientWidth = 313
8
  Color = clBtnFace
9
  Font.Charset = DEFAULT_CHARSET
10
  Font.Color = clWindowText
6 daniel-mar 11
  Font.Height = -11
3 daniel-mar 12
  Font.Name = 'MS Sans Serif'
13
  Font.Style = []
14
  Position = poMainFormCenter
15
  OnHide = FormHide
16
  OnShow = FormShow
17
  TextHeight = 13
18
  object Label1: TLabel
19
    Left = 8
20
    Top = 8
21
    Width = 152
22
    Height = 13
23
    Caption = 'Bitte geben Sie einen Cheat ein!'
24
  end
25
  object Label3: TLabel
26
    Left = 200
27
    Top = 8
28
    Width = 106
29
    Height = 13
30
    Cursor = crHandPoint
31
    Caption = 'Herausgeber anfragen'
32
    Font.Charset = DEFAULT_CHARSET
33
    Font.Color = clBlue
34
    Font.Height = -11
35
    Font.Name = 'MS Sans Serif'
36
    Font.Style = [fsUnderline]
37
    ParentFont = False
38
    OnClick = Label3Click
39
  end
40
  object CheatEdit: TEdit
41
    Left = 8
42
    Top = 32
43
    Width = 297
44
    Height = 21
45
    Cursor = crIBeam
46
    Ctl3D = True
47
    ParentCtl3D = False
48
    PasswordChar = '*'
49
    TabOrder = 0
50
    OnKeyPress = CheatEditKeyPress
51
  end
52
  object OKBtn: TButton
53
    Left = 192
54
    Top = 200
55
    Width = 115
56
    Height = 25
57
    Caption = 'OK'
37 daniel-mar 58
    Default = True
3 daniel-mar 59
    TabOrder = 1
60
    OnClick = OKBtnClick
61
  end
62
  object AbbBtn: TButton
63
    Left = 8
64
    Top = 200
65
    Width = 113
66
    Height = 25
37 daniel-mar 67
    Cancel = True
3 daniel-mar 68
    Caption = 'Abbrechen'
69
    TabOrder = 2
70
    OnClick = AbbBtnClick
71
  end
72
  object GroupBox1: TGroupBox
73
    Left = 8
74
    Top = 64
75
    Width = 297
76
    Height = 129
77
    Caption = 'Aktivierte Cheats'
78
    TabOrder = 3
79
    object Label2: TLabel
80
      Left = 8
81
      Top = 104
82
      Width = 83
83
      Height = 13
84
      Cursor = crHandPoint
85
      Caption = 'Cheat deaktiviren'
86
      Font.Charset = DEFAULT_CHARSET
87
      Font.Color = clBlue
88
      Font.Height = -11
89
      Font.Name = 'MS Sans Serif'
90
      Font.Style = [fsUnderline]
91
      ParentFont = False
92
      OnClick = Label2Click
93
    end
94
    object CheatBox: TListBox
95
      Left = 8
96
      Top = 24
97
      Width = 281
98
      Height = 73
99
      ItemHeight = 13
100
      TabOrder = 0
101
    end
102
  end
103
end