#include <ai_epsrr.h>
Inheritance diagram for ListFill:
Public Member Functions | |
ListFill () | |
Constructor for a gradient fill holder, so it can be stored in a linked list cache. All variables (esp. the id) should be set before use. It is better to use the constructor below, as this will allocate id numbers uniquely. | |
ListFill (FillGeometryAttribute *pNewFill) | |
ListFill (FillGeometryAttribute *pNewFill, EFFECTTYPE eff, ListFill *pNewNext) | |
Constructor for a gradient fill holder, so it can be stored in a linked list cache. | |
~ListFill () | |
Destructor for a ListFill item. This also cleans up the fill it contains (if any). | |
Public Attributes | |
FillGeometryAttribute * | pFill |
EFFECTTYPE | effect |
ListFill * | pNext |
INT32 | id |
Private Member Functions | |
CC_DECLARE_DYNAMIC (ListFill) |
Definition at line 180 of file ai_epsrr.h.
|
Constructor for a gradient fill holder, so it can be stored in a linked list cache. All variables (esp. the id) should be set before use. It is better to use the constructor below, as this will allocate id numbers uniquely.
Definition at line 3832 of file ai_epsrr.cpp.
|
|
|
|
Constructor for a gradient fill holder, so it can be stored in a linked list cache.
Definition at line 3852 of file ai_epsrr.cpp. 03853 { 03854 pFill = pNewFill; 03855 effect = eff; 03856 03857 pNext = pNewNext; 03858 if(pNewNext) 03859 { 03860 id = pNewNext->id + 1; 03861 } 03862 else 03863 { 03864 id = 1; 03865 } 03866 }
|
|
Destructor for a ListFill item. This also cleans up the fill it contains (if any).
Definition at line 3878 of file ai_epsrr.cpp.
|
|
|
|
Definition at line 192 of file ai_epsrr.h. |
|
Definition at line 194 of file ai_epsrr.h. |
|
Definition at line 191 of file ai_epsrr.h. |
|
Definition at line 193 of file ai_epsrr.h. |