Subversion Repositories spacemission

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 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
12
  Font.Height = -11
13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  OldCreateOrder = False
16
  Position = poMainFormCenter
17
  OnHide = FormHide
18
  OnShow = FormShow
19
  PixelsPerInch = 96
20
  TextHeight = 13
21
  object Label1: TLabel
22
    Left = 8
23
    Top = 8
24
    Width = 152
25
    Height = 13
26
    Caption = 'Bitte geben Sie einen Cheat ein!'
27
  end
28
  object Label3: TLabel
29
    Left = 200
30
    Top = 8
31
    Width = 106
32
    Height = 13
33
    Caption = 'Herausgeber anfragen'
34
    Font.Charset = DEFAULT_CHARSET
35
    Font.Color = clBlue
36
    Font.Height = -11
37
    Font.Name = 'MS Sans Serif'
38
    Font.Style = [fsUnderline]
39
    ParentFont = False
40
    OnClick = Label3Click
41
  end
42
  object CheatEdit: TEdit
43
    Left = 8
44
    Top = 32
45
    Width = 297
46
    Height = 21
47
    Cursor = crIBeam
48
    Ctl3D = True
49
    ParentCtl3D = False
50
    PasswordChar = '*'
51
    TabOrder = 0
52
    OnKeyPress = CheatEditKeyPress
53
  end
54
  object OKBtn: TButton
55
    Left = 192
56
    Top = 200
57
    Width = 115
58
    Height = 25
59
    Caption = 'OK'
60
    TabOrder = 1
61
    OnClick = OKBtnClick
62
  end
63
  object AbbBtn: TButton
64
    Left = 8
65
    Top = 200
66
    Width = 113
67
    Height = 25
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
      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