24 #ifndef __WALKERSCOPEOPTIONS_H 25 #define __WALKERSCOPEOPTIONS_H 38 fIncludeMasterPages = kTrue;
39 fIncludeLockedLayers = kTrue;
40 fIncludeHiddenLayers = kTrue;
41 fIncludeLockedStories = kTrue;
42 fIncludeFootnotes = kTrue;
43 fSearchBackwards = kFalse;
59 WalkerScopeOptions(bool16 includeMasterPages,bool16 includeLockedLayers,bool16 includeHiddenLayers,bool16 includeLockedStories,bool16 includeFootnotes, bool16 searchBackwards)
61 fIncludeMasterPages = includeMasterPages;
62 fIncludeLockedLayers = includeLockedLayers;
63 fIncludeHiddenLayers = includeHiddenLayers;
64 fIncludeLockedStories = includeLockedStories;
65 fIncludeFootnotes = includeFootnotes;
66 fSearchBackwards = searchBackwards;
75 return fIncludeMasterPages;
84 fIncludeMasterPages = inIncludeMasterPages;
93 return fIncludeLockedLayers;
102 fIncludeLockedLayers = inIncludeLockedLayers;
111 return fIncludeHiddenLayers;
120 fIncludeHiddenLayers = inIncludeHiddenLayers;
129 return fIncludeLockedStories;
138 fIncludeLockedStories = inIncludeLockedStories;
147 return fIncludeFootnotes;
156 fIncludeFootnotes = inIncludeFootnotes;
165 return fSearchBackwards;
174 fSearchBackwards = inSearchBackwards;
177 bool16 fIncludeMasterPages;
178 bool16 fIncludeLockedLayers;
179 bool16 fIncludeHiddenLayers;
180 bool16 fIncludeLockedStories;
181 bool16 fIncludeFootnotes;
182 bool16 fSearchBackwards;