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 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
|
/************************************************************************/
/* */
/* The 'Bullets and Numbering' page of the format tool. */
/* */
/************************************************************************/
# include "tedConfig.h"
# include <stdlib.h>
# include <stdio.h>
# include <stddef.h>
# include <limits.h>
# include <appGeoString.h>
# include <appUnit.h>
# include "docEvalField.h"
# include "tedApp.h"
# include "tedFormatTool.h"
# include <appDebugon.h>
/************************************************************************/
/* */
/* Supported styles: */
/* */
/************************************************************************/
static const int TED_ListToolStyles[LISTTOOLcountSTYLES]=
{
0,
1,
2,
3,
4,
22,
23,
255,
};
/************************************************************************/
/* */
/* Refresh the controls with the current list level. */
/* */
/************************************************************************/
static void tedListToolRefreshCurrentLevel( ListTool * lt )
{
const DocumentList * dl= &(lt->ltListPropertiesChosen);
const DocumentListLevel * dll;
int level= lt->ltCurrentLevel;
char scratch[22];
int i;
if ( level < 0 || level >= dl->dlLevelCount )
{
appStringToTextWidget( lt->ltLevelText, "" );
appStringToTextWidget( lt->ltStartAtText, "" );
appSetOptionmenu( &(lt->ltNumberStyleOptionmenu), -1 );
appSetOptionmenu( &(lt->ltJustifyOptionmenu), -1 );
appSetOptionmenu( &(lt->ltFollowOptionmenu), -1 );
return;
}
dll= &(dl->dlLevels[level]);
appGeoLengthToString( scratch,
dll->dllLeftIndentTwips+ dll->dllFirstIndentTwips, UNITtyPOINTS );
appStringToTextWidget( lt->ltFirstIndentText, scratch );
appGeoLengthToString( scratch, dll->dllLeftIndentTwips, UNITtyPOINTS );
appStringToTextWidget( lt->ltLeftIndentText, scratch );
appIntegerToTextWidget( lt->ltLevelText, level+ 1 );
appIntegerToTextWidget( lt->ltStartAtText, dll->dllStartAt );
for ( i= 0; i < LISTTOOLcountSTYLES; i++ )
{
if ( dll->dllNumberStyle == TED_ListToolStyles[i] )
{ break; }
}
if ( i >= LISTTOOLcountSTYLES )
{ i= -1; }
appSetOptionmenu( &(lt->ltNumberStyleOptionmenu), i );
appSetOptionmenu( &(lt->ltJustifyOptionmenu), dll->dllJustification );
appSetOptionmenu( &(lt->ltFollowOptionmenu), dll->dllFollow );
return;
}
/************************************************************************/
/* */
/* Select a certain tab in the list. */
/* */
/************************************************************************/
static void tedListToolSelectLevel( ListTool * lt,
int n )
{
const DocumentList * dl= &(lt->ltListPropertiesChosen);
if ( n >= 0 && n >= dl->dlLevelCount )
{ LLDEB(n,dl->dlLevelCount); n= -1; }
if ( n >= 0 )
{
lt->ltCurrentLevel= n;
appGuiSelectPositionInListWidget( lt->ltListLevelList, n );
}
else{
lt->ltCurrentLevel= -1;
appGuiRemoveSelectionFromListWidget( lt->ltListLevelList );
}
tedListToolRefreshCurrentLevel( lt );
return;
}
/************************************************************************/
/* */
/* Refresh the list of tabs and the currently selected tab. */
/* */
/************************************************************************/
static void tedFormatToolRefreshListPage( ListTool * lt )
{
const DocumentList * dl= &(lt->ltListPropertiesChosen);
const ListOverride * lo= &(lt->ltListOverrideChosen);
appGuiEmptyListWidget( lt->ltListLevelList );
if ( dl->dlLevelCount > 0 )
{
char scratch[100];
unsigned char listtext[50];
const DocumentListLevel * dll;
int lev;
docListGetFormatPath( lt->ltStartPath, lt->ltFormatPath,
&dll, dl->dlLevelCount- 1, dl, lo );
dll= dl->dlLevels;
for ( lev= 0; lev < dl->dlLevelCount; dll++, lev++ )
{
int numberPath[DLmaxLEVELS];
int l;
if ( lt->ltPrevLevel >= 0 )
{
for ( l= 0; l <= lev; l++ )
{ numberPath[l]= lt->ltPrevPath[l]; }
if ( lev > lt->ltPrevLevel )
{
for ( l= lt->ltPrevLevel+ 1; l <= lev; l++ )
{ numberPath[l]= 0; }
}
else{
numberPath[lev]= lt->ltPrevPath[lev]+ 1;
}
}
else{
for ( l= 0; l <= lev; l++ )
{ numberPath[l]= lt->ltHerePath[l]; }
}
if ( docCalculateListtextString( listtext, sizeof(listtext)-1,
lev, numberPath,
lt->ltStartPath,
lt->ltFormatPath, dll ) < 0 )
{ listtext[0]= '\0'; }
sprintf( scratch, "%d: %s", lev+ 1, (char *)listtext );
appGuiAddValueToListWidget( lt->ltListLevelList, scratch );
}
tedListToolSelectLevel( lt, lt->ltCurrentLevel );
}
return;
}
/************************************************************************/
/* */
/* Adapt the tabs tool to the current selection in the document. */
/* */
/************************************************************************/
static void tedFormatToolNoList( ListTool * lt,
InspectorSubject * is )
{
docCleanDocumentList( &(lt->ltListPropertiesSet) );
docCleanDocumentList( &(lt->ltListPropertiesChosen) );
docInitDocumentList( &(lt->ltListPropertiesSet) );
docInitDocumentList( &(lt->ltListPropertiesChosen) );
docCleanListOverride( &(lt->ltListOverrideSet) );
docCleanListOverride( &(lt->ltListOverrideChosen) );
docInitListOverride( &(lt->ltListOverrideSet) );
docInitListOverride( &(lt->ltListOverrideChosen) );
lt->ltCurrentLevel= -1;
lt->ltHereLevel= -1;
lt->ltPrevLevel= -1;
lt->ltCurrentParagraphNumber= -1;
appGuiEnableWidget( lt->ltRemoveFromListButton, 0 );
appGuiEnableWidget( is->isApplyButton, 0 );
appGuiEnableWidget( is->isRevertButton, 0 );
appGuiEnableWidget( lt->ltListLevelFrame, 0 );
appGuiEnableWidget( lt->ltSetLevelButton, 0 );
return;
}
static int tedFormatToolSetList( ListTool * lt,
InspectorSubject * is,
int paraNr,
int ls,
int level,
ListOverride * lo,
DocumentList * dl,
ListNumberTreeNode * root )
{
const int * const fontMap= (const int *)0;
const int * const colorMap= (const int *)0;
if ( docCopyDocumentList( &(lt->ltListPropertiesSet), dl,
fontMap, colorMap ) )
{ LDEB(1); return -1; }
if ( docCopyDocumentList( &(lt->ltListPropertiesChosen), dl,
fontMap, colorMap ) )
{ LDEB(1); return -1; }
if ( docCopyListOverride( &(lt->ltListOverrideSet), lo,
fontMap, colorMap ) )
{ LDEB(1); return -1; }
if ( docCopyListOverride( &(lt->ltListOverrideChosen), lo,
fontMap, colorMap ) )
{ LDEB(1); return -1; }
lt->ltHereLevel= level;
if ( paraNr != lt->ltCurrentParagraphNumber ||
lt->ltCurrentLevel < 0 ||
lt->ltCurrentLevel >=
lt->ltListPropertiesChosen.dlLevelCount )
{ lt->ltCurrentLevel= level; }
lt->ltCurrentParagraphNumber= paraNr;
docListNumberTreeGetNumberPath( lt->ltHerePath, root, level, paraNr );
if ( docListNumberTreeGetPrevPath( lt->ltPrevPath, &(lt->ltPrevLevel),
root, paraNr ) )
{
int i;
for ( i= 0; i <= level; i++ )
{ lt->ltPrevPath[i]= lt->ltHerePath[i]; }
lt->ltPrevLevel= -1;
}
appGuiEnableWidget( lt->ltRemoveFromListButton, 1 );
appGuiEnableWidget( is->isApplyButton, 1 );
appGuiEnableWidget( is->isRevertButton, 1 );
appGuiEnableWidget( lt->ltListLevelFrame, 1 );
appGuiEnableWidget( lt->ltSetLevelButton, 1 );
return 0;
}
void tedFormatToolRefreshListTool(
ListTool * lt,
int * pEnabled,
int * pPref,
InspectorSubject * is,
const DocumentSelection * ds,
const SelectionDescription * sd,
BufferDocument * bd )
{
ListOverride * lo;
DocumentList * dl;
ListNumberTreeNode * root;
int i;
for ( i= 0; i < DLmaxLEVELS; i++ )
{
lt->ltPrevPath[i]= 0;
lt->ltHerePath[i]= 0;
}
lt->ltPrevLevel= -1;
lt->ltHereLevel= -1;
if ( ! sd->sdHasLists ||
sd->sdListOverride < 1 ||
docGetListOfParagraph( &lo, &root, &dl,
sd->sdListOverride, bd ) )
{ tedFormatToolNoList( lt, is ); }
else{
if ( tedFormatToolSetList( lt, is, sd->sdFirstListParaNr,
sd->sdListOverride, sd->sdListLevel, lo, dl, root ) )
{ LDEB(sd->sdFirstListParaNr); return; }
}
if ( sd->sdListOverride > 0 && sd->sdMultiList )
{ appGuiEnableWidget( lt->ltSetListButton, 1 ); }
else{ appGuiEnableWidget( lt->ltSetListButton, 0 ); }
/**/
if ( lt->ltCurrentLevel < 0 ||
lt->ltCurrentLevel >= lt->ltListPropertiesChosen.dlLevelCount )
{
if ( lt->ltListPropertiesChosen.dlLevelCount > 0 )
{ lt->ltCurrentLevel= 0; }
else{ lt->ltCurrentLevel= -1; }
}
tedFormatToolRefreshListPage( lt );
*pEnabled= ds->dsSelectionScope.ssInExternalItem == DOCinBODY;
*pEnabled= 0;
return;
}
/************************************************************************/
/* */
/* The 'Set List' button on the list tool has been pushed. */
/* The 'Set Level' button on the list tool has been pushed. */
/* */
/************************************************************************/
static APP_BUTTON_CALLBACK_H( tedFormatListSetListPushed, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
EditApplication * ea= lt->ltApplication;
const ListOverride * lo= &(lt->ltListOverrideChosen);
ParagraphProperties pp;
PropertyMask ppSetMask;
PROPmaskCLEAR( &ppSetMask );
PROPmaskADD( &ppSetMask, PPpropLISTOVERRIDE );
docInitParagraphProperties( &pp );
pp.ppListOverride= lo->loIndex;
if ( tedAppChangeParagraphProperties( ea, &ppSetMask, &pp ) )
{ LDEB(1); }
docCleanParagraphProperties( &pp );
return;
}
static APP_BUTTON_CALLBACK_H( tedFormatListSetLevelPushed, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
const DocumentList * dl= &(lt->ltListPropertiesChosen);
EditApplication * ea= lt->ltApplication;
ParagraphProperties pp;
PropertyMask ppSetMask;
if ( lt->ltCurrentLevel < 0 || lt->ltCurrentLevel >= dl->dlLevelCount )
{ LLDEB(lt->ltCurrentLevel,dl->dlLevelCount); return; }
PROPmaskCLEAR( &ppSetMask );
PROPmaskADD( &ppSetMask, PPpropLISTLEVEL );
docInitParagraphProperties( &pp );
pp.ppListLevel= lt->ltCurrentLevel;
if ( tedAppChangeParagraphProperties( ea, &ppSetMask, &pp ) )
{ LDEB(1); }
docCleanParagraphProperties( &pp );
return;
}
/************************************************************************/
/* */
/* The 'Remove from List' button on the list tool has been pushed. */
/* */
/************************************************************************/
static APP_BUTTON_CALLBACK_H( tedFormatListRemoveFromListPushed, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
EditApplication * ea= lt->ltApplication;
ParagraphProperties pp;
PropertyMask ppSetMask;
PROPmaskCLEAR( &ppSetMask );
PROPmaskADD( &ppSetMask, PPpropLISTOVERRIDE );
PROPmaskADD( &ppSetMask, PPpropLISTLEVEL );
docInitParagraphProperties( &pp );
if ( tedAppChangeParagraphProperties( ea, &ppSetMask, &pp ) )
{ LDEB(1); }
docCleanParagraphProperties( &pp );
return;
}
static APP_BUTTON_CALLBACK_H( tedFormatListNewListPushed, w, voidlt )
{
LDEB(1); return;
}
/************************************************************************/
/* */
/* The 'Revert' button on the list tool has been pushed. */
/* */
/************************************************************************/
static APP_BUTTON_CALLBACK_H( tedFormatListRevertPushed, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
const int * const fontMap= (const int *)0;
const int * const colorMap= (const int *)0;
if ( docCopyDocumentList( &(lt->ltListPropertiesChosen),
&(lt->ltListPropertiesSet), fontMap, colorMap ) )
{ LDEB(1); return; }
if ( docCopyListOverride( &(lt->ltListOverrideChosen),
&(lt->ltListOverrideSet), fontMap, colorMap ) )
{ LDEB(1); return; }
tedFormatToolRefreshListPage( lt );
return;
}
/************************************************************************/
/* */
/* A level was selected in the list. */
/* */
/************************************************************************/
static APP_LIST_CALLBACK_H( tedListToolLevelChosen, w, voidlt, voidlcs )
{
ListTool * lt= (ListTool *)voidlt;
const DocumentList * dl= &(lt->ltListPropertiesChosen);
int level;
level= appGuiGetPositionFromListCallback( w, voidlcs );
/* No: takes the role of 'Revert'
if ( level == lt->ltCurrentLevel )
{ return; }
*/
if ( level < 0 || level >= dl->dlLevelCount )
{ LLDEB(level,dl->dlLevelCount); }
lt->ltCurrentLevel= level;
tedListToolRefreshCurrentLevel( lt );
return;
}
/************************************************************************/
/* */
/* Change the current list in the document. */
/* */
/************************************************************************/
static APP_BUTTON_CALLBACK_H( tedFormatChangeList, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
EditApplication * ea= lt->ltApplication;
DocumentList * dl= &(lt->ltListPropertiesChosen);
int level= lt->ltCurrentLevel;
DocumentListLevel * dll;
int li;
int lipfi;
int changed;
const int maxValue= INT_MAX;
const int adaptToMax= 0;
if ( level < 0 || level >= dl->dlLevelCount )
{ LLDEB(level,dl->dlLevelCount); return; }
dll= &(dl->dlLevels[level]);
/**/
lipfi= dll->dllLeftIndentTwips+ dll->dllFirstIndentTwips;
if ( appGetLengthFromTextWidget( lt->ltFirstIndentText,
&lipfi, &changed, UNITtyPOINTS,
INT_MIN, 0, maxValue, adaptToMax ) )
{ return; }
li= dll->dllLeftIndentTwips;
if ( appGetLengthFromTextWidget( lt->ltLeftIndentText,
&li, &changed, UNITtyPOINTS,
1, 1, maxValue, adaptToMax ) )
{ return; }
dll->dllLeftIndentTwips= li;
dll->dllFirstIndentTwips= lipfi- li;
/**/
if ( appGetIntegerFromTextWidget( lt->ltStartAtText,
&(dll->dllStartAt), 1, 0, INT_MAX, 0 ) )
{ return; }
if ( tedAppChangeCurrentList( ea, dl ) )
{ LDEB(1); return; }
return;
}
/************************************************************************/
/* */
/* A number style has been chosen in the menu in the list level */
/* properties frame. */
/* */
/************************************************************************/
static APP_OITEM_CALLBACK_H( tedListNumberStyleChosen, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
DocumentList * dl= &(lt->ltListPropertiesChosen);
int level= lt->ltCurrentLevel;
DocumentListLevel * dll;
int style;
if ( level < 0 || level >= dl->dlLevelCount )
{ LLDEB(level,dl->dlLevelCount); return; }
dll= &(dl->dlLevels[level]);
style= appGuiGetOptionmenuItemIndex( &(lt->ltNumberStyleOptionmenu), w );
if ( style < 0 || style >= LISTTOOLcountSTYLES )
{ LLDEB(style,LISTTOOLcountSTYLES); return; }
dll->dllNumberStyle= TED_ListToolStyles[style];
return;
}
static APP_OITEM_CALLBACK_H( tedListJustifyChosen, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
DocumentList * dl= &(lt->ltListPropertiesChosen);
int level= lt->ltCurrentLevel;
DocumentListLevel * dll;
int justify;
if ( level < 0 || level >= dl->dlLevelCount )
{ LLDEB(level,dl->dlLevelCount); return; }
dll= &(dl->dlLevels[level]);
justify= appGuiGetOptionmenuItemIndex( &(lt->ltJustifyOptionmenu), w );
if ( justify < 0 || justify >= DOClla_COUNT )
{ LLDEB(justify,DOClla_COUNT); return; }
dll->dllJustification= justify;
return;
}
static APP_OITEM_CALLBACK_H( tedListFollowChosen, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
DocumentList * dl= &(lt->ltListPropertiesChosen);
int level= lt->ltCurrentLevel;
DocumentListLevel * dll;
int follow;
if ( level < 0 || level >= dl->dlLevelCount )
{ LLDEB(level,dl->dlLevelCount); return; }
dll= &(dl->dlLevels[level]);
follow= appGuiGetOptionmenuItemIndex( &(lt->ltFollowOptionmenu), w );
if ( follow < 0 || follow >= DOCllf_COUNT )
{ LLDEB(follow,DOCllf_COUNT); return; }
dll->dllFollow= follow;
return;
}
/************************************************************************/
/* */
/* Check user input. */
/* */
/************************************************************************/
static APP_TXACTIVATE_CALLBACK_H( tedLevelStartAtChanged, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
DocumentList * dl= &(lt->ltListPropertiesChosen);
int level= lt->ltCurrentLevel;
DocumentListLevel * dll;
if ( level < 0 || level >= dl->dlLevelCount )
{ LLDEB(level,dl->dlLevelCount); return; }
dll= &(dl->dlLevels[level]);
appGetIntegerFromTextWidget( lt->ltStartAtText,
&(dll->dllStartAt), 1, 0, INT_MAX, 0 );
return;
}
static APP_TXACTIVATE_CALLBACK_H( tedLevelFirstIndentChanged, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
DocumentList * dl= &(lt->ltListPropertiesChosen);
int level= lt->ltCurrentLevel;
DocumentListLevel * dll;
int lipfi;
int changed;
if ( level < 0 || level >= dl->dlLevelCount )
{ LLDEB(level,dl->dlLevelCount); return; }
dll= &(dl->dlLevels[level]);
lipfi= dll->dllLeftIndentTwips+ dll->dllFirstIndentTwips;
tedFormatValidateDimension( &lipfi, &changed,
lt->ltFirstIndentText, lipfi );
return;
}
static APP_TXACTIVATE_CALLBACK_H( tedLevelLeftIndentChanged, w, voidlt )
{
ListTool * lt= (ListTool *)voidlt;
DocumentList * dl= &(lt->ltListPropertiesChosen);
int level= lt->ltCurrentLevel;
DocumentListLevel * dll;
int value;
int changed;
if ( level < 0 || level >= dl->dlLevelCount )
{ LLDEB(level,dl->dlLevelCount); return; }
dll= &(dl->dlLevels[level]);
tedFormatValidateDimension( &value, &changed,
lt->ltLeftIndentText, dll->dllLeftIndentTwips );
return;
}
/************************************************************************/
/* */
/* Make the tabs page of the format tool. */
/* */
/************************************************************************/
void tedFormatFillListsPage( ListTool * lt,
const ListsPageResources * lpr,
InspectorSubject * is,
APP_WIDGET pageWidget,
const InspectorSubjectResources * isr )
{
APP_WIDGET levelLabel;
APP_WIDGET startLabel;
APP_WIDGET styleLabel;
APP_WIDGET justifyLabel;
APP_WIDGET followLabel;
APP_WIDGET firstLabel;
APP_WIDGET leftLabel;
APP_WIDGET row;
const int visibleItems= 9;
const int textColumns= 10;
/**/
lt->ltPageResources= lpr;
/**/
docInitDocumentList( &(lt->ltListPropertiesSet) );
docInitDocumentList( &(lt->ltListPropertiesChosen) );
docInitListOverride( &(lt->ltListOverrideSet) );
docInitListOverride( &(lt->ltListOverrideChosen) );
lt->ltCurrentLevel= -1;
lt->ltCurrentParagraphNumber= -1;
/**/
appGuiMakeListInColumn( &(lt->ltListLevelList), pageWidget,
visibleItems, tedListToolLevelChosen, (void *)lt );
/**/
appMakeColumnFrameInColumn( &(lt->ltSelectionFrame),
&(lt->ltSelectionPaned),
pageWidget, lpr->lprSelection );
appInspectorMakeButtonRow( &row, lt->ltSelectionPaned,
&(lt->ltSetListButton), &(lt->ltRemoveFromListButton),
lpr->lprSetList, lpr->lprRemoveFromList,
tedFormatListSetListPushed,
tedFormatListRemoveFromListPushed, lt );
appInspectorMakeButtonRow( &row, lt->ltSelectionPaned,
&(lt->ltSetLevelButton), &(lt->ltNewListButton),
lpr->lprSetLevel, lpr->lprNewList,
tedFormatListSetLevelPushed,
tedFormatListNewListPushed, lt );
/**/
appMakeColumnFrameInColumn( &(lt->ltListLevelFrame),
&(lt->ltListLevelPaned),
pageWidget, lpr->lprListLevel );
/**/
appMakeLabelAndTextRow( &row, &levelLabel, &(lt->ltLevelText),
lt->ltListLevelPaned,
lpr->lprLevel, textColumns, 1 );
appEnableText( lt->ltLevelText, 0 );
/**/
appMakeLabelAndTextRow( &row, &firstLabel, &(lt->ltFirstIndentText),
lt->ltListLevelPaned,
lpr->lprLevelFirstIndent, textColumns, 1 );
appGuiSetGotValueCallbackForText( lt->ltFirstIndentText,
tedLevelFirstIndentChanged, (void *)lt );
/**/
appMakeLabelAndTextRow( &row, &leftLabel, &(lt->ltLeftIndentText),
lt->ltListLevelPaned,
lpr->lprLevelLeftIndent, textColumns, 1 );
appGuiSetGotValueCallbackForText( lt->ltLeftIndentText,
tedLevelLeftIndentChanged, (void *)lt );
/**/
appMakeLabelAndTextRow( &row, &startLabel, &(lt->ltStartAtText),
lt->ltListLevelPaned,
lpr->lprStartAt, textColumns, 1 );
appGuiSetGotValueCallbackForText( lt->ltStartAtText,
tedLevelStartAtChanged, (void *)lt );
/**/
appInspectorMakeMenuRow( &row, &(lt->ltNumberStyleOptionmenu),
&styleLabel, lt->ltListLevelPaned,
lpr->lprStyle );
appInspectorMakeMenuRow( &row, &(lt->ltJustifyOptionmenu),
&justifyLabel, lt->ltListLevelPaned,
lpr->lprJustify );
appInspectorMakeMenuRow( &row, &(lt->ltFollowOptionmenu),
&followLabel, lt->ltListLevelPaned,
lpr->lprFollowedBy );
appInspectorMakeButtonRow( &row, pageWidget,
&(is->isRevertButton), &(is->isApplyButton),
isr->isrRevert, isr->isrApplyToSubject,
tedFormatListRevertPushed, tedFormatChangeList, lt );
return;
}
/************************************************************************/
/* */
/* Finish the paragraph page. */
/* */
/************************************************************************/
void tedFormatFillListChoosers( ListTool * lt )
{
const ListsPageResources * lpr= lt->ltPageResources;
appFillInspectorMenu( LISTTOOLcountSTYLES, 0,
lt->ltNumberStyleItems, lpr->lprStyleOptionTexts,
&(lt->ltNumberStyleOptionmenu),
tedListNumberStyleChosen, (void *)lt );
appFillInspectorMenu( DOClla_COUNT, DOCllaLEFT,
lt->ltJustifyItems, lpr->lprJustifyOptionTexts,
&(lt->ltJustifyOptionmenu),
tedListJustifyChosen, (void *)lt );
appFillInspectorMenu( DOCllf_COUNT, DOCllfTAB,
lt->ltFollowItems, lpr->lprFollowOptionTexts,
&(lt->ltFollowOptionmenu),
tedListFollowChosen, (void *)lt );
return;
}
void tedFormatFinishListPage( ListTool * lt )
{
appOptionmenuRefreshWidth( &(lt->ltNumberStyleOptionmenu) );
appOptionmenuRefreshWidth( &(lt->ltJustifyOptionmenu) );
appOptionmenuRefreshWidth( &(lt->ltFollowOptionmenu) );
return;
}
/************************************************************************/
/* */
/* Clean allocated resources in a tabs tool. */
/* */
/************************************************************************/
void tedFormatCleanListsTool( ListTool * lt )
{
docCleanDocumentList( &(lt->ltListPropertiesSet) );
docCleanDocumentList( &(lt->ltListPropertiesChosen) );
docCleanListOverride( &(lt->ltListOverrideSet) );
docCleanListOverride( &(lt->ltListOverrideChosen) );
return;
}
/************************************************************************/
/* */
/* Get list tool resources. */
/* */
/************************************************************************/
static AppConfigurableResource TED_TedListSubjectResourceTable[]=
{
APP_RESOURCE( "listToolParagraphNumber",
offsetof(InspectorSubjectResources,isrSubjectName),
"Paragraph Number" ),
APP_RESOURCE( "listToolChangeList",
offsetof(InspectorSubjectResources,isrApplyToSubject),
"Change List" ),
APP_RESOURCE( "listToolRevert",
offsetof(InspectorSubjectResources,isrRevert),
"Revert" ),
};
static AppConfigurableResource TED_TedListToolResourceTable[]=
{
/**/
APP_RESOURCE( "listToolSelection",
offsetof(ListsPageResources,lprSelection),
"Selection" ),
APP_RESOURCE( "listToolSetList",
offsetof(ListsPageResources,lprSetList),
"Set List" ),
APP_RESOURCE( "listToolRemoveFromList",
offsetof(ListsPageResources,lprRemoveFromList),
"Remove from List" ),
APP_RESOURCE( "listToolSetLevel",
offsetof(ListsPageResources,lprSetLevel),
"Set Level" ),
APP_RESOURCE( "listToolNewList",
offsetof(ListsPageResources,lprNewList),
"New List" ),
/**/
APP_RESOURCE( "listToolListLevel",
offsetof(ListsPageResources,lprListLevel),
"List Level" ),
APP_RESOURCE( "listToolLevelFirstIndent",
offsetof(ListsPageResources,lprLevelFirstIndent),
"First Line Indent" ),
APP_RESOURCE( "listToolLevelLeftIndent",
offsetof(ListsPageResources,lprLevelLeftIndent),
"Left Indent" ),
APP_RESOURCE( "listToolLevel",
offsetof(ListsPageResources,lprLevel),
"Level" ),
APP_RESOURCE( "listToolListLevelStartAt",
offsetof(ListsPageResources,lprStartAt),
"First Number" ),
APP_RESOURCE( "listToolListLevelNoRestart",
offsetof(ListsPageResources,lprNoRestart),
"Continuous" ),
/**/
APP_RESOURCE( "listToolLevelNumberStyle",
offsetof(ListsPageResources,lprStyle),
"Style" ),
/**/
APP_RESOURCE( "listToolListLevelStyleNar",
offsetof(ListsPageResources,lprStyleOptionTexts[0]),
"1, 2, 3" ),
APP_RESOURCE( "listToolListLevelStyleNruc",
offsetof(ListsPageResources,lprStyleOptionTexts[1]),
"I, II, III" ),
APP_RESOURCE( "listToolListLevelStyleNrlc",
offsetof(ListsPageResources,lprStyleOptionTexts[2]),
"i, ii, iii" ),
APP_RESOURCE( "listToolListLevelStyleNauc",
offsetof(ListsPageResources,lprStyleOptionTexts[3]),
"A, B, C" ),
APP_RESOURCE( "listToolListLevelStyleNalc",
offsetof(ListsPageResources,lprStyleOptionTexts[4]),
"a, b, c" ),
APP_RESOURCE( "listToolListLevelStyleNar0",
offsetof(ListsPageResources,lprStyleOptionTexts[5]),
"01, 02, 10, 11" ),
APP_RESOURCE( "listToolListLevelStyleBullet",
offsetof(ListsPageResources,lprStyleOptionTexts[6]),
"Bullet" ),
APP_RESOURCE( "listToolListLevelStyleNone",
offsetof(ListsPageResources,lprStyleOptionTexts[7]),
"None" ),
/**/
APP_RESOURCE( "listToolLevelJustify",
offsetof(ListsPageResources,lprJustify),
"Justify" ),
/**/
APP_RESOURCE( "listToolListLevelJustifyLeft",
offsetof(ListsPageResources,lprJustifyOptionTexts[DOCllaLEFT]),
"Left" ),
APP_RESOURCE( "listToolListLevelJustifyCentered",
offsetof(ListsPageResources,lprJustifyOptionTexts[DOCllaCENTERED]),
"Centered" ),
APP_RESOURCE( "listToolListLevelJustifyRight",
offsetof(ListsPageResources,lprJustifyOptionTexts[DOCllaRIGHT]),
"Right" ),
/**/
APP_RESOURCE( "listToolLevelFollowedBy",
offsetof(ListsPageResources,lprFollowedBy),
"Separator" ),
/**/
APP_RESOURCE( "listToolListLevelFollowTab",
offsetof(ListsPageResources,lprFollowOptionTexts[DOCllfTAB]),
"Tab" ),
APP_RESOURCE( "listToolListLevelFollowSpace",
offsetof(ListsPageResources,lprFollowOptionTexts[DOCllfSPACE]),
"Space" ),
APP_RESOURCE( "listToolListLevelFollowNone",
offsetof(ListsPageResources,lprFollowOptionTexts[DOCllfNONE]),
"None" ),
};
void tedFormatToolGetListsResourceTable(EditApplication * ea,
ListsPageResources * lpr,
InspectorSubjectResources * isr )
{
appGuiGetResourceValues( ea, (void *)lpr,
TED_TedListToolResourceTable,
sizeof(TED_TedListToolResourceTable)/
sizeof(AppConfigurableResource) );
appGuiGetResourceValues( ea, (void *)isr,
TED_TedListSubjectResourceTable,
sizeof(TED_TedListSubjectResourceTable)/
sizeof(AppConfigurableResource) );
return;
}
|