home *** CD-ROM | disk | FTP | other *** search
- /*
-
- File Inspector.h
-
- The inspector allows the user to adjust the type of search as well as the various hueristics used to control it.
-
- */
-
- #import <objc/Object.h>
- #import "CrosswordSquare.h"
-
-
- /* ———————————————————————————————————————————————————————————————————————————— */
-
-
- #define COLORS 4
-
- #define BROADENING 0
- #define BESTSQUARE 1
- #define BESTLETTER 2
- #define LOOKAHEAD 3
-
-
- /* ———————————————————————————————————————————————————————————————————————————— */
-
-
- @interface Inspector:Object
- {
- NXColor color [COLORS + 2];
- id options;
- id stateType;
- id stopWatch;
- id time;
- }
-
- - (int) getStateType;
- - (BOOL) getOption: (int) i;
- - getWatch;
- - getTimeCell;
- - init;
- - (squareColor) getColor: (int) i;
- - takeColor: sender;
- - showTime;
-
- @end