Added a common configuartion part for kite.conf (containing the layout)

This commit is contained in:
Jean-Paul Chaput 2014-05-26 14:22:19 +02:00
parent cd9d3fc4b6
commit db4c811d75
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# -*- Mode:Python; explicit-buffer-name: "kite.conf<common>" -*-
# Kite Layout.
layoutTable = \
( (TypeTab , "Kite", "kite" )
, (TypeTitle , "Katabatic - Routing Database" )
, (TypeOption , "katabatic.saturateRatio" , "Saturate Ratio (%)" , 0, 1 )
, (TypeOption , "katabatic.saturateRp" , "Saturate RoutingPad" , 0, 1 )
, (TypeOption , "katabatic.globalLengthThreshold", "Global Length Threshold", 0, 1 )
, (TypeOption , "katabatic.topRoutingLayer" , "Top Routing Layer" , 0, 1 )
, (TypeRule ,)
, (TypeTitle , "Kite - Detailed Router" )
, (TypeOption , "kite.hEdgeCapacity" , "Vert. Edge Capacity (%)", 0 )
, (TypeOption , "kite.vEdgeCapacity" , "Hor. Edge Capacity (%)" , 0 )
, (TypeOption , "kite.eventsLimit" , "Events Limit" , 0 )
, (TypeOption , "kite.ripupCost" , "Ripup Cost" , 1, 1, Cfg.ParameterWidgetFlags.UseSpinBox )
, (TypeSection, "Ripup Limits", 1 )
, (TypeOption , "kite.strapRipupLimit" , "Straps" , 1, 1, Cfg.ParameterWidgetFlags.UseSpinBox )
, (TypeOption , "kite.localRipupLimit" , "Locals" , 1, 1, Cfg.ParameterWidgetFlags.UseSpinBox )
, (TypeOption , "kite.globalRipupLimit" , "Globals" , 1, 1, Cfg.ParameterWidgetFlags.UseSpinBox )
, (TypeOption , "kite.longGlobalRipupLimit", "Long Globals", 1, 1, Cfg.ParameterWidgetFlags.UseSpinBox )
, (TypeRule ,)
)