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
|
object SVNUpdateFrm: TSVNUpdateFrm
Left = 375
Height = 300
Top = 199
Width = 640
Caption = 'SVNUpdateFrm'
ClientHeight = 300
ClientWidth = 640
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '1.1'
object SVNUpdateListView: TListView
Left = 6
Height = 241
Top = 6
Width = 628
Align = alClient
BorderSpacing.Around = 6
Columns = <
item
Width = 75
end
item
Width = 553
end>
PopupMenu = UpdatePopupMenu
RowSelect = True
ScrollBars = ssAutoBoth
SortType = stText
TabOrder = 0
ViewStyle = vsReport
end
object ButtonPanel: TButtonPanel
Left = 6
Height = 41
Top = 253
Width = 628
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
OKButton.OnClick = OKButtonClick
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
HelpButton.OnClick = ShowLogButtonClick
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 1
ShowButtons = [pbOK, pbHelp]
end
object UpdatePopupMenu: TPopupMenu
left = 40
top = 64
object mnuShowDiff: TMenuItem
Caption = 'New Item1'
OnClick = mnuShowDiffClick
end
end
end
|