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 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
|
/*
* Copyright (c) 1994 Paul Vojta. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* NOTE:
* xdvi is based on prior work as noted in the modification history, below.
*/
/*
* DVI previewer for X.
*
* Eric Cooper, CMU, September 1985.
*
* Code derived from dvi-imagen.c.
*
* Modification history:
* 1/1986 Modified for X.10 --Bob Scheifler, MIT LCS.
* 7/1988 Modified for X.11 --Mark Eichin, MIT
* 12/1988 Added 'R' option, toolkit, magnifying glass
* --Paul Vojta, UC Berkeley.
* 2/1989 Added tpic support --Jeffrey Lee, U of Toronto
* 4/1989 Modified for System V --Donald Richardson, Clarkson Univ.
* 3/1990 Added VMS support --Scott Allendorf, U of Iowa
* 7/1990 Added reflection mode --Michael Pak, Hebrew U of Jerusalem
* 1/1992 Added greyscale code --Till Brychcy, Techn. Univ. Muenchen
* and Lee Hetherington, MIT
* 7/1992 Added extra menu buttons--Nelson H. F. Beebe <beebe@math.utah.edu>
* 4/1994 Added DPS support, bounding box
* --Ricardo Telichevesky
* and Luis Miguel Silveira, MIT RLE.
* 2/1995 Added rulers support --Nelson H. F. Beebe <beebe@math.utah.edu>
*
* Compilation options:
* SYSV compile for System V
* VMS compile for VMS
* NOTOOL compile without toolkit
* BUTTONS compile with buttons on the side of the window (needs toolkit)
* MSBITFIRST store bitmaps internally with most significant bit first
* BMSHORT store bitmaps in shorts instead of bytes
* BMLONG store bitmaps in longs instead of bytes
* ALTFONT default for -altfont option
* A4 use European size paper
* TEXXET support reflection dvi codes (right-to-left typesetting)
* GREY use grey levels to shrink fonts
* PS_DPS use display postscript to render pictures/bounding boxes
* PS_NEWS use the NeWS server to render pictures/bounding boxes
* PS_GS use Ghostscript to render pictures/bounding boxes
* GS_PATH path to call the Ghostscript interpreter by
*/
#if 0
static char copyright[] =
"@(#) Copyright (c) 1994 Paul Vojta. All rights reserved.\n";
#endif
#define EXTERN
#define INIT(x) =x
#include <windows.h>
#include <commdlg.h>
#include <direct.h>
#include "wingui.h"
#include "xdvi-config.h"
#include "dvi.h"
#define get_xy()
static Position window_x, window_y;
#define clip_w mane.width
#define clip_h mane.height
struct mg_size_rec mg_size[5] = {{200, 150}, {400, 250}, {700, 500},
{1000, 800}, {1200, 1200}};
struct WindowRec mane = {(Window) 0, 1, 0, 0, 0, 0, MAXDIM, 0, MAXDIM, 0};
struct WindowRec alt = {(Window) 0, 1, 0, 0, 0, 0, MAXDIM, 0, MAXDIM, 0};
/* currwin is temporary storage except for within redraw() */
struct WindowRec currwin = {(Window) 0, 3, 0, 0, 0, 0, MAXDIM, 0, MAXDIM, 0};
/*
* Mechanism to keep track of the magnifier window. The problems are,
* (a) if the button is released while the window is being drawn, this
* could cause an X error if we continue drawing in it after it is
* destroyed, and
* (b) creating and destroying the window too quickly confuses the window
* manager, which is avoided by waiting for an expose event before
* destroying it.
*/
static short alt_stat; /* 1 = wait for expose, */
/* -1 = destroy upon expose */
static Boolean alt_canit; /* stop drawing this window */
/*
* Data for buffered events.
*/
static VOLATILE short event_freq = 70;
static void can_exposures(), keystroke();
/* We split this help string into smaller pieces, because some C
implementations have been known to croak on large strings. */
static char* help_string[] =
{
"",
"----------------------------Help and Exiting----------------------------",
"",
"h or H or ? or Help",
" Displays this help text.",
"",
"q or Control-C or Control-D or Cancel or Stop or Control-Z (VAX VMS)",
" Quits the program.",
"",
"------------------------------Page Motion-------------------------------",
"",
"n or f or Space or Return or LineFeed or PgDn",
" Moves to the next page (or to the nth next page if a",
" number is given).",
"",
"p or b or Control-H or BackSpace or DELete or PgUp",
" Moves to the previous page (or back n pages).",
"",
"u or Up-arrow",
" Moves up two thirds of a window-full.",
"",
"d or Down-arrow",
" Moves down two thirds of a window-full.",
"",
"l or Left-arrow",
" Moves left two thirds of a window-full.",
"",
"r or Right-arrow",
" Moves right two thirds of a window-full.",
"",
"g or j or End",
" Moves to the page with the given number. Initially,",
" the first page is assumed to be page number 1, but this",
" can be changed with the `P' keystroke, below. If no",
" page number is given, then it goes to the last page.",
"",
"< Move to first page in document.",
"> Move to last page in document.",
"",
"-----------------------------Other Commands-----------------------------",
"",
"Control-A or Again",
" Repeat last command (including its argument).",
"",
"Control-L or Clear",
" Redisplays the current page.",
"",
"Control-P",
" Prints bitmap unit, bit order, and byte order.",
"",
"^ or Home",
" Move to the ``home'' position of the page. This is",
" normally the upper left-hand corner of the page,",
" depending on the margins as described in the -margins",
" option, above.",
"",
"c Moves the page so that the point currently beneath the",
" cursor is moved to the middle of the window. It also",
" (gasp!) warps the cursor to the same place.",
"",
"G This key toggles the use of greyscale anti-aliasing for",
" displaying shrunken bitmaps. In addition, the key",
" sequences `0G' and `1G' clear and set this flag,",
" respectively. See also the -nogrey option.",
"",
"k Normally when xdvi switches pages, it moves to the home",
" position as well. The `k' keystroke toggles a `keep-",
" position' flag which, when set, will keep the same",
" position when moving between pages. Also `0k' and `1k'",
" clear and set this flag, respectively. See also the",
" -keep option.",
"",
"M Sets the margins so that the point currently under the",
" cursor is the upper left-hand corner of the text in the",
" page. Note that this command itself does not move the",
" image at all. For details on how the margins are used,",
" see the -margins option.",
"",
"P ``This is page number n.'' This can be used to make",
" the `g' keystroke refer to actual page numbers instead",
" of absolute page numbers.",
"",
"R Forces the dvi file to be reread. This allows you to",
" preview many versions of the same file while running",
" xdvi only once.",
"",
"s Changes the shrink factor to the given number. If no",
" number is given, the smallest factor that makes the",
" entire page fit in the window will be used. (Margins",
" are ignored in this computation.)",
"",
"S Sets the density factor to be used when shrinking",
" bitmaps. This should be a number between 0 and 100;",
" higher numbers produce lighter characters.",
"",
"t Toggles to the next unit in a sorted list of TeX dimension",
" units for the popup magnifier ruler.",
"",
"x Toggles expert mode (in which the buttons do not appear).",
" Also `0x' and `1x' clear and enable this mode,",
" respectively. See also the -expert option.",
"",
"V Toggles Ghostscript anti-aliasing. Also `0V' and `1V' clear",
" and enables this mode, respectively. See also the the -gsalpha",
" option.",
"",
#ifdef SELFILE
"Control-F Find another DVI file.",
"",
#endif
#ifdef HTEX
"B Go back to the previous anchor.",
"F Follow hyperlink forward.",
"",
#endif
"------------------------------------------------------------------------",
};
static char *TmpDir=NULL;
void
show_help()
{
int k;
for (k = 0; k < (sizeof(help_string)/sizeof(help_string[0])); ++k)
(void)puts(help_string[k]);
}
/*
* Ruler routines
*/
static int
tick_scale(k)
int k;
{
if (k == 0)
return 3;
else if ((k % 1000) == 0)
return 7;
else if ((k % 500) == 0)
return 6;
else if ((k % 100) == 0)
return 5;
else if ((k % 50) == 0)
return 4;
else if ((k % 10) == 0)
return 3;
else if ((k % 5) == 0)
return 2;
else
return 1;
}
void
draw_rulers(width, height, ourGC)
unsigned int width, height;
GC ourGC;
{
#ifdef WIN32
int k; /* tick counter */
double old_pixels_per_tick;
double pixels_per_tick;
int scale;
int tick_offset; /* offset along axes */
int x; /* coordinates of top-left popup */
int y; /* window corner */
double xx; /* coordinates of tick */
double yy; /* coordinates of tick */
static char *last_tick_units = ""; /* memory of last tick units */
if (tick_length <= 0) /* user doesn't want tick marks */
return;
x = 0; /* the pop-up window always has origin (0,0) */
y = 0;
/* We need to clear the existing window to remove old rulers. I think
that this could be avoided if draw_rulers() could be invoked earlier.
The expose argument in XClearArea() must be True to force redrawing
of the text inside the popup window. Also, it would be better to draw
the rulers before painting the text, so that rulers would not
overwrite the text, but I haven't figured out yet how to arrange
that. */
#if 1
XClearArea(DISP, alt.win, x, y, width, height, True);
#endif
/* The global resource._pixels_per_inch tells us how to find the ruler
scale. For example, 300dpi corresponds to these TeX units:
1 TeX point (pt) = 4.151 pixels
1 big point (bp) = 4.167 pixels
1 pica (pc) = 49.813 pixels
1 cicero (cc) = 53.501 pixels
1 didot point (dd) = 4.442 pixels
1 millimeter (mm) = 11.811 pixels
1 centimeter (cm) = 118.110 pixels
1 inch (in) = 300.000 pixels
1 scaled point (sp) = 0.00006334 pixels
The user can select the units via a resource (e.g. XDvi*tickUnits: bp),
or a command-line option (e.g. -xrm '*tickUnits: cm'). The length of
the ticks can be controlled by a resource (e.g. XDvi*tickLength: 10), or
a command-line option (e.g. -xrm '*tickLength: 10000'). If the tick
length exceeds the popup window size, then a graph-paper grid is drawn
over the whole window. Zero, or negative, tick length completely
suppresses rulers. */
pixels_per_tick = (double)resource._pixels_per_inch;
if (strcmp(tick_units,"pt") == 0)
pixels_per_tick /= 72.27;
else if (strcmp(tick_units,"bp") == 0)
pixels_per_tick /= 72.0;
else if (strcmp(tick_units,"in") == 0)
/* NO-OP */;
else if (strcmp(tick_units,"cm") == 0)
pixels_per_tick /= 2.54;
else if (strcmp(tick_units,"mm") == 0)
pixels_per_tick /= 25.4;
else if (strcmp(tick_units,"dd") == 0)
pixels_per_tick *= (1238.0 / 1157.0) / 72.27;
else if (strcmp(tick_units,"cc") == 0)
pixels_per_tick *= 12.0 * (1238.0 / 1157.0) / 72.27;
else if (strcmp(tick_units,"pc") == 0)
pixels_per_tick *= 12.0 /72.27;
else if (strcmp(tick_units,"sp") == 0)
pixels_per_tick /= (65536.0 * 72.27);
else
{
Printf("Unrecognized tickUnits [%s]: defaulting to TeX points [pt]\n",
tick_units);
tick_units = "pt";
pixels_per_tick /= 72.27;
}
/* To permit accurate measurement in the popup window, we can reasonably
place tick marks about 3 to 10 pixels apart, so we scale the computed
pixels_per_tick by a power of ten to bring it into that range. */
old_pixels_per_tick = pixels_per_tick; /* remember the original scale */
while (pixels_per_tick < 3.0)
pixels_per_tick *= 10.0;
while (pixels_per_tick > 30.0)
pixels_per_tick /= 10.0;
if (strcmp(last_tick_units, tick_units) != 0)
{ /* tell user what the ruler scale is, but only when it changes */
if (old_pixels_per_tick != pixels_per_tick)
Printf("Ruler tick interval adjusted to represent %.2f%s\n",
pixels_per_tick/old_pixels_per_tick, tick_units);
else if (debug & DBG_EVENT)
Printf("Ruler tick interval represents 1%s\n", tick_units);
}
/* In order to make the ruler as accurate as possible, given the coarse
screen resolution, we compute tick positions in floating-point
arithmetic, then round to nearest integer values. */
for (k = 0, xx = 0.0; xx < (double)width; k++, xx += pixels_per_tick)
{ /* draw vertical ticks on top and bottom */
tick_offset = (int)(0.5 + xx); /* round to nearest pixel */
scale = tick_scale(k);
XDrawLine(DISP, alt.win, ourGC,
x + tick_offset, y,
x + tick_offset, y + scale*tick_length);
XDrawLine(DISP, alt.win, ourGC,
x + tick_offset, y + height,
x + tick_offset, y + height - scale*tick_length);
}
for (k = 0, yy = 0.0; yy < (double)height; k++, yy += pixels_per_tick)
{ /* draw horizontal ticks on left and right */
tick_offset = (int)(0.5 + yy); /* round to nearest pixel */
scale = tick_scale(k);
XDrawLine(DISP, alt.win, ourGC,
x, y + tick_offset,
x + scale*tick_length, y + tick_offset);
XDrawLine(DISP, alt.win, ourGC,
x + width, y + tick_offset,
x + width - scale*tick_length, y + tick_offset);
}
last_tick_units = tick_units;
#if 0
XFlush(DISP); /* bring window up-to-date */
#endif
#endif
}
/* The global resource._pixels_per_inch tells us how to find the ruler
scale. For example, 300dpi corresponds to these TeX units:
1 TeX point (pt) = 4.151 pixels
1 big point (bp) = 4.167 pixels
1 pica (pc) = 49.813 pixels
1 cicero (cc) = 53.501 pixels
1 didot point (dd) = 4.442 pixels
1 millimeter (mm) = 11.811 pixels
1 centimeter (cm) = 118.110 pixels
1 inch (in) = 300.000 pixels
1 scaled point (sp) = 0.00006334 pixels
The user can select the units via a resource (e.g. XDvi*tickUnits: bp),
or a command-line option (e.g. -xrm '*tickUnits: cm'). The length of
the ticks can be controlled by a resource (e.g. XDvi*tickLength: 10), or
a command-line option (e.g. -xrm '*tickLength: 10000'). If the tick
length exceeds the popup window size, then a graph-paper grid is drawn
over the whole window. Zero, or negative, tick length completely
suppresses rulers. */
const_string pos_format;
double p2u_factor;
void pixel_to_unit()
{
double pixels_per_tick = (double)resource._pixels_per_inch;
if (strcmp(tick_units,"pt") == 0) {
p2u_factor = 72.27 / pixels_per_tick;
pos_format = "%10.3fpt x %10.3fpt";
}
else if (strcmp(tick_units,"bp") == 0) {
p2u_factor = 72.0 / pixels_per_tick;
pos_format = "%10.3fbp x %10.3fbp";
}
else if (strcmp(tick_units,"in") == 0) {
p2u_factor = 1.0 / pixels_per_tick;
pos_format = "%10.3fin x %10.3fin";
}
else if (strcmp(tick_units,"cm") == 0) {
p2u_factor = 2.54 / pixels_per_tick;
pos_format = "%10.3lfcm x %10.3lfcm";
}
else if (strcmp(tick_units,"mm") == 0) {
p2u_factor = 25.4 / pixels_per_tick;
pos_format = "%10.3lfmm x %10.3lfmm";
}
else if (strcmp(tick_units,"dd") == 0) {
p2u_factor = 1.0 / pixels_per_tick / ((1238.0 / 1157.0) / 72.27);
pos_format = "%10.3lfdd x %10.3lfdd";
}
else if (strcmp(tick_units,"cc") == 0) {
p2u_factor = 1.0 / pixels_per_tick / (12.0 * (1238.0 / 1157.0) / 72.27);
pos_format = "%10.3lfcc x %10.3lfcc";
}
else if (strcmp(tick_units,"pc") == 0) {
p2u_factor = 1.0 / pixels_per_tick / (12.0 /72.27);
pos_format = "%10.3lfpc x %10.3lfpc";
}
else if (strcmp(tick_units,"sp") == 0) {
p2u_factor = 1.0 / pixels_per_tick * (65536.0 * 72.27);
pos_format = "%10.3lfsp x %10.3lfsp";
}
else
{
Printf("Unrecognized tickUnits [%s]: defaulting to TeX points [pt]\n",
tick_units);
tick_units = "pt";
p2u_factor = 72.27 / pixels_per_tick;
pos_format = "%10.3fpt x %10.3fpt";
}
}
#ifndef WIN32
/*
* Event-handling routines
*/
static void
expose(windowrec, x, y, w, h)
register struct WindowRec *windowrec;
int x, y;
unsigned int w, h;
{
if (windowrec->min_x > x) windowrec->min_x = x;
if (windowrec->max_x < x + w)
windowrec->max_x = x + w;
if (windowrec->min_y > y) windowrec->min_y = y;
if (windowrec->max_y < y + h)
windowrec->max_y = y + h;
}
static void
clearexpose(windowrec, x, y, w, h)
struct WindowRec *windowrec;
int x, y;
unsigned int w, h;
{
XClearArea(DISP, windowrec->win, x, y, w, h, False);
expose(windowrec, x, y, w, h);
}
static void
scrollwindow(windowrec, x0, y0)
register struct WindowRec *windowrec;
int x0, y0;
{
int x, y;
int x2 = 0, y2 = 0;
int ww, hh;
x = x0 - windowrec->base_x;
y = y0 - windowrec->base_y;
ww = windowrec->width - x;
hh = windowrec->height - y;
windowrec->base_x = x0;
windowrec->base_y = y0;
if (currwin.win == windowrec->win) {
currwin.base_x = x0;
currwin.base_y = y0;
}
windowrec->min_x -= x;
if (windowrec->min_x < 0) windowrec->min_x = 0;
windowrec->max_x -= x;
if (windowrec->max_x > windowrec->width)
windowrec->max_x = windowrec->width;
windowrec->min_y -= y;
if (windowrec->min_y < 0) windowrec->min_y = 0;
windowrec->max_y -= y;
if (windowrec->max_y > windowrec->height)
windowrec->max_y = windowrec->height;
if (x < 0) {
x2 = -x;
x = 0;
ww = windowrec->width - x2;
}
if (y < 0) {
y2 = -y;
y = 0;
hh = windowrec->height - y2;
}
if (ww <= 0 || hh <= 0) {
XClearWindow(DISP, windowrec->win);
windowrec->min_x = windowrec->min_y = 0;
windowrec->max_x = windowrec->width;
windowrec->max_y = windowrec->height;
}
else {
XCopyArea(DISP, windowrec->win, windowrec->win,
DefaultGCOfScreen(SCRN), x, y,
(unsigned int) ww, (unsigned int) hh, x2, y2);
if (x > 0)
clearexpose(windowrec, ww, 0,
(unsigned int) x, windowrec->height);
if (x2 > 0)
clearexpose(windowrec, 0, 0,
(unsigned int) x2, windowrec->height);
if (y > 0)
clearexpose(windowrec, 0, hh,
windowrec->width, (unsigned int) y);
if (y2 > 0)
clearexpose(windowrec, 0, 0,
windowrec->width, (unsigned int) y2);
}
}
#endif
_Xconst char *paper_types[] = {
"us", "8.5in x 11in",
"usr", "11in x 8.5in",
"legal", "8.5in x 14in",
"foolscap", "13.5in x 17.0in", /* ??? */
/* ISO `A' formats, Portrait */
"a1", "59.4cm x 84.0cm",
"a2", "42.0cm x 59.4cm",
"a3", "29.7cm x 42.0cm",
"a4", "21.0cm x 29.7cm",
"a5", "14.85cm x 21.0cm",
"a6", "10.5cm x 14.85cm",
"a7", "7.42cm x 10.5cm",
/* ISO `A' formats, Landscape */
"a1r", "84.0cm x 59.4cm",
"a2r", "59.4cm x 42.0cm",
"a3r", "42.0cm x 29.7cm",
"a4r", "29.7cm x 21.0cm",
"a5r", "21.0cm x 14.85cm",
"a6r", "14.85cm x 10.5cm",
"a7r", "10.5cm x 7.42cm",
/* ISO `B' formats, Portrait */
"b1", "70.6cm x 100.0cm",
"b2", "50.0cm x 70.6cm",
"b3", "35.3cm x 50.0cm",
"b4", "25.0cm x 35.3cm",
"b5", "17.6cm x 25.0cm",
"b6", "13.5cm x 17.6cm",
"b7", "8.8cm x 13.5cm",
/* ISO `B' formats, Landscape */
"b1r", "100.0cm x 70.6cm",
"b2r", "70.6cm x 50.0cm",
"b3r", "50.0cm x 35.3cm",
"b4r", "35.3cm x 25.0cm",
"b5r", "25.0cm x 17.6cm",
"b6r", "17.6cm x 13.5cm",
"b7r", "13.5cm x 8.8cm",
/* ISO `C' formats, Portrait */
"c1", "64.8cm x 91.6cm",
"c2", "45.8cm x 64.8cm",
"c3", "32.4cm x 45.8cm",
"c4", "22.9cm x 32.4cm",
"c5", "16.2cm x 22.9cm",
"c6", "11.46cm x 16.2cm",
"c7", "8.1cm x 11.46cm",
/* ISO `C' formats, Landscape */
"c1r", "91.6cm x 64.8cm",
"c2r", "64.8cm x 45.8cm",
"c3r", "45.8cm x 32.4cm",
"c4r", "32.4cm x 22.9cm",
"c5r", "22.9cm x 16.2cm",
"c6r", "16.2cm x 11.46cm",
"c7r", "11.46cm x 8.1cm",
};
int paper_types_number = sizeof(paper_types)/sizeof(char *);
Boolean
set_paper_type() {
_Xconst char *arg, *arg1;
char temp[64];
_Xconst char **p;
char *q;
/* fprintf(stderr, "Setting paper type to %s\n", resource.paper); */
if (!resource.paper) {
#ifdef A4
resource.paper = strdup("a4");
#else
resource.paper = strdup("us");
#endif
}
if (strlen(resource.paper) > sizeof(temp) - 1) return False;
arg = resource.paper;
q = temp;
for (;;) { /* convert to lower case */
char c = *arg++;
if (c >= 'A' && c <= 'Z') c ^= ('a' ^ 'A');
*q++ = c;
if (c == '\0') break;
}
arg = temp;
/* perform substitutions */
for (p = paper_types; p < paper_types + XtNumber(paper_types); p += 2)
if (strcmp(temp, *p) == 0) {
arg = p[1];
break;
}
arg1 = strchr(arg, 'x');
if (arg1 == NULL) return False;
unshrunk_paper_w = atopix(arg);
unshrunk_paper_h = atopix(arg1 + 1);
#ifdef GRID
unshrunk_paper_unit = atopixunit(arg);
#endif /* GRID */
unshrunk_page_w = unshrunk_dvifile_page_w;
unshrunk_page_h = unshrunk_dvifile_page_h;
if (unshrunk_page_h < unshrunk_paper_h)
unshrunk_page_h = unshrunk_paper_h;
if (unshrunk_page_w < unshrunk_paper_w)
unshrunk_page_w = unshrunk_paper_w;
init_page();
#if 0
fprintf(stderr, "paper (%d x %d)\n", unshrunk_paper_w, unshrunk_paper_h);
fprintf(stderr, "dvi unshrunk page (%d x %d)\n", unshrunk_page_w, unshrunk_page_h);
fprintf(stderr, "dvi shrunk page (%d x %d)\n", page_w, page_h);
#endif
if (! isPrinting && hWndDraw)
SendMessage(hWndDraw, WM_ERASEBKGND, (WPARAM)GetDC(currwin.win), 0);
return (unshrunk_paper_w != 0 && unshrunk_paper_h != 0);
}
/* Set the icon name and title name standard properties on `top_level'
(which we don't pass in because it is a different type for TOOLKIT
!and TOOLKIT). We use the basename of the DVI file (without the
.dvi), so different xdvi invocations can be distinguished, yet
do not use up too much real estate. */
void
set_icon_and_title (dvi_name, icon_ret, title_ret, set_std)
char *dvi_name;
char **icon_ret;
char **title_ret;
int set_std;
{
/* Use basename of DVI file for name in icon and title. */
unsigned baselen;
char *icon_name, *title_name;
icon_name = strrchr(dvi_name, '/');
if (icon_name != NULL) ++icon_name; else icon_name = dvi_name;
baselen = strlen(icon_name);
if (baselen >= sizeof(".dvi")
&& strcmp(icon_name + baselen - sizeof(".dvi") + 1, ".dvi")
== 0) { /* remove the .dvi */
char *p;
baselen -= sizeof(".dvi") - 1;
p = xmalloc(baselen + 1);
(void) strncpy(p, icon_name, (int) baselen);
p[baselen] = '\0';
icon_name = p;
}
#ifdef Omega
title_name = xmalloc(baselen + sizeof("(Omega) OWindvi: "));
Strcpy(title_name, "(Omega) OWindvi: ");
#else
title_name = xmalloc(baselen + sizeof("Windvi: "));
Strcpy(title_name, "Windvi: ");
#endif
Strcat(title_name, icon_name);
if (icon_ret) *icon_ret = icon_name;
if (title_ret) *title_ret = title_name;
if (set_std) {
#ifdef WIN32
SetWindowText(hWndMain, title_name);
#else
Window top_window =
#ifdef TOOLKIT
XtWindow (top_level);
#else
top_level;
#endif
XSetStandardProperties(DISP, top_window, title_name, icon_name,
(Pixmap) 0, NULL, 0, NULL);
#endif
}
}
void
showmessage(message)
_Xconst char *message;
{
UpdateStatusBar(message, 0, 0);
/* XDrawImageString(DISP, mane.win, foreGC,
5 - window_x, 5 + X11HEIGHT - window_y, message, strlen(message)) */
}
void
home(Boolean scrl)
{
if (resource.keep_flag) {
/* Send messages to go to (0,0) */
SendMessage(mane.win, WM_HSCROLL,
MAKEWPARAM(SB_THUMBPOSITION, (home_x/mane.shrinkfactor)), 0);
SendMessage(mane.win, WM_VSCROLL,
MAKEWPARAM(SB_THUMBPOSITION, (home_y/mane.shrinkfactor)), 0);
}
else {
SendMessage(mane.win, WM_HSCROLL,
MAKEWPARAM(SB_THUMBPOSITION, 0), 0);
SendMessage(mane.win, WM_VSCROLL,
MAKEWPARAM(SB_THUMBPOSITION, 0), 0);
}
}
void
#if PS
ps_read_events(wait, allow_can)
wide_bool wait;
wide_bool allow_can;
#else
read_events(wait)
wide_bool wait;
#define allow_can True
#endif
{
}
void
redraw(windowrec)
struct WindowRec *windowrec;
{
bDrawKeep = FALSE;
/* restore color state at the beginning of the new page */
init_colors();
currwin = *windowrec;
min_x = currwin.min_x + currwin.base_x;
min_y = currwin.min_y + currwin.base_y;
max_x = currwin.max_x + currwin.base_x;
max_y = currwin.max_y + currwin.base_y;
#ifndef WIN32
can_exposures(windowrec);
#endif
if (debug & DBG_EVENT)
Printf("Redraw %d x %d at (%d, %d) (base=%d,%d)\n", max_x - min_x,
max_y - min_y, min_x, min_y, currwin.base_x, currwin.base_y);
#ifdef WIN32
/* FIXME : change cursor */
if (!bMagDisp)
SetCursor(hCursWait);
#else
if (!busycurs) {
XDefineCursor(DISP, mane.win, redraw_cursor);
XFlush(DISP);
busycurs = True;
}
#endif
if (setjmp(dvi_env)) {
XClearWindow(DISP, mane.win);
showmessage(dvi_oops_msg);
if (dvi_file) {
Fclose(dvi_file);
dvi_file = NULL;
}
}
else {
#ifdef BOOKMODE
if (resource.book_mode) {
int old_min_x = min_x,
old_max_x = max_x;
if (min_x <= page_w) {
if (max_x > page_w) {
max_x = currwin.max_x = page_w;
}
draw_page();
max_x = currwin.max_x = old_max_x;
}
if (max_x > page_w) {
if (min_x <= page_w) {
min_x = currwin.min_x = 0;
}
max_x = currwin.max_x = max_x - page_w;
current_page += 1;
draw_page();
max_x = currwin.max_x = old_max_x;
min_x = currwin.min_x = old_min_x;
}
warn_spec_now = True;
}
else {
draw_page();
warn_spec_now = True;
}
#else
draw_page();
warn_spec_now = True;
#endif
}
if (!bMagDisp)
SetCursor(hCursArrow);
}
void
redraw_page()
{
#ifdef WIN32
RECT maneRect;
GdiFlush();
GetClientRect(mane.win, &maneRect);
if (mane.win == hWndDraw && GetClientRect(hWndDraw, &maneRect)) {
int xorg = (int)(page_w - maneRect.right)/2;
int yorg = (int)(page_h - maneRect.bottom)/2;
xorg = min(0, xorg);
yorg = min(0, yorg);
#if 0
fprintf(stderr, "New org %ld %ld page %d %d rect %d %d\n",
xorg, yorg, page_w, page_h, maneRect.right, maneRect.bottom);
#endif
if (SetWindowOrgEx(maneDC, xorg, yorg, NULL) == 0) {
Win32Error("MsgDrawPaint/SetWindowOrgEx(x,y)");
}
}
else {
Win32Error("MsgDrawPaint/GetClientRect(hwnd)");
}
if (debug & DBG_EVENT) Fputs("Redraw page: ", stdout);
#if 0
if (resource.in_memory) {
mane.base_x = 0;
mane.base_y = 0;
mane.min_x = mane.min_y = 0;
mane.max_x = page_w;
mane.max_y = page_h;
allowDrawingChars = True;
maneRect.top = maneRect.left = 0;
maneRect.right = page_w+1;
maneRect.bottom = page_h+1;
#if 0
if (!FillRect(foreGC, &maneRect, backBrush))
Win32Error("Redraw Page background");
#endif
redraw(&mane);
}
#endif
if (resource.keep_flag) home(False);
bDrawKeep = FALSE;
InvalidateRect(mane.win, &maneRect, TRUE);
#else /* ! WIN32 */
if (debug & DBG_EVENT) Fputs("Redraw page: ", stdout);
XClearWindow(DISP, mane.win);
if (backing_store != NotUseful) {
mane.min_x = mane.min_y = 0;
mane.max_x = page_w;
mane.max_y = page_h;
}
else {
get_xy();
mane.min_x = -window_x;
mane.max_x = -window_x + clip_w;
mane.min_y = -window_y;
mane.max_y = -window_y + clip_h;
}
redraw(&mane);
#endif /* ! WIN32 */
}
Boolean
reconfig()
{
RECT maneRect;
int x_thick = 0, y_thick = 0;
/* FIXME : this should change the size of the drawing surface */
/* XdviResizeWidget(draw_widget, page_w, page_h);
get_geom(); */
if (resource.in_memory) {
/* FIXME:
- if the bitmap can't be generated, return en error, and switch back
to the previous shrink_factor
- at s=1, no antialiasing should occur
*/
if (maneDrawMemDC == NULL)
if ((maneDrawMemDC = CreateCompatibleDC(maneDC)) == NULL)
Win32Error("CreateCompatibleDC maneDrawMemDC");
foreGC = ruleGC = highGC = maneDrawDC = maneDrawMemDC;
grid1GC = grid2GC = grid3GC = maneDrawDC;
foreGC2 = NULL; /* not used under Win32 */
#ifdef TRANSFORM
if (IS_WIN98 || IS_NT)
SetGraphicsMode(maneDrawDC, GM_ADVANCED);
#endif
if (oldmaneDIB) {
/* There is an old maneDIB, put it back in the DC
and delete the current one */
if ((maneDIB = SelectObject(foreGC, oldmaneDIB)) == NULL)
Win32Error("reconfig/SelectObject");
if (DeleteObject(maneDIB) == FALSE)
Win32Error("DeleteObject/maneDIB");
}
if ((maneDIB = CreateDIB(maneDC, page_w, page_h, numColors, NULL, NULL)) == NULL)
return False;
if ((oldmaneDIB = SelectObject(foreGC, maneDIB)) == NULL)
Win32Error("reconfig/SelectObject");
#if 0
if (PatBlt(foreGC, 0, 0, page_w, page_h, PATCOPY) == 0)
Win32Error("Reconfig background");
#else
maneRect.top = maneRect.left = 0;
maneRect.right = page_w;
maneRect.bottom = page_h;
#if 0
fprintf(stderr, "reconfig() is erasing background\n");
#endif
if (!FillRect(foreGC, &maneRect, backBrush))
Win32Error("Reconfig background");
#endif
}
else {
foreGC = ruleGC = highGC = maneDrawDC = GetDC(hWndDraw);
grid1GC = grid2GC = grid3GC = foreGC;
magMemDC = foreGC2 = NULL; /* not used under Win32 */
}
#ifdef HTEX
if (anchor_info) {
/* XMoveResizeWindow(DPY anchor_info,
y_thick - 1, x_thick - BAR_THICK - 1,
clip_w/2, BAR_THICK - 1); */
if (SetWindowPos(anchor_info, HWND_TOPMOST,
y_thick - 1, x_thick - BAR_THICK - 1,
clip_w/2, BAR_THICK - 1,
SWP_NOACTIVATE | SWP_NOSIZE /* | SWP_SHOWWINDOW */
| SWP_NOOWNERZORDER | SWP_NOZORDER) == 0)
Win32Error("SetWindowPos");
paint_anchor(NULL);
/* XMoveResizeWindow(DPY anchor_search,
y_thick + clip_w/2 - 1, x_thick - BAR_THICK - 1,
clip_w/2, BAR_THICK - 1); */
if (SetWindowPos(anchor_search, HWND_TOPMOST,
y_thick + clip_w/2 - 1, x_thick - BAR_THICK - 1,
clip_w/2, BAR_THICK - 1,
SWP_NOACTIVATE | SWP_NOSIZE /* | SWP_SHOWWINDOW */
| SWP_NOOWNERZORDER | SWP_NOZORDER) == 0)
Win32Error("SetWindowPos");
} else {
/* anchor_info = XCreateSimpleWindow(DISP, top_level, y_thick - 1,
x_thick - BAR_THICK -1,
(unsigned int) clip_w/2, BAR_THICK - 1, 1,
brdr_Pixel, back_Pixel); */
anchor_info = CreateWindow("EDIT",
NULL,
WS_BORDER | WS_POPUP | WS_DISABLED,
/* | WS_CLIPSIBLINGS, */
y_thick - 1, x_thick - BAR_THICK -1,
(unsigned int) clip_w/2, BAR_THICK - 1,
hWndDraw,
NULL,
hInst,
NULL);
if (anchor_info == NULL) {
Win32Error("CreateWindow/Magnify");
return FALSE;
}
/* XSelectInput(DISP, anchor_info, ExposureMask);
anchor_search = XCreateSimpleWindow(DISP, top_level,
y_thick + clip_w/2 - 1,
x_thick - BAR_THICK -1,
(unsigned int) clip_w/2, BAR_THICK - 1, 1,
brdr_Pixel, back_Pixel); */
anchor_search = CreateWindow("EDIT",
NULL,
WS_BORDER | WS_POPUP | WS_DISABLED,
/* | WS_CLIPSIBLINGS, */
y_thick + clip_w/2 - 1, x_thick - BAR_THICK -1,
(unsigned int) clip_w/2, BAR_THICK - 1,
hWndDraw,
NULL,
hInst,
NULL);
if (anchor_search == NULL) {
Win32Error("CreateWindow/Magnify");
return FALSE;
}
ShowWindow(anchor_info, SW_SHOW);
ShowWindow(anchor_search, SW_SHOW);
#if 0
XSelectInput(DISP, anchor_search, ExposureMask|KeyPressMask);
XMapWindow(DPY anchor_info);
XMapWindow(DPY anchor_search);
#endif
}
#endif
/* Now, the scrollbars */
SetScrollBars(mane.win);
return True;
}
int
atopix(arg)
_Xconst char *arg;
{
int len = strlen(arg);
_Xconst char *arg_end = arg;
char tmp[11];
double factor;
/* Skip whithe spaces */
while (arg_end && *arg_end && isspace(*arg_end)) arg_end++;
while ((*arg_end >= '0' && *arg_end <= '9') || *arg_end == '.')
if (arg_end >= arg + XtNumber(tmp) - 1) return 0;
else ++arg_end;
bcopy(arg, tmp, arg_end - arg);
tmp[arg_end - arg] = '\0';
#if A4
factor = 1.0 / 2.54; /* cm */
#else
factor = 1.0; /* inches */
#endif
if (len > 2)
switch (arg[len - 2] << 8 | arg[len - 1]) {
case 'i' << 8 | 'n': factor = 1.0; break;
case 'c' << 8 | 'm': factor = 1.0 / 2.54; break;
case 'm' << 8 | 'm': factor = 1.0 / 25.4; break;
case 'p' << 8 | 't': factor = 1.0 / 72.27; break;
case 'p' << 8 | 'c': factor = 12.0 / 72.27; break;
case 'b' << 8 | 'p': factor = 1.0 / 72.0; break;
case 'd' << 8 | 'd': factor = 1238.0 / 1157.0 / 72.27; break;
case 'c' << 8 | 'c': factor = 12 * 1238.0 / 1157.0 / 72.27;
break;
case 's' << 8 | 'p': factor = 1.0 / 72.27 / 65536; break;
}
return factor * atof(tmp) * pixels_per_inch + 0.5;
}
string
pixtoa(int arg)
{
char buf[64];
sprintf(buf, "%.2fcm", (arg * 2.54) / pixels_per_inch);
return strdup(buf);
}
#ifdef GRID
/* extract the unit used in paper size specification */
/* the information is used to decide the initial grid separation */
int
atopixunit(arg)
_Xconst char *arg;
{
int len = strlen(arg);
return (int)((len > 2 && arg[len - 2] == 'c' && arg[len - 1] == 'm' ?
1.0 / 2.54 : 1.0) * pixels_per_inch + 0.5);
}
#endif /* GRID */
void remove_temporary_dir(void)
{
int err;
if (TmpDir!=NULL) {
err=rmdir(TmpDir);
if (err!=0 && errno!=ENOENT) {
char *buffer=malloc(160);
if (buffer==NULL) oops("Please buy more RAM");
sprintf(buffer,"xdvik: Warning: Could not remove temporary directory %s",
TmpDir);
perror(buffer);
}
}
}
/* Create a temporary directory where we can write files from this program */
void
make_temporary_dir(tmpdir)
char **tmpdir;
{
int ret, idval;
char * tmp;
*tmpdir = tempnam(NULL,"xdvi");
if (*tmpdir == NULL)
oops("Out of memory. Exiting.");
#ifdef HTEX
if (debug & DBG_HYPER)
fprintf(stderr,"Making temporary directory %s\n",*tmpdir);
#endif
#ifdef WIN32
ret = mkdir(*tmpdir);
#else
ret = mkdir(*tmpdir, 0700);
#endif
/* The use of atexit and one variable to store the directory name
makes this procedure a oneoff. Enforce it */
if (TmpDir!=NULL)
oops("make_temporary_dir called twice!\n");
TmpDir=strdup(*tmpdir);
#ifndef WIN32
atexit(remove_temporary_dir);
#endif
if (ret != 0)
/* Didn't work, PANIC! */
oops("Could not create temporary directory. Exiting.");
}
#ifdef HTEX
/* The anchor window stuff: */
void paint_anchor(text)
char *text;
{
#ifdef WIN32
extern Widget anchor_info;
#if 0
if (text != NULL)
SetWindowText(anchor_info, text);
#endif
#else
ClearArea(anchor_info, 1, 1, clip_w/2, BAR_THICK);
if (text != NULL) XDrawString(DISP, anchor_info, foreGC,
1 , BAR_WID, text, strlen(text));
#endif
}
#endif
|