21 lines
313 B
C++
21 lines
313 B
C++
#include "CommandButton.h"
|
|
|
|
CommandButton::CommandButton(QWidget *parent) : QPushButton(parent)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommandButton::keyPressEvent(QKeyEvent* event)
|
|
{
|
|
QWidget::keyPressEvent(event);
|
|
}
|
|
void CommandButton::keyReleaseEvent(QKeyEvent* event)
|
|
{
|
|
QWidget::keyReleaseEvent(event);
|
|
}
|
|
|
|
|
|
|