package provide TasteConfig 0.1 lappend auto_path . namespace eval TasteConfig { variable config { \ "instanceSelectColor" "green" \ "logDirectory" "tmp/TASTE" \ "font" "Helvetica" \ "fontSize" "9" \ "functionLabelValidation" "1.3" \ "diagFont" "Helvetica" \ "diagFontSize" "9" \ "interlineInPercentOfFont" "1.2" \ "gitExe" "C:/Program Files/TortoiseGit/bin/git.exe" \ "asn2aadlPath" "asn2aadlPlus" \ "mscEditor" "taste-edit-msc" \ "mscCreator" "taste-create-msc" \ "check-deployment-target" "true" \ "function-has-changed" "false" \ } variable accelerators { \ "removeAccelerator" "Delete" \ "editAccelerator" "Control-e" \ "newAccelerator" "Control-n" \ "openAccelerator" "Control-o" \ "saveAccelerator" "Control-s" \ "quitAccelerator" "Control-q" \ "copyAccelerator" "Control-c" \ "pasteAccelerator" "Control-v" \ "cutAccelerator" "Control-x" \ "undoAccelerator" "Control-z" \ "redoAccelerator" "Control-y" \ "zoominAccelerator" "Control-plus" \ "zoomoutAccelerator" "Control-minus" \ "diagramUpAccelerator" "Control-Up" \ "diagramDownAccelerator" "Control-Down" \ "diagramLeftAccelerator" "Control-Left" \ "diagramRightAccelerator" "Control-Right" \ "selectionUpAccelerator" "Up" \ "selectionDownAccelerator" "Down" \ "selectionLeftAccelerator" "Left" \ "selectionRightAccelerator" "Right" \ } variable IVObjectsConfig { \ "Function" {"color" "gray50" "fillColor" "gold" "nonTerminalColor" "gray"} \ "ProvidedInterface" {"color" "#1560BD" "fillColor" "blue"} \ "RequiredInterface" {"color" "#1560BD" "fillColor" "blue"} \ "FeatureGroup" {"color" "#1560BD" "fillColor" "blue"} \ "RelationGroup" {"color" "#1560BD" "fillColor" "black"} \ "GenericConnection" {"color" "#1560BD" "fillColor" "black"} \ "Comment" {"color" "gray50" "fillColor" "white"} \ } variable IVConfig { \ "diagramWidth" "297000" \ "diagramHeight" "210000" \ "diagramXUnit" "2" \ "diagramYUnit" "2" \ "zoomoutBound" "false" \ "gridSnap" "true" \ "selectionColor" "green" \ "editableColor" "orange" \ "emptyPercent" "0.9" \ "removeDialogBox" "false" \ "selectionPrecision" "2" \ "minInterfaceSize" "2" \ "maxInterfaceSize" "40" \ "zoomLabel" "false" \ "editablePercent" "0.9" \ "hidePercent" "0.1" \ "hideTextPercent" "0.3" \ "hideLabelPercent1" "0.5" \ "hideLabelPercent2" "0.5" \ "delayMaskInformation" "100" \ "zoomFactor" "0.9" \ "instanceSelectColor" "red" \ "displayConnectionLabel" "false" \ "zoomDepth" "2" \ "svgComponentDepth" "2" \ } variable DVObjectsConfig { \ "ProcessorBoard" {"color" "black" "fillColor" "gray"} \ "Processor" {"color" "black" "fillColor" "yellow"} \ "Partition" {"color" "black" "fillColor" "yellow"} \ "Device" {"color" "black" "fillColor" "gray"} \ "Bus" {"color" "black" "fillColor" "gray"} \ "Driver" {"color" "black" "fillColor" "yellow"} \ "FunctionDV" {"color" "black" "fillColor" "yellow"} \ "ConnectionDV" {"color" "black" "fillColor" "yellow"} \ "Comment" {"color" "gray50" "fillColor" "white"} \ "BindList" {"color" "gray50" "fillColor" "white"} \ "GenericConnection" {"fillColor" "black"} \ "GenericConnector" {"fillColor" "black"} \ } variable DVConfig {\ "diagramWidth" "297000" \ "diagramHeight" "210000" \ "diagramXUnit" "2" \ "diagramYUnit" "2" \ "zoomoutBound" "false" \ "gridSnap" "false" \ "selectionColor" "green" \ "editableColor" "orange" \ "emptyPercent" "3.0" \ "removeDialogBox" "false" \ "selectionPrecision" "2" \ "minInterfaceSize" "2" \ "maxInterfaceSize" "40" \ "zoomLabel" "false" \ "editablePercent" "0.9" \ "hidePercent" "0.1" \ "hideTextPercent" "0.3" \ "hideLabelPercent1" "0.5" \ "hideLabelPercent2" "0.5" \ "delayMaskInformation" "300" \ "zoomFactor" "0.9" \ "instanceSelectColor" "red" \ "displayConnectionLabel" "false" \ "zoomDepth" "4" \ "svgComponentDepth" "3" \ } }