forked from alexgoussev/TrackProcessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProfiles.dfm
98 lines (98 loc) · 2.14 KB
/
Profiles.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
object Profile: TProfile
Left = 210
Top = 0
Caption = 'Profiles'
ClientHeight = 562
ClientWidth = 784
Color = clBtnFace
Constraints.MinHeight = 480
Constraints.MinWidth = 640
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsStayOnTop
OldCreateOrder = False
PopupMenu = PopupMenu
Position = poMainFormCenter
OnResize = FormResize
PixelsPerInch = 96
TextHeight = 13
object AltPanel: TPanel
Left = 0
Top = 0
Width = 784
Height = 286
Align = alTop
BevelOuter = bvLowered
TabOrder = 0
object AltImage: TPaintBox
Left = 1
Top = 1
Width = 782
Height = 284
Align = alClient
OnPaint = AltImagePaint
ExplicitWidth = 790
end
end
object SpdPanel: TPanel
Left = 0
Top = 286
Width = 784
Height = 286
Align = alTop
BevelOuter = bvLowered
TabOrder = 1
object SpdImage: TPaintBox
Left = 1
Top = 1
Width = 782
Height = 284
Align = alClient
OnPaint = SpdImagePaint
ExplicitWidth = 790
end
end
object PopupMenu: TPopupMenu
Left = 752
Top = 528
object SaveAltitudeProfile1: TMenuItem
Action = SaveAltAction
end
object SaveSpeedProfile1: TMenuItem
Action = SaveSpdAction
end
object SaveBothProfiles1: TMenuItem
Action = SaveBothAction
end
end
object ActionList: TActionList
Left = 720
Top = 528
object SaveAltAction: TAction
Caption = 'Save Altitude Profile'
OnExecute = SaveAltActionExecute
OnUpdate = SaveAltActionUpdate
end
object SaveSpdAction: TAction
Caption = 'Save Speed Profile'
OnExecute = SaveSpdActionExecute
OnUpdate = SaveSpdActionUpdate
end
object SaveBothAction: TAction
Caption = 'Save Both Profiles'
OnExecute = SaveBothActionExecute
OnUpdate = SaveBothActionUpdate
end
end
object SaveProfile: TSavePictureDialog
DefaultExt = 'gif'
Filter = 'GIF Image File|*.gif'
FilterIndex = 0
Title = 'Save Profile Image'
Left = 688
Top = 528
end
end