1 /************************************************************************/
2 /*									*/
3 /*  Spell Tool.								*/
4 /*									*/
5 /************************************************************************/
6 
7 #   ifndef	TED_SPELL_TOOL_H
8 #   define	TED_SPELL_TOOL_H
9 
10 #   include	<appSpellTool.h>
11 #   include	<appFrame.h>
12 #   include	<docBuf.h>
13 #   include	<docSelectionDescription.h>
14 
15 /************************************************************************/
16 /*									*/
17 /*  Routine declarations.						*/
18 /*									*/
19 /************************************************************************/
20 
21 extern void tedRefreshSpellTool(SpellTool *			ast,
22 				int *				pEnabled,
23 				int *				pPref,
24 				InspectorSubject *		is,
25 				const DocumentSelection *	ds,
26 				const SelectionDescription *	sd,
27 				const BufferDocument *		bd,
28 				int				documentId,
29 				const unsigned char *		cmdEnabled );
30 
31 extern void tedFillSpellTool(	SpellTool *			ast,
32 				const SpellToolResources *	astr,
33 				AppInspector *			ai,
34 				int				subjectPage,
35 				InspectorSubject *		is,
36 				APP_WIDGET			pageWidget,
37 				const InspectorSubjectResources * isr );
38 
39 extern void tedFormatShowSpellPage( EditApplication *		ea );
40 
41 #   endif	/*  TED_SPELL_TOOL_H */
42