File: appEncodingMenu.h

package info (click to toggle)
ted 2.16-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 13,944 kB
  • ctags: 20,273
  • sloc: ansic: 167,980; makefile: 12,518; sh: 263
file content (55 lines) | stat: -rw-r--r-- 1,480 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/************************************************************************/
/*									*/
/*  Manage a menu to contol the font encoding in a font selection tool.	*/
/*									*/
/************************************************************************/

#   include	"appFrameConfig.h"

#   include	<psFont.h>
#   include	<utilFontEncoding.h>

#   include	<appGuiBase.h>
#   include	<appFrame.h>

typedef struct AppEncodingMenu
    {
    AppOptionmenu	aemEncodingOptionmenu;
    APP_WIDGET		aemFontEncodingOptions[ENCODINGps_COUNT];

    int			aemFontEncoding;
    } AppEncodingMenu;

/************************************************************************/
/*									*/
/*  Declarations.							*/
/*									*/
/************************************************************************/

extern void appEncodingMenuUnsetEncoding(
				AppEncodingMenu *		aem );

extern void appEncodingMenuSetEncoding(
				AppEncodingMenu *		aem,
				const DocumentFontFamily *	dff,
				int				enc );

extern void appEncodingMenuSetDocEncoding(
				AppEncodingMenu *	aem,
				const int *		fontForEncoding,
				int			enc );

extern void appEncodingMenuFillOptionmenu(
				char * const *			opts,
				APP_OITEM_CALLBACK_T		callBack,
				void *				through,
				AppEncodingMenu *		aem );

extern void appEncodingMenuGetOptionTexts(
				char **				opts,
				EditApplication *		ea );

extern void appEncodingMenuAdaptToFamilyEncodings(
				AppEncodingMenu *		aem,
				const DocumentFontFamily *	dff );