#include <webfiltr.h>
Inheritance diagram for CamelotNULLWebFilter:
Public Member Functions | |
CamelotNULLWebFilter (BaseCamelotFilter *pParentFilter, Document *pDocument) | |
The default constructor. | |
virtual void | AddNodeGroupRefToList (Node *pNode, NodeGroup *pGroup) |
Adds a text story group reference to the listFinds the group associated with the text storyFinds the text story associated with the groupAdds a node/group reference to the list. | |
virtual NodeGroup * | FindGroupForThisNode (Node *pNode) |
Finds the group associated with the node. | |
virtual void | AddTagDescription (UINT32 Tag, UINT32 ID) |
Adds the description for the given tag export. | |
virtual BOOL | ShouldExportHTMLTag () |
Public access to the HTML to clipboard. | |
virtual void | ExportHTMLTag () |
Protected Member Functions | |
CXaraFile * | CreateCXaraFile () |
This version creates a NULLXaraFile object that doesn't actually import or export any bytes. | |
Private Member Functions | |
CC_DECLARE_DYNAMIC (CamelotNULLWebFilter) | |
Private Attributes | |
BaseCamelotFilter * | pParentFilter |
Definition at line 186 of file webfiltr.h.
|
The default constructor.
Definition at line 501 of file webfiltr.cpp. 00502 { 00503 pParentFilter = pThisParentFilter; 00504 00505 TheDocument = pDoc; 00506 pTheSpread = GetFirstSpread(pDoc); 00507 ERROR3IF(pTheSpread == NULL,"BaseCamelotFilter::DoExport no spread to export"); 00508 }
|
|
Adds a text story group reference to the listFinds the group associated with the text storyFinds the text story associated with the groupAdds a node/group reference to the list.
Reimplemented from BaseCamelotFilter. Definition at line 531 of file webfiltr.cpp. 00532 { 00533 if (pParentFilter != NULL) 00534 pParentFilter->AddNodeGroupRefToList(pNode,pGroup); 00535 }
|
|
Adds the description for the given tag export.
Reimplemented from BaseCamelotFilter. Definition at line 548 of file webfiltr.cpp. 00549 { 00550 if (pParentFilter != NULL) 00551 pParentFilter->AddTagDescription(Tag,ID); 00552 }
|
|
|
|
This version creates a NULLXaraFile object that doesn't actually import or export any bytes.
Reimplemented from BaseCamelotFilter. Definition at line 524 of file webfiltr.cpp. 00525 { 00526 CXaraFile* pCXaraFile = new NULLXaraFile; 00527 00528 return pCXaraFile; 00529 }
|
|
Reimplemented from Filter. Definition at line 211 of file webfiltr.h.
|
|
Finds the group associated with the node.
Reimplemented from BaseCamelotFilter. Definition at line 538 of file webfiltr.cpp. 00539 { 00540 if (pParentFilter != NULL) 00541 return pParentFilter->FindGroupForThisNode(pNode); 00542 00543 return NULL; 00544 }
|
|
Public access to the HTML to clipboard.
Reimplemented from CamelotWebFilter. Definition at line 206 of file webfiltr.h. 00207 { 00208 return FALSE; 00209 }
|
|
Definition at line 219 of file webfiltr.h. |