#include <bitmapgriddropdown.h>
Inheritance diagram for CBGDDStrokeItem:
Public Member Functions | |
CBGDDStrokeItem (LineAttrItem *plaiStroke, BOOL bAutodelete=TRUE, String_256 strLabel=String_256()) | |
virtual | ~CBGDDStrokeItem () |
Protected Member Functions | |
virtual void | RenderItemToGRenderRegion (GRenderRegion *pRenderRegion, DocRect drcItem) const |
Protected Attributes | |
LineAttrItem * | m_plaiStroke |
BOOL | m_bDelete |
Definition at line 264 of file bitmapgriddropdown.h.
|
Definition at line 468 of file bitmapgriddropdown.cpp. 00469 : CBGDDCachedItem(strLabel) 00470 { 00471 m_plaiStroke = plaiStroke; 00472 m_bDelete = bAutodelete; 00473 }
|
|
Definition at line 475 of file bitmapgriddropdown.cpp. 00476 { 00477 if (m_bDelete) 00478 delete m_plaiStroke; 00479 }
|
|
Function : CBGDDStrokeItem::RenderItemToGRenderRegion Author : Mikhail Tatarnikov Purpose : Renders the stroke into GRenderRegion. Returns : void Exceptions: Parameters: [in] GRenderRegion* pRenderRegion - Render region to draw to; [in] DocRect drcItem - item size. Notes : Reimplemented from CBGDDCachedItem. Definition at line 492 of file bitmapgriddropdown.cpp. 00493 { 00494 // Render the stroke. 00495 m_plaiStroke->Render(pRenderRegion, drcItem, LineAttrItem::NO_LABEL); 00496 }
|
|
Definition at line 275 of file bitmapgriddropdown.h. |
|
Definition at line 274 of file bitmapgriddropdown.h. |