1 /************************************************************************/
2 /*									*/
3 /*  Symbol Picker:							*/
4 /*									*/
5 /************************************************************************/
6 
7 #   ifndef	TED_SYMBOL_PICKER_H
8 #   define	TED_SYMBOL_PICKER_H
9 
10 #   include	<appSymbolPicker.h>
11 #   include	<docSelect.h>
12 #   include	<docSelectionDescription.h>
13 #   include	<docBuf.h>
14 
15 /************************************************************************/
16 /*									*/
17 /*  Routine declarations.						*/
18 /*									*/
19 /************************************************************************/
20 
21 extern void tedRefreshSymbolPicker(
22 				SymbolPicker *			sp,
23 				int *				pEnabled,
24 				int *				pPref,
25 				InspectorSubject *		is,
26 				const DocumentSelection *	ds,
27 				const SelectionDescription *	sd,
28 				const BufferDocument *		bd,
29 				int				documentId,
30 				const unsigned char *		cmdEnabled );
31 
32 extern void tedSymbolPickerInsert(	void *			voidea,
33 					const char *		bytes,
34 					int			size,
35 					const TextAttribute *	taSet,
36 					const PropertyMask *	taSetMask );
37 
38 #   endif	/*  TED_SYMBOL_PICKER_H */
39