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
|
/************************************************************************/
/* */
/* Intermediary functionality for the page layout page. */
/* */
/************************************************************************/
# include "tedConfig.h"
# include <stdlib.h>
# include <stdio.h>
# include <stddef.h>
# include <limits.h>
# include <appDebugon.h>
# include "tedApp.h"
# include "tedFormatTool.h"
void tedFormatToolRefreshPageLayoutTool(
PageLayoutTool * plt,
int * pEnabled,
InspectorSubject * is,
const DocumentSelection * ds,
const DocumentProperties * dp )
{
BufferItem * sectBi;
sectBi= ds->dsBegin.dpBi;
while( sectBi && sectBi->biLevel > DOClevSECT )
{ sectBi= sectBi->biParent; }
if ( ! sectBi )
{ XDEB(sectBi); return; }
appPageLayoutPageRefresh( plt, pEnabled, is,
&(sectBi->biSectDocumentGeometry), &(dp->dpGeometry) );
if ( ds->dsSelectionScope.ssInExternalItem != DOCinBODY )
{ *pEnabled= 0; }
return;
}
/************************************************************************/
/* */
/* Make a page layout page customized for Ted. */
/* */
/************************************************************************/
void tedFormatFillPageLayoutPage(
PageLayoutTool * plt,
const PageLayoutPageResources * plpr,
InspectorSubject * is,
APP_WIDGET pageWidget,
const InspectorSubjectResources * isr )
{
const int doHdFt= 1;
const int doSelection= 1;
appPageLayoutPageFillPage( plt, doHdFt, doSelection,
plpr, is, pageWidget, isr );
}
/************************************************************************/
/* */
/* Finish the page layout page. */
/* */
/************************************************************************/
void tedFormatFinishPageLayoutPage( PageLayoutTool * plt,
TedFormatTool * tft,
const PageLayoutPageResources * plpr )
{
appPageLayoutPageFinishPage( plt, plpr );
}
|