Chris__maya_pyside2 学习 实例 Open/Import/ReferenceUI

使用QtGui 添加icon

  • .setIcon(QtGui.QIcon(':fileOpen.png'))
  • 使用 .setIcon
  • (':')这里的 :(冒号) 是Qt语法 表示是一个资源
def create_widgets(self):

    self.select_file_path_btn = QtWidgets.QPushButton()
    self.select_file_path_btn.setIcon(QtGui.QIcon(':fileOpen.png'))

使用 .setToolTip() 快速添加文字说明

  • .setTipTool('Select File')
self.select_file_path_btn.setToolTip('Select File')

如图++++++++++++++++++
image.png

使用 cmds.resourceManager(nameFilter = '*png') 遍历 所有png的图标

import maya.cmds as cmds

for item in cmds.resourceManager(nameFilter = '*png'):
    print item

如图+++++++++++++++
image.png

check_box 可见性与 radio_btn 关联

force_check_box 可见性被 open_radio 关联时可见, 被其他 reference_radio, import_radio 点击时不可见

  • update_force_visibility()槽函数传入 checked
  • 当open_radio.toggled 到 update_force_visibility 为真时
  • force_check_box.setVisible(checked= True)
def create_connections(self):

    self.open_radio.toggled.connect(self.update_force_visibility)

def update_force_visibility(self, checked):

    self.force_check_box.setVisible(checked)

文件图标添加Maya文件过滤器

file_path, selected_filter = QtWidgets.QFileDialog.getOpenFileName(self, 'Select File')

  • file_path 文件路径
  • selected_filter 过滤的的文件格式


    image.png

QtWidgets.QFileDialog.getOpenFileName(self, 'Select File')

  • 得到 完整文件路径名
  • 设置给 line_edit 路径文本信息


    image.png
    def show_file_select_dialog(self):
        '''

        :return:
        '''
        file_path, selected_filter = QtWidgets.QFileDialog.getOpenFileName(self, 'Select File')
        if file_path:
            self.file_path_line_edit.setText(file_path)

用类变量设置过滤文件格式

  • 过滤格式放在字符串里
  • 每两个之间用;;(两个分号)隔开
  • 过滤器设置的格式下面


    image.png
class TestUIWindow(QtWidgets.QDialog):

    FILE_FILTERS = 'Maya(*.ma *mb);;Maya ASCII(*.ma);;Maya Binary(*.mb);;All Files(*.*)'
    selected_filter = 'Maya(*.ma *.mb)'
  • 填入 过滤 类变量
    def show_file_select_dialog(self):
        '''

        :return:
        '''
        file_path, selected_filter = QtWidgets.QFileDialog.getOpenFileName(self, 'Select File',
                                                                           '',
                                                                           self.FILE_FILTERS,
                                                                           self.selected_filter)
        if file_path:
            self.file_path_line_edit.setText(file_path)

Apply_btn 关联 load_file 槽函数

  • load_file 槽函数 根据按钮去 调用
  • open_file
  • import_file
  • reference_file

# load_file

  • file_path 得到line_edit 的文件路径文本
  • 判断文本有没有
  • 判断是不是文件信息
  • 判断radio_btn 被选择中的那一个去执行对应的条件下的函数
    def load_file(self):
        '''

        :return:
        '''
        file_path = self.file_path_line_edit.text()

        if not file_path:
            return

        file_info = QtCore.QFileInfo(file_path)
        if not file_info.exists():
            om.MGlobal.displayError('File does not exsit: {0}'.format(file_path))
            return


        if self.open_radio.isChecked():
            self.open_file(file_path)
        elif self.import_radio.isChecked():
            self.import_file(file_path)
        else:
            self.reference_file(file_path)

Open_file 函数

  • force 复选框没有选择并且文件被修改了,弹出信息。
  • 如果信息是Yes,设置 打开文件 force = True
    def open_file(self, file_path):

        force = self.force_check_box.isChecked()
        if not force and cmds.file(q = True, modified = True):
            result = QtWidgets.QMessageBox.question(self, "Modified", "Current scene has unsaved changes. Continue?")
            if result == QtWidgets.QMessageBox.StandardButton.Yes:
                force = True
            else:
                return
        cmds.file(file_path, open = True, iv = True, force = force)

使用类方法调用窗口

  • 申明一个 dialog_instance = None
  • 在类方法中判读这个类变量
  • 实例化 TestUIWindow
  • 判读这个隐藏就show
  • 如果在前面就 激活 窗口
class TestUIWindow(QtWidgets.QDialog):

    FILE_FILTERS = 'Maya(*.ma *mb);;Maya ASCII(*.ma);;Maya Binary(*.mb);;All Files(*.*)'
    selected_filter = 'Maya(*.ma *.mb)'

    dialog_instance = None

    @classmethod
    def show_dialog(cls):
        '''

        :return:
        '''
        if not cls.dialog_instance:
            cls.dialog_instance = TestUIWindow()

        if cls.dialog_instance.isHidden():
            cls.dialog_instance.show()
        else:
            cls.dialog_instance.raise_()
            cls.dialog_instance.activateWindow()

完整代码如下

from PySide2 import QtCore
from PySide2 import QtWidgets
from PySide2 import QtGui
from shiboken2 import wrapInstance
import maya.OpenMayaUI as omui
import maya.OpenMaya as om
import maya.cmds as cmds


