Definition at line 424 of file qwsevent_qws.h.
#include <qwsevent_qws.h>

Classes |
|
| struct | SimpleData |
Public Types |
|
| enum | EventType { FontRemoved } |
Public Member Functions |
|
| QWSFontEvent () | |
| void | setData (const char *d, int len, bool allocateMem=true) |
Public Attributes |
|
| struct QWSFontEvent::SimpleData | simpleData |
| QByteArray | fontName |
| enum EventType |
Definition at line 429 of file qwsevent_qws.h.
{
FontRemoved
};
| QWSFontEvent | ( | ) | [inline] |
Definition at line 425 of file qwsevent_qws.h.
: QWSEvent(QWSEvent::Font, sizeof(simpleData),
reinterpret_cast<char*>(&simpleData)) {}
| void setData | ( | const char * | d, |
| int | len, | ||
| bool | allocateMem =
true |
||
| ) | [inline, virtual] |
Reimplemented from QWSProtocolItem.
Definition at line 433 of file qwsevent_qws.h.
{
QWSEvent::setData(d, len, allocateMem);
fontName = QByteArray::fromRawData(rawDataPtr, len);
}
Definition at line 441 of file qwsevent_qws.h.