Subversion Repositories spacemission

Rev

Rev 28 | Rev 37 | 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'
58
    TabOrder = 1
59
    OnClick = OKBtnClick
60
  end
61
  object AbbBtn: TButton
62
    Left = 8
63
    Top = 200
64
    Width = 113
65
    Height = 25
66
    Caption = 'Abbrechen'
67
    TabOrder = 2
68
    OnClick = AbbBtnClick
69
  end
70
  object GroupBox1: TGroupBox
71
    Left = 8
72
    Top = 64
73
    Width = 297
74
    Height = 129
75
    Caption = 'Aktivierte Cheats'
76
    TabOrder = 3
77
    object Label2: TLabel
78
      Left = 8
79
      Top = 104
80
      Width = 83
81
      Height = 13
82
      Cursor = crHandPoint
83
      Caption = 'Cheat deaktiviren'
84
      Font.Charset = DEFAULT_CHARSET
85
      Font.Color = clBlue
86
      Font.Height = -11
87
      Font.Name = 'MS Sans Serif'
88
      Font.Style = [fsUnderline]
89
      ParentFont = False
90
      OnClick = Label2Click
91
    end
92
    object CheatBox: TListBox
93
      Left = 8
94
      Top = 24
95
      Width = 281
96
      Height = 73
97
      ItemHeight = 13
98
      TabOrder = 0
99
    end
100
  end
101
end