def updateMayaImageFormatControl(): #pm.mel.source("createMayaSoftwareCommonGlobalsTab.mel") currentRenderer = utils.currentRenderer() if currentRenderer == 'mentalRay': pm.mel.updateMentalRayImageFormatControl() elif currentRenderer == 'arnold': mtoa.ui.globals.common.updateArnoldImageFormatControl() else: pm.mel.updateMayaSoftwareImageFormatControl(); if currentRenderer != 'arnold' and pm.mel.getApplicationVersionAsFloat() >= 2009: pm.mel.updateMultiCameraBufferNamingMenu();
def updateMayaImageFormatControl(): #pm.mel.source("createMayaSoftwareCommonGlobalsTab.mel") currentRenderer = utils.currentRenderer() if currentRenderer == 'mentalRay': pm.mel.updateMentalRayImageFormatControl() elif currentRenderer == 'arnold': mtoa.ui.globals.common.updateArnoldImageFormatControl() else: pm.mel.updateMayaSoftwareImageFormatControl() if currentRenderer != 'arnold' and pm.mel.getApplicationVersionAsFloat( ) >= 2009: pm.mel.updateMultiCameraBufferNamingMenu()
def addOneTabToGlobalsWindow(renderer, tabLabel, createProc): # Check to see if the unified render globals window existed. # If it does not exist, then we don't need to add any tab yet. if not pm.window('unifiedRenderGlobalsWindow', exists=True): try: pm.error(pm.mel.uiRes("m_unifiedRenderGlobalsWindow.kCannotAddTabs")) except: pass return displayAllTabs = pm.mel.isDisplayingAllRendererTabs() # If the current renderer the renderer is not this # renderer, then don't add the tab yet. if not displayAllTabs and utils.currentRenderer() != renderer: return pm.setParent('unifiedRenderGlobalsWindow') # Hide the tabForm while updating. tabFormManagedStatus = pm.formLayout('tabForm', q=True, manage=True) pm.formLayout('tabForm', edit=True, manage=False) pm.setParent('tabForm') # Set the correct tabLayout parent. if displayAllTabs: tabLayoutName = pm.mel.getRendererTabLayout(pm.melGlobals['gMasterLayerRendererName']) else: tabLayoutName = pm.mel.getRendererTabLayout(renderer) pm.setParent(tabLayoutName) # The tabName is the tabLabel with the white space removed # and the word "Tab" added to the end. # "masterLayer" will act as the renderer name if the tab # is in the master layer. tabName = pm.mel.rendererTabName(renderer, tabLabel) # if the tab-control does not exist, define it and add it # to the tabLayout if not pm.layout(tabName, exists=True): pm.setUITemplate('renderGlobalsTemplate', pushTemplate=True) pm.setUITemplate('attributeEditorTemplate', pushTemplate=True) # Define the tab pm.formLayout(tabName) # get the content of the tab from the createTabProc # Most create procs are now deferred till the tab is selected # These two are the default tabs, so we don't defer them createProcs = ['createMayaSoftwareCommonGlobalsTab', 'createMayaSoftwareGlobalsTab', 'createArnoldRendererCommonGlobalsTab', 'createArnoldRendererGlobalsTab', 'createArnoldRendererSystemTab', 'createArnoldRendererOverrideTab', 'createArnoldRendererDiagnosticsTab'] if createProc in createProcs: pm.mel.eval(createProc) # These end off the layouts of the information in the Tab pm.setParent('..') pm.setUITemplate(popTemplate=True) pm.setUITemplate(popTemplate=True) # Add the tab to the tabLayout pm.tabLayout(tabLayoutName, edit=True, tabLabel=(tabName, renderSettingsTabLabel_melToUI(tabLabel))) # Restore the old manage status for the tabForm. pm.formLayout('tabForm', edit=True, manage=tabFormManagedStatus)
def addOneTabToGlobalsWindow(renderer, tabLabel, createProc): # Check to see if the unified render globals window existed. # If it does not exist, then we don't need to add any tab yet. if not pm.window('unifiedRenderGlobalsWindow', exists=True): try: pm.error( pm.mel.uiRes("m_unifiedRenderGlobalsWindow.kCannotAddTabs")) except: pass return displayAllTabs = pm.mel.isDisplayingAllRendererTabs() # If the current renderer the renderer is not this # renderer, then don't add the tab yet. if not displayAllTabs and utils.currentRenderer() != renderer: return pm.setParent('unifiedRenderGlobalsWindow') # Hide the tabForm while updating. tabFormManagedStatus = pm.formLayout('tabForm', q=True, manage=True) pm.formLayout('tabForm', edit=True, manage=False) pm.setParent('tabForm') # Set the correct tabLayout parent. if displayAllTabs: tabLayoutName = pm.mel.getRendererTabLayout( pm.melGlobals['gMasterLayerRendererName']) else: tabLayoutName = pm.mel.getRendererTabLayout(renderer) pm.setParent(tabLayoutName) # The tabName is the tabLabel with the white space removed # and the word "Tab" added to the end. # "masterLayer" will act as the renderer name if the tab # is in the master layer. tabName = pm.mel.rendererTabName(renderer, tabLabel) # if the tab-control does not exist, define it and add it # to the tabLayout if not pm.layout(tabName, exists=True): pm.setUITemplate('renderGlobalsTemplate', pushTemplate=True) pm.setUITemplate('attributeEditorTemplate', pushTemplate=True) # Define the tab pm.formLayout(tabName) # get the content of the tab from the createTabProc # Most create procs are now deferred till the tab is selected # These two are the default tabs, so we don't defer them createProcs = [ 'createMayaSoftwareCommonGlobalsTab', 'createMayaSoftwareGlobalsTab', 'createArnoldRendererCommonGlobalsTab', 'createArnoldRendererGlobalsTab', 'createArnoldRendererSystemTab', 'createArnoldRendererOverrideTab', 'createArnoldRendererDiagnosticsTab' ] if createProc in createProcs: pm.mel.eval(createProc) # These end off the layouts of the information in the Tab pm.setParent('..') pm.setUITemplate(popTemplate=True) pm.setUITemplate(popTemplate=True) # Add the tab to the tabLayout pm.tabLayout(tabLayoutName, edit=True, tabLabel=(tabName, renderSettingsTabLabel_melToUI(tabLabel))) # Restore the old manage status for the tabForm. pm.formLayout('tabForm', edit=True, manage=tabFormManagedStatus)