#include <sgline2.h>
Inheritance diagram for LineNoEndArrowItem:
Public Member Functions | |
LineNoEndArrowItem (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 274 of file sgline2.h.
|
Constructs a "no-arrowhead" line gallery item.
Definition at line 932 of file sgline2.cpp. 00933 : LineNoArrowItem(strDescription) 00934 { 00935 // Empty. 00936 }
|
|
Used when searching for display items representing the selection's current attributes.
Reimplemented from LineArrowItem. Definition at line 955 of file sgline2.cpp. 00956 { 00957 AttrEndArrow* peattr = (AttrEndArrow*) ppOtherAttribs[1]; 00958 return peattr != NULL && peattr->Value.EndArrow == m_arArrow; 00959 }
|
|
Used to work out what kind of AttrXXXXArrow attribute type to create in LineArrowItem::CreateNewAttribute.
Reimplemented from LineArrowItem. Definition at line 973 of file sgline2.cpp. 00974 { 00975 return FALSE; 00976 }
|