#include <fillattr2.h>
Inheritance diagram for AttrBitmapDpiChange:
Public Member Functions | |
AttrBitmapDpiChange () | |
virtual AttrFillGeometry * | MutateFill (AttrFillGeometry *FillToMutate) |
Changes the bitmap dpi of a fill. | |
virtual UINT32 | GetAttrNameID (void) |
Returns a string resource ID describing the attribute. | |
void | SetDPI (INT32 NewDpi) |
UINT32 | GetDPI () |
Protected Attributes | |
INT32 | Dpi |
Definition at line 258 of file fillattr2.h.
|
Definition at line 263 of file fillattr2.h. 00263 : AttrBitmapChange() { }
|
|
Returns a string resource ID describing the attribute.
Reimplemented from AttrBitmapChange. Definition at line 4421 of file fillattr.cpp. 04422 { 04423 return (_R(IDS_BITMAPDPI_CHANGE)); 04424 }
|
|
Reimplemented from AttrFillGeometry. Definition at line 269 of file fillattr2.h. 00269 { return Dpi; }
|
|
Changes the bitmap dpi of a fill.
Reimplemented from AttrBitmapChange. Definition at line 4182 of file fillattr.cpp. 04183 { 04184 #if !defined(EXCLUDE_FROM_RALPH) 04185 // Make a copy of this Fill to change 04186 AttrFillGeometry* NewFill = (AttrFillGeometry*)FillToMutate->SimpleCopy(); 04187 if (NewFill == NULL) 04188 return NULL; 04189 04190 NewFill->SetDPI(Dpi); 04191 04192 return NewFill; 04193 #else 04194 return NULL; 04195 #endif 04196 }
|
|
Definition at line 268 of file fillattr2.h. 00268 { Dpi = NewDpi; }
|
|
Definition at line 272 of file fillattr2.h. |