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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
/************************************************************************/
/* */
/* Utility routines for the FormatTool. */
/* */
/************************************************************************/
# include "tedConfig.h"
# include <stdlib.h>
# include <stdio.h>
# include <stddef.h>
# include <limits.h>
# include <appGeoString.h>
# include <appUnit.h>
# include "tedApp.h"
# include "tedFormatTool.h"
# include <appDebugon.h>
/************************************************************************/
/* */
/* Validate a dimension */
/* */
/************************************************************************/
int tedFormatValidateDimension( int * pNewValue,
int * pChanged,
APP_WIDGET w,
int oldValue )
{
int changed;
const int minValue= 1;
const int adaptToMin= 0;
const int maxValue= INT_MAX;
const int adaptToMax= 0;
if ( ! appGetLengthFromTextWidget( w, &oldValue, &changed, UNITtyPOINTS,
minValue, adaptToMin, maxValue, adaptToMax ) )
{
char scratch[50];
appGeoLengthToString( scratch, oldValue, UNITtyPOINTS );
appStringToTextWidget( w, scratch );
if ( changed )
{ *pNewValue= oldValue; }
*pChanged= changed; return 0;
}
return -1;
}
int tedFormatToolGetGapWidth( const RowProperties * rp,
int * pValue,
APP_WIDGET w )
{
int value;
int changed;
int minWidth;
const CellProperties * cp;
int col;
const int minValue= 1;
const int adaptToMin= 0;
const int maxValue= INT_MAX;
const int adaptToMax= 0;
value= rp->rpHalfGapWidthTwips;
if ( appGetLengthFromTextWidget( w, &value, &changed, UNITtyPOINTS,
minValue, adaptToMin, maxValue, adaptToMax ) )
{ return -1; }
cp= rp->rpCells;
minWidth= cp->cpRightBoundaryTwips- rp->rpLeftIndentTwips;
for ( col= 1; col < rp->rpCellCount; cp++, col++ )
{
int cellWidth;
cellWidth= cp[1].cpRightBoundaryTwips- cp[0].cpRightBoundaryTwips;
if ( minWidth > cellWidth )
{ minWidth= cellWidth; }
}
if ( 2* value >= minWidth )
{
char scratch[50];
value= minWidth/3;
appGeoLengthToString( scratch, value, UNITtyPOINTS );
appStringToTextWidget( w, scratch );
appRefuseTextValue( w );
return 1;
}
*pValue= value;
return 0;
}
int tedFormatToolGetRowLeftIndent( const RowProperties * rp,
const int pageLeftMargin,
int * pValue,
APP_WIDGET w )
{
int value;
int changed;
char scratch[50];
const int minValue= INT_MIN;
const int adaptToMin= 0;
const int maxValue= INT_MAX;
const int adaptToMax= 0;
value= rp->rpLeftIndentTwips;
if ( appGetLengthFromTextWidget( w, &value, &changed, UNITtyPOINTS,
minValue, adaptToMin, maxValue, adaptToMax ) )
{ return -1; }
if ( value < -pageLeftMargin )
{
value= -pageLeftMargin+ 10;
appGeoLengthToString( scratch, value, UNITtyPOINTS );
appStringToTextWidget( w, scratch );
appRefuseTextValue( w );
return 1;
}
if ( value+ 2* rp->rpHalfGapWidthTwips >=
rp->rpCells[0].cpRightBoundaryTwips )
{
value= rp->rpCells[0].cpRightBoundaryTwips- 3* rp->rpHalfGapWidthTwips;
if ( value < -pageLeftMargin )
{ appRefuseTextValue( w ); return -1; }
appGeoLengthToString( scratch, value, UNITtyPOINTS );
appStringToTextWidget( w, scratch );
appRefuseTextValue( w );
return 1;
}
*pValue= value; return 0;
}
/************************************************************************/
/* */
/* Retrieve a candidate shading for a table rectangle from a shading */
/* tool. */
/* */
/* 1) Get shading with expanded colors. */
/* 2) Reduce colors to palette indexes. */
/* 3) Transfer to the row properties. */
/* */
/************************************************************************/
int tedFormatToolGetShading( PropertyMask * cpSetMask,
RowProperties * rp,
int col0,
int col1,
DocumentProperties * dp,
ShadingTool * st )
{
PropertyMask isSetMask;
ExpandedItemShading eis;
ItemShading is;
docInitExpandedItemShading( &eis );
docInitItemShading( &is );
PROPmaskCLEAR( &isSetMask );
/* 1 */
if ( tedShadingToolGetShading( &eis, &isSetMask, st ) )
{ LDEB(1); return -1; }
if ( ! PROPmaskISEMPTY( &isSetMask ) )
{
PropertyMask isDoneMask;
PROPmaskCLEAR( &isDoneMask );
/* 2 */
if ( docIndirectItemShading( &isDoneMask, &is, &isSetMask, &eis,
&(dp->dpColors), &(dp->dpColorCount) ) )
{ LDEB(1); return -1; }
/* 3 */
docRowSetShadingInCols( rp, col0, col1, &isSetMask, &is );
docShadingMaskToCellMask( &isSetMask, &isSetMask );
utilPropMaskOr( cpSetMask, cpSetMask, &isSetMask );
}
return 0;
}
|