#include "LineEditWithPopup.h" LineEditWithPopup::LineEditWithPopup(QWidget *parent) : QLineEdit(parent) { connect(this, SIGNAL(signalCallPopup()), this, SLOT(slotShowPopup)); } void LineEditWithPopup::mousePressEvent(QMouseEvent *event) { QLineEdit::mousePressEvent(event); } void LineEditWithPopup::slotShowPopup() { }