Subversion Repositories pentevo

Rev

Rev 645 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
645 ddp 1
object Form1: TForm1
2
  Left = 306
3
  Height = 512
4
  Top = 107
5
  Width = 800
648 ddp 6
  Caption = 'ZX Evolution KeyMapper  (140425beta)'
645 ddp 7
  ClientHeight = 512
8
  ClientWidth = 800
9
  Constraints.MaxHeight = 1080
10
  Constraints.MaxWidth = 1920
11
  Constraints.MinHeight = 480
12
  Constraints.MinWidth = 640
13
  OnCreate = FormCreate
14
  OnMouseDown = FormMouseDown
15
  OnMouseUp = FormMouseUp
16
  OnPaint = FormPaint
17
  OnResize = FormResize
18
  Position = poScreenCenter
648 ddp 19
  LCLVersion = '1.2.0.3'
645 ddp 20
  object ButtonDef: TButton
21
    Left = 8
22
    Height = 25
23
    Top = 480
24
    Width = 72
25
    Anchors = [akLeft, akBottom]
26
    Caption = 'Default...'
27
    OnClick = ButtonDefClick
28
    TabOrder = 0
29
  end
30
  object ButtonOpen: TButton
31
    Left = 96
32
    Height = 25
33
    Top = 480
34
    Width = 88
35
    Anchors = [akLeft, akBottom]
36
    Caption = 'Open'
37
    OnClick = ButtonOpenClick
38
    TabOrder = 1
39
  end
40
  object ButtonSave: TButton
41
    Left = 200
42
    Height = 25
43
    Top = 480
44
    Width = 88
45
    Anchors = [akLeft, akBottom]
46
    Caption = 'Save'
47
    OnClick = ButtonSaveClick
48
    TabOrder = 2
49
  end
50
  object ButtonFWPath: TButton
51
    Left = 304
52
    Height = 25
53
    Top = 480
54
    Width = 104
55
    Anchors = [akLeft, akBottom]
56
    Caption = 'Firmware Path'
57
    OnClick = ButtonFWPathClick
58
    TabOrder = 3
59
  end
60
  object ButtonExit: TButton
61
    Left = 728
62
    Height = 25
63
    Top = 480
64
    Width = 64
65
    Anchors = [akRight, akBottom]
66
    Caption = 'Exit'
67
    OnClick = ButtonExitClick
68
    TabOrder = 4
69
  end
70
  object Bevel1: TBevel
71
    Left = 0
72
    Height = 2
73
    Top = 472
74
    Width = 800
75
    Anchors = [akLeft, akRight, akBottom]
76
    Shape = bsTopLine
77
  end
78
  object ButtonHelp: TButton
79
    Left = 424
80
    Height = 25
81
    Top = 480
82
    Width = 104
83
    Anchors = [akLeft, akBottom]
84
    Caption = 'Help / Settings'
85
    OnClick = ButtonHelpClick
86
    TabOrder = 5
87
  end
88
  object Bevel2: TBevel
89
    Left = 0
90
    Height = 2
91
    Top = 320
92
    Width = 800
93
    Anchors = [akLeft, akRight]
94
    Shape = bsTopLine
95
  end
96
  object OpenDialog1: TOpenDialog
97
    DefaultExt = '.bin'
98
    Filter = 'Binary (*.bin)|*.bin|All Files|*.*'
99
    InitialDir = '.'
100
    Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing, ofViewDetail]
101
    left = 536
102
    top = 480
103
  end
104
  object SaveDialog1: TSaveDialog
105
    DefaultExt = '.bin'
106
    Filter = 'Binary (*.bin)|*.bin|All Files|*.*'
107
    InitialDir = '.'
108
    Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing, ofViewDetail]
109
    left = 568
110
    top = 480
111
  end
112
end