def get_maya_main_window():

    maya_main_wnd = omui.MQtUtil.mainWindow()
    return wrapInstance(long(maya_main_wnd), QtWidgets.QWidget)

class TestUIWindow(QtWidgets.QDialog):

    FILE_FILTERS = 'Maya(*.ma *mb);;Maya ASCII(*.ma);;Maya Binary(*.mb);;All Files(*.*)'
    selected_filter = 'Maya(*.ma *.mb)'

    dialog_instance = None

    @classmethod
    def show_dialog(cls):
        '''

        :return:
        '''
        if not cls.dialog_instance:
            cls.dialog_instance = TestUIWindow()

        if cls.dialog_instance.isHidden():
            cls.dialog_instance.show()
        else:
            cls.dialog_instance.raise_()
            cls.dialog_instance.activateWindow()


    def __init__(self, parent = get_maya_main_window()):
        super(TestUIWindow, self).__init__(parent)

        self.setWindowTitle('Open/Import/Reference')
        self.setMaximumSize(700, 90)

        self.create_widgets()
        self.create_layouts()
        self.create_connections()

    def create_widgets(self):
        '''

        :return:
        '''
        self.file_path_line_edit = QtWidgets.QLineEdit()
        self.select_file_path_btn = QtWidgets.QPushButton()
        self.select_file_path_btn.setIcon(QtGui.QIcon(':fileOpen.png'))
        self.select_file_path_btn.setToolTip('Select File')

        self.open_radio = QtWidgets.QRadioButton('Open')
        self.open_radio.setChecked(True)
        self.import_radio = QtWidgets.QRadioButton('Import')
        self.reference_radio = QtWidgets.QRadioButton('Reference')

        self.force_check_box = QtWidgets.QCheckBox('Force')

        self.apply_btn = QtWidgets.QPushButton('Apply')
        self.close_btn = QtWidgets.QPushButton('Close')

    def create_layouts(self):
        '''

        :return:
        '''
        file_path_layout = QtWidgets.QHBoxLayout()
        file_path_layout.addWidget(self.file_path_line_edit)
        file_path_layout.addWidget(self.select_file_path_btn)

        radio_btn_layout = QtWidgets.QHBoxLayout()
        radio_btn_layout.addWidget(self.open_radio)
        radio_btn_layout.addWidget(self.import_radio)
        radio_btn_layout.addWidget(self.reference_radio)

        apply_close_btn_layout = QtWidgets.QHBoxLayout()
        apply_close_btn_layout.addStretch()
        apply_close_btn_layout.addWidget(self.apply_btn)
        apply_close_btn_layout.addWidget(self.close_btn)

        form_layout = QtWidgets.QFormLayout()
        form_layout.addRow('File:', file_path_layout)
        form_layout.addRow('', radio_btn_layout)
        form_layout.addRow('', self.force_check_box)

        main_layout = QtWidgets.QVBoxLayout(self)
        main_layout.addLayout(form_layout)
        main_layout.addLayout(apply_close_btn_layout)

    #___Connect___
    def create_connections(self):
        '''

        :return:
        '''
        self.select_file_path_btn.clicked.connect(self.show_file_select_dialog)

        self.open_radio.toggled.connect(self.update_force_visibility)

        self.apply_btn.clicked.connect(self.load_file)
        self.close_btn.clicked.connect(self.close)


    #___Slots___
    def show_file_select_dialog(self):
        '''

        :return:
        '''
        file_path, selected_filter = QtWidgets.QFileDialog.getOpenFileName(self, 'Select File',
                                                                           '',
                                                                           self.FILE_FILTERS,
                                                                           self.selected_filter)
        if file_path:
            self.file_path_line_edit.setText(file_path)

    def update_force_visibility(self, checked):
        '''

        :return:
        '''
        self.force_check_box.setVisible(checked)

    def load_file(self):
        '''

        :return:
        '''
        file_path = self.file_path_line_edit.text()

        if not file_path:
            return

        file_info = QtCore.QFileInfo(file_path)
        if not file_info.exists():
            om.MGlobal.displayError('File does not exsit: {0}'.format(file_path))
            return

        if self.open_radio.isChecked():
            self.open_file(file_path)
        elif self.import_radio.isChecked():
            self.import_file(file_path)
        else:
            self.reference_file(file_path)

    def open_file(self, file_path):

        force = self.force_check_box.isChecked()
        if not force and cmds.file(q = True, modified = True):
            result = QtWidgets.QMessageBox.question(self, "Modified", "Current scene has unsaved changes. Continue?")
            if result == QtWidgets.QMessageBox.StandardButton.Yes:
                force = True
            else:
                return
        cmds.file(file_path, open = True, iv = True, force = force)

    def import_file(self, file_path):
        cmds.file(file_path, i = True, ignoreVersion = True)

    def reference_file(self, file_path):
        cmds.file(file_path, reference = True, iv = True)
if __name__ == '__main__':

    try:
        myTest_ui.close() # pylint:disable = E0601
        myTest_ui.deleteLater() # pylint:disable = E0601
    except:
        pass

    myTest_ui = TestUIWindow()
    myTest_ui.show()
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,794评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,050评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,587评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,861评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,901评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,898评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,832评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,617评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,077评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,349评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,483评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,199评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,824评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,442评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,632评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,474评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,393评论 2 352

推荐阅读更多精彩内容