我在Qt中有一些奇怪的行为,看起来像是一个缺陷。我想知道是否有人有一个好的解决方法。
我有一个包含许多按钮的弹出窗口小部件。用户通过按下鼠标按钮激活弹出窗口。弹出窗口小部件在显示时调用grabMouse
。它获取所有鼠标事件。当它翻过一个按钮时,它会在按钮上调用setDown(true)
。然而,现在,当释放鼠标按钮时,弹出窗口小部件不会获得mouseReleaseEvent
,而是按钮。
也就是说,在按钮上调用setDown(true)
会导致按钮窃取鼠标事件,绕过弹出窗口小部件中的grabMouse
。
我查看了setDown
的源代码,但我看不到任何可以直接执行此操作的内容。我还注意到,有时按钮会有悬停事件,有时候不会。我认为当抓住鼠标时它永远不会得到那些事件。
//g++ -o grab_lost grab_lost.cpp -lQtCore -lQtGui -I /usr/include/qt4/ -I /usr/include/qt4/QtCore -I /usr/include/qt4/QtGui
/**
Demonstrates the defect of losing the mouse. Run the program and:
1. Press mouse anywhere
2. release in purple block (not on X)
3. Release message written (GrabLost receives the mouseReleaseEvent)
For defect:
1. Pree mouse anywhere
2. Release inside the X button
3. button is clicked, no release message (GrabLost does not get the mouseReleaseEvent)
*/
#include <QWidget>
#include <QPushButton>
#include <QApplication>
#include <QMouseEvent>
#include <QPainter>
class GrabLost : public QWidget
{
QPushButton * btn;
public:
GrabLost( QWidget * parent = 0)
: QWidget( parent, Qt::Popup )
{
btn = new QPushButton( "X", this );
setMouseTracking( true );
}
protected:
void showEvent( QShowEvent * ev )
{
QWidget::showEvent( ev );
grabMouse();
}
void closeEvent( QCloseEvent * ev )
{
releaseMouse();
QWidget::closeEvent( ev );
}
void hideEvent( QHideEvent * ev )
{
releaseMouse();
QWidget::hideEvent( ev );
}
void mouseReleaseEvent( QMouseEvent * ev )
{
qDebug( "mouseRelease" );
close();
}
void mouseMoveEvent( QMouseEvent * ev )
{
QWidget * w = childAt( ev->pos() );
bool ours = dynamic_cast<QPushButton*>( w ) == btn;
btn->setDown( ours );
}
void paintEvent( QPaintEvent * ev )
{
//just to show where the widget is
QPainter pt( this );
pt.setPen( QColor( 0,0,0 ) );
pt.setBrush( QColor( 128,0,128) );
pt.drawRect( 0, 0, size().width(), size().height() );
}
};
class GrabMe : public QWidget
{
protected:
void mousePressEvent( QMouseEvent * ev )
{
GrabLost * gl = new GrabLost();
gl->resize( 100, 100 );
QPoint at( mapToGlobal( ev->pos() ) );
gl->move( at.x() - 50, at.y() - 50 );
gl->show();
}
};
int main( int argc, char** argv )
{
QApplication app( argc, argv );
GrabMe * gm = new GrabMe();
gm->move( 100, 100 );
gm->resize( 300, 300 );
gm->show();
app.exec();
return 0;
}
答案 0 :(得分:0)
我已经在Nokia DB输入了缺陷。我给它大约95%的几率将它关闭为“按预期工作”。
对于那些需要解决方案的人来说,你必须使用事件过滤器并创建自己的抓取。基本上为每个子窗口小部件安装一个事件过滤器,并将鼠标事件传播给父窗口。
请注意,在上面的代码中,即使您没有拨打setDown
,鼠标右键也不起作用。