PySide:按下后,QPushButton会保持高亮显示

问题描述 投票:2回答:3

在我的工具中,当用户按下按钮时,会创建一个弹出窗口。我的问题是,用户按下以显示窗口的按钮在弹出窗口创建时保持突出显示(就好像我的鼠标悬停在它上面)并且即使在删除弹出窗口后仍保持这种状态。我实际上喜欢这个突出显示,而弹出窗口是活动的(它可视地将窗口连接到弹出窗口,这是很好的),但我希望它在窗口被删除时消失。

下面是一个澄清正在发生的事情的例子:

enter image description here

如果我单击创建资产,然后单击次要保存创建资产按钮保持突出显示

码:

from PySide import QtCore, QtGui
import maya.OpenMayaUI as mui
from shiboken import wrapInstance 

def get_parent():
    ptr = mui.MQtUtil.mainWindow()
    return wrapInstance( long( ptr ), QtGui.QWidget )

############################################
class Tool_Window(QtGui.QDialog):
    def __init__(self, parent = get_parent() ):
        super(Tool_Window, self).__init__(parent)

        # Commands
        self.create_gui()
        self.create_layout()
        self.create_connections()

    #-------------------------------------------
    def create_gui(self):
        self.button1 = Push_Buttons()
        self.button1.setMaximumWidth(50)
        self.button2 = Push_Buttons()
        self.button2.setMaximumWidth(50)

    #-------------------------------------------
    def create_layout(self):
        layout = QtGui.QVBoxLayout()
        layout.addWidget(self.button1)
        layout.addWidget(self.button2)
        blank_layout = QtGui.QVBoxLayout()
        main_layout = QtGui.QHBoxLayout( self )
        main_layout.addLayout(blank_layout)
        main_layout.addLayout(layout)
        self.setLayout(layout)

    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    def create_connections(self):
        # Left click
        self.button1.clicked.connect( self.on_left_click )
        self.button2.clicked.connect( self.on_left_click )

    #-----#-----#-----#-----#-----#-----#-----#-----#-----#    
    def on_left_click(self):

        button = self.sender()

        self.popup = Popup_Window( self, button )                   
        self.popup.show()

############################################
class Push_Buttons( QtGui.QPushButton ):
    def __init__( self ):
        super( Push_Buttons, self ).__init__()

        self.setFocusPolicy(QtCore.Qt.NoFocus)

############################################
class Popup_Window( QtGui.QWidget ):
    def __init__( self, parent, button ):
        super( Popup_Window, self ).__init__(parent)

        self.setWindowFlags(QtCore.Qt.Popup)

        self.button_pos = button       
        self.parent = parent  

        self.setAttribute( QtCore.Qt.WA_DeleteOnClose )
        self.resize(230, 100)

        self.installEventFilter(self)

        self.create_gui()
        self.create_layout()
        self.create_connections()
        self.move_UI()   
        self.line_edit.setFocus()     

    #-------------------------------------------
    def create_gui( self ):
        ''' Visible GUI stuff '''
        self.my_label = QtGui.QLabel("default text")
        self.line_edit = QtGui.QLineEdit()
        self.line_edit.setMaxLength( 30 )
        self.push_btn = QtGui.QPushButton( "push" )
        self.push_btn.setMaximumWidth( 30 )

    #-------------------------------------------
    def create_layout( self ):

        self.button_layout = QtGui.QVBoxLayout()

        self.button_layout.addWidget( self.my_label, 0, 0 )
        self.button_layout.addWidget( self.line_edit, 1, 0 )
        self.button_layout.addWidget( self.push_btn, 2, 0 )

        self.setLayout(self.button_layout)

    #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
    def create_connections( self ):

        self.line_edit.textChanged.connect( self.on_text_changed )

    #-----#-----#-----#-----#-----#-----#-----#-----#-----#
    def on_text_changed( self, text ): 

        #---- set the text in label ----
        typed_name = self.line_edit.text()
        if " " in typed_name:
            typed_name.replace(" ", "")
        self.my_label.setText(typed_name) 

    #-------------------------------------------  
    def  eventFilter(self, source, event):

        if event.type() == QtCore.QEvent.WindowDeactivate:
            self.close()
        return QtGui.QWidget.eventFilter(self, source, event)

    #-------------------------------------------
    def move_UI( self ):
        self.line_edit.setFocus()
        y_btn = self.button_pos.mapToGlobal(QtCore.QPoint(0,0)).y()  
        x_win = self.parent.mapToGlobal(QtCore.QPoint(0,0)).x()

        w_pop = self.frameGeometry().width()

        x = x_win - w_pop - 12
        y = y_btn

        self.move(QtCore.QPoint(x,y))

