def lightLibraryUI(self): libraryLabel = QtWidgets.QLabel('') libraryLabel.setAlignment(QtCore.Qt.AlignCenter) self.layout.addWidget(libraryLabel, 0, 0, 1, 4) libHeaderWidget = QtWidgets.QWidget() libHeaderLayout = QtWidgets.QHBoxLayout(libHeaderWidget) libHeaderScrollArea = QtWidgets.QScrollArea() libHeaderScrollArea.setWidget(libHeaderWidget) libHeaderScrollArea.setWidgetResizable(True) libHeaderScrollArea.setMaximumHeight(45) self.layout.addWidget(libHeaderScrollArea, 2, 0, 1, 5) self.saveNameField = QtWidgets.QLineEdit() self.saveNameField.setMinimumWidth(60) libHeaderLayout.addWidget(self.saveNameField) saveBtn = QtWidgets.QPushButton('Save') saveBtn.setMinimumWidth(120) saveBtn.clicked.connect(self.saveItem) libHeaderLayout.addWidget(saveBtn) buf = 12 self.listLibWidget = QtWidgets.QListWidget() self.listLibWidget.setViewMode(QtWidgets.QListWidget.IconMode) self.listLibWidget.setIconSize(QtCore.QSize(60, 60)) self.listLibWidget.setResizeMode(QtWidgets.QListWidget.Adjust) self.listLibWidget.setGridSize(QtCore.QSize(60 + buf, 60 + buf)) self.layout.addWidget(self.listLibWidget, 3, 0, 1, 5) libFooterWidget = QtWidgets.QWidget() # libFooterWidget.setSizePolicy( QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum ) self.libFooterLayout = QtWidgets.QGridLayout(libFooterWidget) self.libFooterLayout.setContentsMargins(QtCore.QMargins(2, 2, 2, 2)) # Create QScrollArea scrollLibArea = QtWidgets.QScrollArea() scrollLibArea.setWidget(libFooterWidget) scrollLibArea.setWidgetResizable(True) scrollLibArea.setMaximumHeight(45) self.layout.addWidget(scrollLibArea, 4, 0, 1, 5) # Create QPlushButton importLibBtn = QtWidgets.QPushButton('Import') importLibBtn.setMinimumWidth(120) importLibBtn.clicked.connect(self.loadItem) self.libFooterLayout.addWidget(importLibBtn, 0, 0) # # Create QPlushButton referenceBtn = QtWidgets.QPushButton('Reference') referenceBtn.setMinimumWidth(120) referenceBtn.clicked.connect(self.referenceItem) self.libFooterLayout.addWidget(referenceBtn, 0, 1) # # Create QPlushButton removeBtn = QtWidgets.QPushButton('Remove') removeBtn.setMinimumWidth(120) removeBtn.clicked.connect(self.removeItem) self.libFooterLayout.addWidget(removeBtn, 0, 2)
def buildUI(self): layout = QtWidgets.QGridLayout(self) layout.setContentsMargins(5,5,5,5) # Create a label to note for Maya light mayaLightLabel = QtWidgets.QLabel('Maya Lights') mayaLightLabel.setAlignment(QtCore.Qt.AlignCenter) layout.addWidget(mayaLightLabel, 0,0,1,6) # Create a label to note for Vray light vrayLightLabel = QtWidgets.QLabel('Vray Lights') vrayLightLabel.setAlignment(QtCore.Qt.AlignCenter) layout.addWidget(vrayLightLabel, 0,6,1,8) # Create a combo box that has the list of Maya light type self.mayaLightTypeCB = QtWidgets.QComboBox() # Put lightType into combo Box (Maya lights) for lightType in sorted(self.mayaLightTypes): self.mayaLightTypeCB.addItem(lightType) layout.addWidget(self.mayaLightTypeCB, 1,0,1,4) # Create a button to create the light base on the selection of the combo box createMayaLightBtn = QtWidgets.QPushButton('Create') createMayaLightBtn.clicked.connect(partial(self.createLight, 'Maya Light')) layout.addWidget(createMayaLightBtn, 1,4,1,2) # Create a combo box that has the list of Vray light type self.vrayLightTypeCB = QtWidgets.QComboBox() # Put lightType into combo Box (Maya lights) for lightType in sorted(self.vrayLightTypes): self.vrayLightTypeCB.addItem(lightType) layout.addWidget(self.vrayLightTypeCB, 1,6,1,6) # Create a button to create the light base on the selection of the combo box createVrayLightBtn = QtWidgets.QPushButton('Create') createVrayLightBtn.clicked.connect(partial(self.createLight, 'Vray Light')) layout.addWidget(createVrayLightBtn, 1,12,1,2) # Create Scroll layout to add the light created from buttons above into main layout via LightWidget class scrollWidget = QtWidgets.QWidget() scrollWidget.setSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Maximum) self.scrollLayout = QtWidgets.QVBoxLayout(scrollWidget) scrollArea = QtWidgets.QScrollArea() scrollArea.setWidgetResizable(True) scrollArea.setWidget(scrollWidget) layout.addWidget(scrollArea, 2,0,1,14)
def buildUI(self): self.layout = QtWidgets.QGridLayout(self) pluginLights = typeMgr.pluginLights() self.mayaLights = sorted(typeMgr.mayaLights()) self.vrayLights = sorted( [f for f in pluginLights if f.startswith("VRay")]) self.renderManLights = sorted( [f for f in pluginLights if f.startswith("Pxr")]) self.arnoldLights = sorted( [f for f in pluginLights if f.startswith("ai")]) iconBtnWidget = QtWidgets.QWidget() self.iconBtnLayout = QtWidgets.QHBoxLayout(iconBtnWidget) self.layout.addWidget(iconBtnWidget, 0, 0) self.iconBtnLayout.addWidget(QtWidgets.QLabel("Maya_tk: ")) # self.mayaLightTB = QtWidgets.QToolBar('Maya_tk Light') self.getMayaLight() self.getVrayLight() self.getRenderManLight() #self.getArnoldLight() self.lightLibraryUI() scrollWidget = QtWidgets.QWidget() scrollWidget.setSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Maximum) self.scrollLayout = QtWidgets.QVBoxLayout(scrollWidget) scrollArea = QtWidgets.QScrollArea() scrollArea.setWidgetResizable(True) scrollArea.setWidget(scrollWidget) self.layout.addWidget(scrollArea, 1, 0, 1, 5)