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.
21 lines
324 B
C++
21 lines
324 B
C++
#include "cfontcombobox.h"
|
|
|
|
|
|
cFontComboBox::cFontComboBox(QWidget* parent) :
|
|
QFontComboBox(parent)
|
|
{
|
|
|
|
}
|
|
|
|
void cFontComboBox::focusInEvent(QFocusEvent* event)
|
|
{
|
|
gotFocus(this);
|
|
QComboBox::focusInEvent(event);
|
|
}
|
|
|
|
void cFontComboBox::focusOutEvent(QFocusEvent* event)
|
|
{
|
|
lostFocus(this);
|
|
QComboBox::focusOutEvent(event);
|
|
}
|