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.

25 lines
374 B
C++

/*!
\file cdoublespinbox.cpp
*/
#include "cdoublespinbox.h"
cDoubleSpinBox::cDoubleSpinBox(QWidget* parent) :
QDoubleSpinBox(parent)
{
}
void cDoubleSpinBox::focusInEvent(QFocusEvent* event)
{
gotFocus(this);
QDoubleSpinBox::focusInEvent(event);
}
void cDoubleSpinBox::focusOutEvent(QFocusEvent* event)
{
lostFocus(this);
QDoubleSpinBox::focusOutEvent(event);
}