// =========================================================================== // Copyright 2018 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // agreement provided at the time of installation or download, or which // otherwise accompanies this software in either electronic or hard copy form. // =========================================================================== // // // Creation Date: March 17, 1997 // // Description: // This script defines the elements for the scaleKey context tool // property sheet. // // Input Arguments: // None. // // Return Value: // None. // global proc scaleKeyProperties () { string $parent = `toolPropertyWindow -query -location`; setParent $parent; setUITemplate -pushTemplate OptionsTemplate; columnLayout scaleKey; frameLayout -collapsable true -collapse false -label (uiRes("m_scaleKeyProperties.kScaleKeySettings")) scaleKeyFrame; columnLayout scaleKeyOptions; separator -style "none"; radioButtonGrp -numberOfRadioButtons 2 -label (uiRes("m_scaleKeyProperties.kType")) -label1 (uiRes("m_scaleKeyProperties.kManipulator")) -label2 (uiRes("m_scaleKeyProperties.kGestural")) scaleKeyOption; checkBoxGrp -numberOfCheckBoxes 1 -label "" -label1 (uiRes("m_scaleKeyProperties.kScaleSelectedKeys")) scaleKeyScaleSelectedKeysGrp; setParent ..; setParent ..; setParent ..; setUITemplate -popTemplate; }