mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-15 19:59:02 +00:00
729db49183
--HG-- branch : xibless rename : cocoa/pe/DetailsPanel.h => cocoa/pe/DetailsPanelPE.h rename : cocoa/pe/DetailsPanel.m => cocoa/pe/DetailsPanelPE.m
35 lines
980 B
Python
35 lines
980 B
Python
ownerclass = 'DetailsPanel'
|
|
ownerimport = 'DetailsPanel.h'
|
|
|
|
result = Panel(451, 146, "Details of Selected File")
|
|
table = TableView(result)
|
|
|
|
owner.detailsTable = table
|
|
|
|
result.style = PanelStyle.Utility
|
|
result.xProportion = 0.2
|
|
result.yProportion = 0.4
|
|
result.canMinimize = False
|
|
result.autosaveName = 'DetailsPanel'
|
|
result.minSize = Size(result.width, result.height)
|
|
|
|
table.dataSource = owner
|
|
table.allowsColumnReordering = False
|
|
table.allowsColumnSelection = False
|
|
table.allowsMultipleSelection = False
|
|
table.font = Font(FontFamily.System, FontSize.SmallSystem)
|
|
table.rowHeight = 14
|
|
table.editable = False
|
|
col = table.addColumn('0', "Attribute", 70)
|
|
col.autoResizable = True
|
|
col = table.addColumn('1', "Selected", 198)
|
|
col.autoResizable = True
|
|
col = table.addColumn('2', "Reference", 172)
|
|
col.autoResizable = True
|
|
|
|
result.ignoreMargin = True
|
|
table.packToCorner(Pack.UpperLeft)
|
|
table.fill(Pack.Right)
|
|
table.fill(Pack.Below)
|
|
table.setAnchor(Pack.UpperLeft, growX=True, growY=True)
|