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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/************************************************************************/
/* */
/* Format tool: */
/* */
/************************************************************************/
# ifndef TED_SECTION_TOOL_H
# define TED_SECTION_TOOL_H
/************************************************************************/
/* */
/* Resources for the 'Section; page. */
/* */
/************************************************************************/
typedef struct SectionPageResources
{
char * sprUnitType;
char * sprNumberingRestarts;
char * sprPageNumberStyle;
char * sprNumberStyleMenuTexts[DOCpgn_COUNT];
char * sprBreakKind;
char * sprBreakKindMenuTexts[DOCsbk_COUNT];
char * sprColumnCount;
char * sprColumnSpacing;
char * sprColumnWidth;
} SectionPageResources;
/************************************************************************/
/* */
/* A section tool, i.e. the 'Section' page of the format tool. */
/* */
/************************************************************************/
typedef struct SectionTool
{
EditApplication * stApplication;
AppInspector * stInspector;
const SectionPageResources * stPageResources;
int stUnitType;
SectionProperties stPropertiesSet;
SectionProperties stPropertiesChosen;
int stSectionNumber;
APP_WIDGET stNumberText;
APP_WIDGET stPageRestartToggle;
APP_WIDGET stPageRestartText;
AppOptionmenu stNumberStyleOptionmenu;
APP_WIDGET stNumberStyleItems[DOCpgn_COUNT];
AppOptionmenu stBreakKindOptionmenu;
APP_WIDGET stBreakKindItems[DOCsbk_COUNT];
APP_WIDGET stColumnsText;
APP_WIDGET stColumnSpacingText;
APP_WIDGET stColumnWidthText;
} SectionTool;
/************************************************************************/
/* */
/* Routine declarations. */
/* */
/************************************************************************/
extern void tedFormatToolGetSectResourceTable( EditApplication * ea,
SectionPageResources * spr,
InspectorSubjectResources * isr );
extern void tedFormatToolRefreshSectionTool(
SectionTool * st,
int * pEnabled,
InspectorSubject * is,
const DocumentSelection * bs );
# endif /* TED_SECTION_TOOL_H */
|