-
Notifications
You must be signed in to change notification settings - Fork 2
/
unitframebreakpoints.lfm
51 lines (51 loc) · 1.23 KB
/
unitframebreakpoints.lfm
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
object FrameBreakpoints: TFrameBreakpoints
Left = 0
Height = 320
Top = 0
Width = 367
ClientHeight = 320
ClientWidth = 367
TabOrder = 0
DesignLeft = 247
DesignTop = 167
object Panel1: TPanel
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Owner
AnchorSideBottom.Side = asrBottom
Left = 0
Height = 320
Top = 0
Width = 367
Anchors = [akTop, akLeft, akRight, akBottom]
BevelOuter = bvNone
Caption = 'Panel1'
TabOrder = 0
end
object ActionListEditBreakpoints: TActionList
Left = 240
Top = 80
object ActionAdd: TAction
Caption = 'Add'
Hint = 'Add new breakpoint'
OnExecute = ActionAddExecute
end
object ActionRemove: TAction
Caption = 'Remove'
Hint = 'Remove selected breakpoint'
OnExecute = ActionRemoveExecute
end
object ActionRemoveAll: TAction
Caption = 'Remove all'
Hint = 'Remove all breakpoints'
OnExecute = ActionRemoveAllExecute
end
object ActionEdit: TAction
Caption = 'Edit'
Hint = 'Edit selected breakpoint'
OnExecute = ActionEditExecute
end
end
end