#include <sgline2.h>
Inheritance diagram for LineNoStartArrowItem:
Public Member Functions | |
LineNoStartArrowItem (const String &strDescription) | |
Constructs a "no-arrowhead" line gallery item. | |
Private Member Functions | |
virtual BOOL | IsEqualValueToAny (NodeAttribute **pOtherAttribs) const |
Used when searching for display items representing the selection's current attributes. | |
virtual BOOL | IsStartArrow () const |
Used to work out what kind of AttrXXXXArrow attribute type to create in LineArrowItem::CreateNewAttribute. |
Definition at line 252 of file sgline2.h.
|
Constructs a "no-arrowhead" line gallery item.
Definition at line 871 of file sgline2.cpp. 00872 : LineNoArrowItem(strDescription) 00873 { 00874 // Empty. 00875 }
|
|
Used when searching for display items representing the selection's current attributes.
Reimplemented from LineArrowItem. Definition at line 894 of file sgline2.cpp. 00895 { 00896 AttrStartArrow* psattr = (AttrStartArrow*) *ppOtherAttribs; 00897 return psattr != NULL && psattr->Value.StartArrow == m_arArrow; 00898 }
|
|
Used to work out what kind of AttrXXXXArrow attribute type to create in LineArrowItem::CreateNewAttribute.
Reimplemented from LineArrowItem. Definition at line 912 of file sgline2.cpp. 00913 { 00914 return TRUE; 00915 }
|