Create or modify preferred window attributes. The size and position of a window is retained during and between application sessions. A default window preference is created when a window is closed. Window preferences must be named and, consequently, only affect the window with a matching name. Note that window preferences are not applied to the main Maya window nor the Command window. In query mode, return type is based on queried flag.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
enableAll (ea) | bool | ||
|
|||
exists (ex) | bool | ||
|
|||
height (h) | int | ||
|
|||
leftEdge (le) | int | ||
|
|||
loadAll (la) | bool | ||
|
|||
parentMain (pm) | bool | ||
|
|||
remove (r) | bool | ||
|
|||
removeAll (ra) | bool | ||
|
Reads in file with main window state (positions of toolbars and dock controls).Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
|||
saveAll (sa) | bool | ||
|
|||
saveMainWindowState (sms) | unicode | ||
|
|||
topEdge (te) | int | ||
|
|||
topLeftCorner (tlc) | int, int | ||
|
|||
width (w) | int | ||
|
|||
widthHeight (wh) | int, int | ||
|
Derived from mel command maya.cmds.windowPref
Example:
import pymel.core as pm
import maya.cmds as cmds
# Check if the window exists.
#
if pm.window('ExampleWindow', exists=True):
pm.deleteUI('ExampleWindow', window=True)
# Create a window.
#
pm.window( 'ExampleWindow' )
# Result: ui.Window('ExampleWindow') #
pm.columnLayout()
# Result: ui.ColumnLayout('ExampleWindow|columnLayout98') #
pm.text( label='Size and position the window before closing it.' )
# Result: ui.Text('ExampleWindow|columnLayout98|text25') #
pm.button( label='Close', command='pm.deleteUI("ExampleWindow", window=True)' )
# Result: ui.Button('ExampleWindow|columnLayout98|button111') #
pm.showWindow( 'ExampleWindow' )
# When the window is closed a window preference object is
# created for the window. It has the same name as the window
# object.
#
pm.windowPref( 'ExampleWindow', exists=True )
# Result: True #
# Query the window preference size and position.
#
pm.windowPref( 'ExampleWindow', query=True, topLeftCorner=True )
# Result: [494, 886] #
pm.windowPref( 'ExampleWindow', query=True, widthHeight=True )
# Result: [300, 300] #
# Create a window with the same name. When it is shown
# it will be sized and positioned according to the
# window preference.
#
if pm.window('ExampleWindow', exists=True):
pm.deleteUI('ExampleWindow', window=True)
pm.window( 'ExampleWindow' )
# Result: ui.Window('ExampleWindow') #
pm.columnLayout()
# Result: ui.ColumnLayout('ExampleWindow|columnLayout99') #
pm.text( label='Size and position the window before closing it.' )
# Result: ui.Text('ExampleWindow|columnLayout99|text26') #
pm.button( label='Close', command='pm.deleteUI("ExampleWindow", window=True)' )
# Result: ui.Button('ExampleWindow|columnLayout99|button112') #
pm.showWindow( 'ExampleWindow' )
# Delete the window preference and the window will have a
# default size and position.
#
pm.windowPref( 'ExampleWindow', remove=True )
# Create the window one last time.
#
if pm.window('ExampleWindow', exists=True):
pm.deleteUI('ExampleWindow', window=True)
pm.window( 'ExampleWindow' )
# Result: ui.Window('ExampleWindow') #
pm.columnLayout()
# Result: ui.ColumnLayout('ExampleWindow|columnLayout100') #
pm.text( label='Size and position the window before closing it.' )
# Result: ui.Text('ExampleWindow|columnLayout100|text27') #
pm.button( label='Close', command='pm.deleteUI("ExampleWindow", window=True)' )
# Result: ui.Button('ExampleWindow|columnLayout100|button113') #
pm.showWindow( 'ExampleWindow' )