我构建了一个从 QWidget 继承的新元素,它是 LineEdit 和 Button 的组合。
现在,当我单击按钮时,应该会显示一个列表(或者换句话说,应该显示一个完成者)。
现在的要求是,当我在完成器外部单击鼠标时,完成器将被关闭。所以我需要知道鼠标的全局坐标来检查鼠标是否在完成者内部。我该怎么做?
LineEditWithButton.h
class LineEditWithButton : public QWidget
{
Q_OBJECT
public:
LineEditWithButton( QWidget *p_parent = nullptr );
void showCompleter(); /* This function shows the Completer */
.............
protected:
void keyPressEvent( QKeyEvent *p_event ) override;
void mousePressEvent( QMouseEvent *p_event ) override;
.........
private slots:
void toggleCompleter(); /* slot to hide/show the completer */
void lineEditChanged(); /* slot when text in the LineEdit changes */
.............
private:
MyButton *m_button = nullptr; /* This variable holds the Button beside the LineEdit */
MyLineEdit *m_lineEdit = nullptr; /* This variable holds the LineEdit */
MyCompleter *m_completer = nullptr; /* This variable holds the Completer */
.........
};
LineEditWithButton.cpp
void LineEditWithButton::mousePressEvent( QMouseEvent *p_event )
{
QPoint globalPosition = p_event->globalPos();
QRect compRect = m_completer->geometry();
if ( !compRect.contains( globalPosition ) && m_completer->isVisible() )
{
m_completer->hide();
}
}
这个功能对我不起作用。我在这个函数中设置了一个断点,但是断点没有被命中。我该如何解决我的问题?