Subversion Repositories spacemission

Rev

Rev 6 | Rev 29 | 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
4
  BorderIcons = [biSystemMenu]
5
  BorderStyle = bsSingle
6
  Caption = 'Cheatverwaltung'
7
  ClientHeight = 233
8
  ClientWidth = 313
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
6 daniel-mar 12
  Font.Height = -11
3 daniel-mar 13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  Position = poMainFormCenter
16
  OnHide = FormHide
17
  OnShow = FormShow
18
  TextHeight = 13
19
  object Label1: TLabel
20
    Left = 8
21
    Top = 8
22
    Width = 152
23
    Height = 13
24
    Caption = 'Bitte geben Sie einen Cheat ein!'
25
  end
26
  object Label3: TLabel
27
    Left = 200
28
    Top = 8
29
    Width = 106
30
    Height = 13
31
    Cursor = crHandPoint
32
    Caption = 'Herausgeber anfragen'
33
    Font.Charset = DEFAULT_CHARSET
34
    Font.Color = clBlue
35
    Font.Height = -11
36
    Font.Name = 'MS Sans Serif'
37
    Font.Style = [fsUnderline]
38
    ParentFont = False
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'
59
    TabOrder = 1
60
    OnClick = OKBtnClick
61
  end
62
  object AbbBtn: TButton
63
    Left = 8
64
    Top = 200
65
    Width = 113
66
    Height = 25
67
    Caption = 'Abbrechen'
68
    TabOrder = 2
69
    OnClick = AbbBtnClick
70
  end
71
  object GroupBox1: TGroupBox
72
    Left = 8
73
    Top = 64
74
    Width = 297
75
    Height = 129
76
    Caption = 'Aktivierte Cheats'
77
    TabOrder = 3
78
    object Label2: TLabel
79
      Left = 8
80
      Top = 104
81
      Width = 83
82
      Height = 13
83
      Cursor = crHandPoint
84
      Caption = 'Cheat deaktiviren'
85
      Font.Charset = DEFAULT_CHARSET
86
      Font.Color = clBlue
87
      Font.Height = -11
88
      Font.Name = 'MS Sans Serif'
89
      Font.Style = [fsUnderline]
90
      ParentFont = False
91
      OnClick = Label2Click
92
    end
93
    object CheatBox: TListBox
94
      Left = 8
95
      Top = 24
96
      Width = 281
97
      Height = 73
98
      ItemHeight = 13
99
      TabOrder = 0
100
    end
101
  end
102
end