-
Notifications
You must be signed in to change notification settings - Fork 38
/
udisplaygrid.lfm
executable file
·102 lines (102 loc) · 3.38 KB
/
udisplaygrid.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
object frmDisplayGrid1: TfrmDisplayGrid1
Left = 478
Height = 561
Top = 369
Width = 1010
Caption = 'QuickHash-GUI - Copy Results'
ClientHeight = 561
ClientWidth = 1010
OnClose = FormClose
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.2.4.0'
object btnClipboardResultsCOPYTAB: TButton
Left = 280
Height = 25
Hint = 'Click to have the display grid content copied '#13#10'to clipboard. To have ENTIRE grid copied, '#13#10'ensure top left cell is selected using mouse. '#13#10'Otherwise it copies from active position in the grid. '
Top = 514
Width = 80
Anchors = [akLeft, akBottom]
Caption = 'Clipboard'
Enabled = False
OnClick = btnClipboardResultsCOPYTABClick
TabOrder = 0
end
object DBGrid_COPY: TDBGrid
Left = 16
Height = 466
Top = 24
Width = 971
Anchors = [akTop, akLeft, akRight, akBottom]
Color = clWindow
Columns = <>
DataSource = frmSQLiteDBases.DataSource2
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgAlwaysShowSelection, dgConfirmDelete, dgCancelOnExit]
PopupMenu = frmDisplayGridPopupMenu
TabOrder = 1
end
object CopyTabDBNavigator: TDBNavigator
Left = 16
Height = 25
Top = 514
Width = 241
Anchors = [akLeft, akBottom]
BevelOuter = bvNone
ChildSizing.EnlargeHorizontal = crsScaleChilds
ChildSizing.EnlargeVertical = crsScaleChilds
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 100
ClientHeight = 25
ClientWidth = 241
DataSource = frmSQLiteDBases.DataSource2
Options = []
TabOrder = 2
VisibleButtons = [nbFirst, nbPrior, nbNext, nbLast]
end
object frmDisplayGridPopupMenu: TPopupMenu
Left = 400
Top = 344
object MenuItem_SortBySourceNameCOPYGRID: TMenuItem
Caption = 'Sort by Source FileName'
OnClick = MenuItem_SortBySourceNameCOPYGRIDClick
end
object MenuItem_SortByDestinationNameCOPYGRID: TMenuItem
Caption = 'Sort by Destination FileName'
OnClick = MenuItem_SortByDestinationNameCOPYGRIDClick
end
object MenuItem_SortBySourceHashCOPYGRID: TMenuItem
Caption = 'Sort by Source Hash'
OnClick = MenuItem_SortBySourceHashCOPYGRIDClick
end
object MenuItem_SortByDestinationHashCOPYGRID: TMenuItem
Caption = 'Sort by Destination Hash'
OnClick = MenuItem_SortByDestinationHashCOPYGRIDClick
end
object MenuItem_CopySelectedRowCOPYGRID: TMenuItem
Caption = 'Copy selected row'
OnClick = MenuItem_CopySelectedRowCOPYGRIDClick
end
object MenuItem_ShowAllCOPYGRID: TMenuItem
Caption = 'Show All'
OnClick = MenuItem_ShowAllCOPYGRIDClick
end
object MenuItem_SaveDBToHTML: TMenuItem
Caption = 'Save to HTML file...'
OnClick = MenuItem_SaveDBToHTMLClick
end
object MenuItem_SaveDBToCSV: TMenuItem
Caption = 'Save to CSV File...'
OnClick = MenuItem_SaveDBToCSVClick
end
object MenuItem_CopyToClipboard: TMenuItem
Caption = 'Copy Grid to Clipboard'
OnClick = MenuItem_CopyToClipboardClick
end
end
object frmDisplayGridSaveDialog1: TSaveDialog
Left = 616
Top = 376
end
end