Subversion Repositories spacemission

Rev

Rev 79 | 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
79 daniel-mar 38
    Visible = False
3 daniel-mar 39
    OnClick = Label3Click
40
  end
41
  object CheatEdit: TEdit
42
    Left = 8
43
    Top = 32
44
    Width = 297
45
    Height = 21
46
    Cursor = crIBeam
47
    Ctl3D = True
48
    ParentCtl3D = False
49
    PasswordChar = '*'
50
    TabOrder = 0
51
    OnKeyPress = CheatEditKeyPress
52
  end
53
  object OKBtn: TButton
54
    Left = 192
55
    Top = 200
56
    Width = 115
57
    Height = 25
58
    Caption = 'OK'
37 daniel-mar 59
    Default = True
3 daniel-mar 60
    TabOrder = 1
61
    OnClick = OKBtnClick
62
  end
63
  object AbbBtn: TButton
64
    Left = 8
65
    Top = 200
66
    Width = 113
67
    Height = 25
37 daniel-mar 68
    Cancel = True
3 daniel-mar 69
    Caption = 'Abbrechen'
70
    TabOrder = 2
71
    OnClick = AbbBtnClick
72
  end
73
  object GroupBox1: TGroupBox
74
    Left = 8
75
    Top = 64
76
    Width = 297
77
    Height = 129
78
    Caption = 'Aktivierte Cheats'
79
    TabOrder = 3
80
    object Label2: TLabel
81
      Left = 8
82
      Top = 104
89 daniel-mar 83
      Width = 89
3 daniel-mar 84
      Height = 13
85
      Cursor = crHandPoint
89 daniel-mar 86
      Caption = 'Cheat deaktivieren'
3 daniel-mar 87
      Font.Charset = DEFAULT_CHARSET
88
      Font.Color = clBlue
89
      Font.Height = -11
90
      Font.Name = 'MS Sans Serif'
91
      Font.Style = [fsUnderline]
92
      ParentFont = False
93
      OnClick = Label2Click
94
    end
95
    object CheatBox: TListBox
96
      Left = 8
97
      Top = 24
98
      Width = 281
99
      Height = 73
100
      ItemHeight = 13
101
      TabOrder = 0
102
    end
103
  end
104
end