#include <ngscan.h>
Inheritance diagram for SelectUnionScan:
Public Member Functions | |
SelectUnionScan (Change eChange) | |
Protected Member Functions | |
virtual BOOL | OnSelectable (NodeRenderable *) |
Called by SelectUnionScan when the 'select' action is executed. Tests the given node for membership of the highlighted SGNameItems and changes its selection status if it is a member of any. | |
Classes | |
class | Test |
Definition at line 177 of file ngscan.h.
|
|
|
Called by SelectUnionScan when the 'select' action is executed. Tests the given node for membership of the highlighted SGNameItems and changes its selection status if it is a member of any.
Reimplemented from BaseSelectScan. Reimplemented in SelectIntersectScan. Definition at line 404 of file ngscan.cpp. 00405 { 00406 // If it's a member of any highlighted SGNameItem then change its selection. 00407 if (Test(pRender, Test::IS_MEMBER).ForEach() != 0) 00408 BaseSelectScan::OnSelectable(pRender); 00409 00410 return TRUE; 00411 }
|