forked from Alexey-T/CudaText
-
Notifications
You must be signed in to change notification settings - Fork 0
/
formsavetabs.lfm
105 lines (105 loc) · 2.4 KB
/
formsavetabs.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
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
99
100
101
102
103
104
105
object fmSaveTabs: TfmSaveTabs
Left = 437
Height = 350
Top = 232
Width = 720
ActiveControl = btnSave
BorderIcons = [biSystemMenu, biMaximize]
Caption = 'Save tabs?'
ClientHeight = 350
ClientWidth = 720
Constraints.MinHeight = 150
Constraints.MinWidth = 300
KeyPreview = True
OnClose = FormClose
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
Position = poScreenCenter
ShowInTaskBar = stNever
LCLVersion = '2.1.0.0'
object List: TCheckListBox
Left = 6
Height = 303
Top = 6
Width = 708
Align = alClient
BorderSpacing.Left = 6
BorderSpacing.Top = 6
BorderSpacing.Right = 6
ItemHeight = 0
TabOrder = 0
TopIndex = -1
end
object Panel1: TATPanelSimple
Left = 0
Height = 41
Top = 309
Width = 720
Align = alBottom
AutoSize = True
object btnSave: TButton
AnchorSideTop.Control = btnDontSave
AnchorSideRight.Control = btnDontSaveKeep
Left = 230
Height = 29
Top = 6
Width = 90
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 6
Caption = '&Save'
Constraints.MinWidth = 90
Default = True
ModalResult = 1
TabOrder = 0
end
object btnDontSave: TButton
AnchorSideTop.Control = btnCancel
AnchorSideRight.Control = btnCancel
Left = 528
Height = 29
Top = 6
Width = 90
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 6
Caption = 'Do&n''t save'
Constraints.MinWidth = 90
ModalResult = 9
TabOrder = 2
end
object btnCancel: TButton
AnchorSideTop.Control = Panel1
AnchorSideRight.Control = Panel1
AnchorSideRight.Side = asrBottom
Left = 624
Height = 29
Top = 6
Width = 90
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Around = 6
Cancel = True
Caption = '&Cancel'
Constraints.MinWidth = 90
ModalResult = 2
TabOrder = 3
end
object btnDontSaveKeep: TButton
AnchorSideTop.Control = btnCancel
AnchorSideRight.Control = btnDontSave
Left = 326
Height = 29
Top = 6
Width = 196
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Right = 6
Caption = 'Don''&t save / Keep in session'
Constraints.MinWidth = 90
ModalResult = 11
TabOrder = 1
end
end
end