#include <rechtext.h>
Inheritance diagram for FontDefRecordHandler:
Public Member Functions | |
FontDefRecordHandler () | |
~FontDefRecordHandler () | |
UINT32 * | GetTagList () |
Function to describe the text attribute recordsReturns an array of records handled by this class. | |
BOOL | HandleRecord (CXaraFileRecord *pCXaraFileRecord) |
Handles reading a text attribute record from a CXaraFile. | |
Private Member Functions | |
CC_DECLARE_DYNAMIC (FontDefRecordHandler) |
Definition at line 296 of file rechtext.h.
|
Definition at line 302 of file rechtext.h.
|
|
Definition at line 303 of file rechtext.h.
|
|
|
|
Function to describe the text attribute recordsReturns an array of records handled by this class.
Implements CXaraFileRecordHandler. Definition at line 1908 of file rechtext.cpp. 01909 { 01910 static UINT32 TagList[] = {TAG_FONT_DEF_TRUETYPE, 01911 TAG_FONT_DEF_ATM, 01912 CXFRH_TAG_LIST_END}; 01913 return TagList; 01914 }
|
|
Handles reading a text attribute record from a CXaraFile.
Implements CXaraFileRecordHandler. Definition at line 1928 of file rechtext.cpp. 01929 { 01930 ERROR2IF(pCXaraFileRecord==NULL, FALSE, "Parameter CXaraFileRecord==NULL"); 01931 01932 BOOL ok; 01933 01934 FontComponent *pFontComponent = GetFontComponent(); 01935 01936 ok = pFontComponent->ReadFontDefinition(pCXaraFileRecord); 01937 01938 return ok; 01939 }
|