Hi Guys,
Trying to get my keypressevent working, but it's being stubborn:
Code:
{ qDebug() << m_bShow; qDebug() << cKeyEventPtr; if(cKeyEventPtr->key() == Qt::Key_F1 && m_bShow == ON) { qDebug() << m_bShow; this->hide(); } else if(cKeyEventPtr->key() == Qt::Key_F1 && m_bShow == OFF) { qDebug() << m_bShow; this->show(); } }
It's not showing any lines of code when I start bashing all my keys on my keyboard, so not sure why this is the case. My mouse click events are working fine :confused:.
I've got:
#include <QKeyEvent>