This repository was archived by the owner on May 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathutils.py
49 lines (39 loc) · 1.76 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""
utilities module for generic UI actions
"""
import os
import platform
import pymel.core as pm
def make_shelf_icon(name, icon_path, command_str, source_type="python", annotation=None):
"""
make an icon on the current shelf
Args:
name (str): the string name for this shelf item
icon_path (str): the path to the image to use for the shelf item
command_str (str): the command to run when pressing this shelf item
source_type (str): the type of command, mel or python
annotation (str): the tool-tip annotation to display on hovering over this shelf item
Returns:
returns the button just created
"""
# type: (str, str, str, str, str) -> pm.uitypes.ShelfButton
icon_path = os.path.normpath(icon_path)
# Maya requires all paths to be forward slash for internal use
if platform.system().startswith("Win"):
icon_path = icon_path.replace("\\", "/")
try:
current_shelf = pm.uitypes.ShelfLayout(pm.mel.eval('tabLayout -q -st $gShelfTopLevel;'))
for item in [x for x in current_shelf.getChildren() if isinstance(x, pm.uitypes.ShelfButton)]:
if name == item.getLabel():
item.delete()
# you must set the active parent before creating shelf buttons or they will be parented under maya's main window
pm.setParent(current_shelf)
shelf_button = pm.shelfButton(label=name)
shelf_button.setSourceType(source_type)
shelf_button.setCommand(command_str)
shelf_button.setImage(icon_path)
if annotation:
shelf_button.setAnnotation(annotation)
return shelf_button
except Exception as e:
pm.warning("Something went wrong making the shelf item: {}\n Exception Msg: {}".format(name, e.message))