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
|
/************************************************************************/
/* */
/* 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 aemFontEncodingSet;
int aemFontEncodingChosen;
} AppEncodingMenu;
/************************************************************************/
/* */
/* Declarations. */
/* */
/************************************************************************/
extern void appEncodingMenuSetOptionmenu(
AppEncodingMenu * aem,
const SupportedCharset * sc,
int enc );
extern int appEncodingMenuEncodingFromWidget(
int * pEnc,
const AppEncodingMenu * aem,
APP_WIDGET w );
extern void appEncodingMenuFillOptionmenu(
char ** opts,
APP_BUTTON_CALLBACK callBack,
void * through,
AppEncodingMenu * aem );
extern void appEncodingMenuGetOptionTexts(
char ** opts,
EditApplication * ea );
extern void appEncodingMenuAdaptToFamilyEncodings(
AppEncodingMenu * aem,
const AppFontFamily * aff );
|