FillEffectFadeAttribute Class Reference

Specifies a 'fade' graduation for fills, i.e. a simple fade in RGB space. More...

#include <fillval.h>

Inheritance diagram for FillEffectFadeAttribute:

FillEffectAttribute AttributeValue CCObject SimpleCCObject List of all members.

Public Member Functions

virtual NodeAttributeMakeNode ()
 Make a AttrFillEffectFade node from this fill effect attribute.

Detailed Description

Specifies a 'fade' graduation for fills, i.e. a simple fade in RGB space.

Author:
Tim_Browse (Xara Group Ltd) <camelotdev@xara.com>
Date:
18/07/94
See also:
FillEffectAttribute.

Definition at line 1721 of file fillval.h.


Member Function Documentation

NodeAttribute * FillEffectFadeAttribute::MakeNode  )  [virtual]
 

Make a AttrFillEffectFade node from this fill effect attribute.

Author:
Will_Cowling (Xara Group Ltd) <camelotdev@xara.com>
Date:
23/8/94
Returns:
Pointer to the new node, or NULL if out of memory.

Errors: Out of memory

See also:
AttributeValue::MakeNode

Reimplemented from AttributeValue.

Definition at line 8266 of file fillval.cpp.

08267 {
08268     // Create new attribute node
08269     AttrFillEffectFade *pAttr = new AttrFillEffectFade();
08270     if (pAttr==NULL)
08271         // error message has already been set by new
08272         return NULL;
08273 
08274     // Copy attribute value into the new node.
08275     pAttr->Value.SimpleCopy(this);
08276 
08277     // Return the new node
08278     return pAttr;
08279 }


The documentation for this class was generated from the following files:
Generated on Sat Nov 10 03:54:13 2007 for Camelot by  doxygen 1.4.4