From db4c811d75cc70f2a168f80109a9915776ed2f07 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Mon, 26 May 2014 14:22:19 +0200 Subject: [PATCH] Added a common configuartion part for kite.conf (containing the layout) --- crlcore/etc/common/kite.conf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 crlcore/etc/common/kite.conf diff --git a/crlcore/etc/common/kite.conf b/crlcore/etc/common/kite.conf new file mode 100644 index 00000000..8dfac323 --- /dev/null +++ b/crlcore/etc/common/kite.conf @@ -0,0 +1,23 @@ +# -*- Mode:Python; explicit-buffer-name: "kite.conf" -*- + +# 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 ,) + )