#include <ngscan.h>
Inheritance diagram for CreateDisplayScan:
Public Member Functions | |
CreateDisplayScan () | |
Constructs a CreateDisplayScan object. | |
Protected Member Functions | |
virtual BOOL | Pre () |
Called by CreateDisplayScan when the gallery display is (re)created. Resets the running counters of total and selected objects in each display item. | |
virtual BOOL | Do (Node *) |
Called by CreateDisplayScan when the gallery display is (re)created. Tests the given node for membership of each set and if it is a member, creates a new SGNameItem for its name ('attribute value') if one doesn't already exist, and includes it in the running counts of total and selected objects. | |
virtual BOOL | Post () |
Called by CreateDisplayScan when the gallery display is (re)created. Deletes any SGNameItems which don't have any members and folds any groups that don't have items. | |
Classes | |
class | ClearCounters |
class | CreateItems |
class | DelItemIfUnref |
class | FoldGroupIfEmpty |
Definition at line 402 of file ngscan.h.
|
Constructs a CreateDisplayScan object.
Definition at line 1227 of file ngscan.cpp. 01228 : NodeScan(&theSelectedDocument) 01229 { 01230 // Empty. 01231 }
|
|
Called by CreateDisplayScan when the gallery display is (re)created. Tests the given node for membership of each set and if it is a member, creates a new SGNameItem for its name ('attribute value') if one doesn't already exist, and includes it in the running counts of total and selected objects.
Implements NodeScan. Definition at line 1265 of file ngscan.cpp. 01266 { 01267 // Create/register with the sets that contain pInkNode as a member. 01268 return CreateItems(pNode).ForEach() == 0; 01269 }
|
|
Called by CreateDisplayScan when the gallery display is (re)created. Deletes any SGNameItems which don't have any members and folds any groups that don't have items.
Reimplemented from NodeScan. Definition at line 1284 of file ngscan.cpp.
|
|
Called by CreateDisplayScan when the gallery display is (re)created. Resets the running counters of total and selected objects in each display item.
Reimplemented from NodeScan. Definition at line 1245 of file ngscan.cpp.
|