-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBackupsForm.dfm
109 lines (109 loc) · 2.32 KB
/
BackupsForm.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
99
100
101
102
103
104
105
106
107
108
109
object fBackupsForm: TfBackupsForm
Left = 265
Top = 132
BorderStyle = bsDialog
Caption = 'Backups'
ClientHeight = 446
ClientWidth = 984
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object lvBackups: TListView
Left = 8
Top = 8
Width = 969
Height = 385
Columns = <
item
Caption = 'File name'
Width = 200
end
item
Alignment = taRightJustify
Caption = 'File size'
Width = 160
end
item
Alignment = taRightJustify
Caption = 'Program version'
Width = 120
end
item
Alignment = taRightJustify
Caption = 'Time of saving'
Width = 140
end
item
Alignment = taRightJustify
Caption = 'Time of backup'
Width = 140
end
item
Alignment = taRightJustify
Caption = 'Flags'
Width = 180
end>
ColumnClick = False
GridLines = True
HideSelection = False
ReadOnly = True
RowSelect = True
PopupMenu = pmnBackups
TabOrder = 0
ViewStyle = vsReport
end
object leBackupFolder: TLabeledEdit
Left = 8
Top = 416
Width = 944
Height = 21
Color = clBtnFace
EditLabel.Width = 69
EditLabel.Height = 13
EditLabel.Caption = 'Backup folder:'
ReadOnly = True
TabOrder = 1
end
object btnOpenBckFolder: TButton
Left = 952
Top = 416
Width = 25
Height = 21
Hint = 'Open backup folder'
Caption = '>'
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnClick = btnOpenBckFolderClick
end
object pmnBackups: TPopupMenu
OnPopup = pmnBackupsPopup
Left = 8
object mniBU_Delete: TMenuItem
Caption = 'Delete this backup'
ShortCut = 46
OnClick = mniBU_DeleteClick
end
object mniBU_Restore: TMenuItem
Caption = 'Restore selected backup'
ShortCut = 16466
OnClick = mniBU_RestoreClick
end
object N1: TMenuItem
Caption = '-'
end
object mniBU_Backup: TMenuItem
Caption = 'Perform backup now'
ShortCut = 16450
OnClick = mniBU_BackupClick
end
end
end