#include <ngscan.h>
Inheritance diagram for SelectIntersectScan:
Public Member Functions | |
SelectIntersectScan (Change eChange) | |
Protected Member Functions | |
virtual BOOL | OnSelectable (NodeRenderable *) |
Called by SelectIntersectScan when the 'intersect' action is executed. Tests the given node for membership of all highlighted sets and changes it's selection status accordingly. |
Definition at line 210 of file ngscan.h.
|
|
|
Called by SelectIntersectScan when the 'intersect' action is executed. Tests the given node for membership of all highlighted sets and changes it's selection status accordingly.
Reimplemented from SelectUnionScan. Definition at line 484 of file ngscan.cpp. 00485 { 00486 // If it's a member of every highlighted SGNameItem then change its selection. 00487 if (Test(pRender, Test::IS_NON_MEMBER).ForEach() == 0) 00488 BaseSelectScan::OnSelectable(pRender); 00489 00490 return TRUE; 00491 }
|