############################################
if __name__ == '__main__':
    # Things to fix PySide Maya bug
    try:
        test_ui.close()
        test_ui.deleteLater()
    except:
        pass

    test_ui = Tool_Window()
    test_ui.show()

    try:
        test_ui.show()
    except:
        test_ui.close()
        test_ui.deleteLater()
focus pyside highlight qpushbutton
3个回答
2
投票

当焦点策略在Windows 7和Ubuntu(QtCore.Qt.FocusPolicy.StrongFocus)上设置为默认值时,我无法重现您的问题。但是,在我将按钮的焦点策略设置为QtCore.Qt.FocusPolicy.NoFocus后,它在两个系统上。

为了解决这个问题,我建议暂时强制重新填写Tool_Window实例,从eventFilterPopup_Window方法,当注册一个关闭事件时,如下所示:

def  eventFilter(self, source, event):

    if event.type() == QtCore.QEvent.WindowDeactivate:
        self.close()
    elif event.type() == QtCore.QEvent.Close:
        self.parent.repaint()
    return QtGui.QWidget.eventFilter(self, source, event)

当按钮的焦点政策设置为QtCore.Qt.FocusPolicy.NoFocus时,它已经为我解决了Windows7和Ubuntu上的问题。我可能会进一步调查以更好地了解发生了什么,我会告诉你。

旁注:我没有用OpenMayaUI测试你的代码,所以也许这就是为什么我没有默认问题,但只有在我明确地将按钮的焦点策略设置为NoFocus之后。也许OpenMayaUI默认强制你的按钮有一个NoFocus政策。这也可能是因为我们的操作系统和主题之间存在差异。


0
投票

我在2018年的Maya上遇到了这个问题。我想它可能是Maya的事情?我最终只是重写了鼠标点击事件,因为鼠标单击+释放事件 - 所以它从未真正进入压低状态:

    def mousePressEvent(self, event):
        super(DragButton, self).mouseReleaseEvent(event)

我曾尝试过的事情:

QPushButton().setDown(False)
QPushButton().setChecked(False)
QPushButton().setPressed(False)

QPushButton().setFocusPolicy(QtCore.Qt.NoFocus)
QPushButton().setFocusPolicy(QtCore.Qt.StrongFocus)

QPushButton().viewport().update()

event.accept()

QtCore.QTimer.singleShot(
    100, lambda: self.setFocusPolicy(QtCore.Qt.NoFocus)
)

QtCore.QTimer.singleShot(100, lambda: self.setDown(False))
super(DragButton, self).mousePressEvent(event)

无论我尝试什么,我得到的内容如下所示,点击+拖动后黑色按钮被永久按下,但如果我单击它们就可以了:

QListWidget_drag_depressedBtns


0
投票

出于某种原因,当你的Popup_Window类使用self.setWindowFlags(QtCore.Qt.Popup)时,亮点似乎仍然存在。

相反,您可以删除该行并使Popup_Window类继承自QDialog。现在,当新窗口出现时,突出显示不会保留。虽然你原来的行为是你只能在显示时与弹出窗口进行交互,所以为了达到同样的目的,只需调用self.popup.exec_()而不是self.popup.show()来使其成为模态。

现在我们让它像没有按钮“坚持”突出显示状态一样工作。

© www.soinside.com 2019 - 2024. All rights reserved.