You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
330 B
C++
26 lines
330 B
C++
/*!
|
|
\file ccheckbox.cpp
|
|
|
|
*/
|
|
|
|
#include "ccheckbox.h"
|
|
|
|
|
|
cCheckBox::cCheckBox(QWidget* parent) :
|
|
QCheckBox(parent)
|
|
{
|
|
|
|
}
|
|
|
|
void cCheckBox::focusInEvent(QFocusEvent* event)
|
|
{
|
|
gotFocus(this);
|
|
QCheckBox::focusInEvent(event);
|
|
}
|
|
|
|
void cCheckBox::focusOutEvent(QFocusEvent* event)
|
|
{
|
|
lostFocus(this);
|
|
QCheckBox::focusOutEvent(event);
|
|
}
|