Subversion Repositories spacemission

Rev

Rev 3 | Rev 28 | 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
  OldCreateOrder = False
16
  Position = poMainFormCenter
17
  OnHide = FormHide
18
  OnShow = FormShow
6 daniel-mar 19
  PixelsPerInch = 96
3 daniel-mar 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
    Cursor = crHandPoint
34
    Caption = 'Herausgeber anfragen'
35
    Font.Charset = DEFAULT_CHARSET
36
    Font.Color = clBlue
37
    Font.Height = -11
38
    Font.Name = 'MS Sans Serif'
39
    Font.Style = [fsUnderline]
40
    ParentFont = False
41
    OnClick = Label3Click
42
  end
43
  object CheatEdit: TEdit
44
    Left = 8
45
    Top = 32
46
    Width = 297
47
    Height = 21
48
    Cursor = crIBeam
49
    Ctl3D = True
50
    ParentCtl3D = False
51
    PasswordChar = '*'
52
    TabOrder = 0
53
    OnKeyPress = CheatEditKeyPress
54
  end
55
  object OKBtn: TButton
56
    Left = 192
57
    Top = 200
58
    Width = 115
59
    Height = 25
60
    Caption = 'OK'
61
    TabOrder = 1
62
    OnClick = OKBtnClick
63
  end
64
  object AbbBtn: TButton
65
    Left = 8
66
    Top = 200
67
    Width = 113
68
    Height = 25
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
83
      Width = 83
84
      Height = 13
85
      Cursor = crHandPoint
86
      Caption = 'Cheat deaktiviren'
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