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
|
/* Copyright 1992, 1993, 1994 John Bovey, University of Kent at Canterbury.
*
* Redistribution and use in source code and/or executable forms, with
* or without modification, are permitted provided that the following
* condition is met:
*
* Any redistribution must retain the above copyright notice, this
* condition and the following disclaimer, either as part of the
* program source code included in the redistribution or in human-
* readable materials provided with the redistribution.
*
* THIS SOFTWARE IS PROVIDED "AS IS". Any express or implied
* warranties concerning this software are disclaimed by the copyright
* holder to the fullest extent permitted by applicable law. In no
* event shall the copyright-holder be liable for any damages of any
* kind, however caused and on any theory of liability, arising in any
* way out of the use of, or inability to use, this software.
*
* -------------------------------------------------------------------
*
* In other words, do not misrepresent my work as your own work, and
* do not sue me if it causes problems. Feel free to do anything else
* you wish with it.
*/
char xvt_xsetup_c_sccsid[] = "@(#)xsetup.c 1.4 11/1/94 (UKC)";
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#ifdef MAGIC_COOKIE
#include <X11/Xauth.h>
#endif /* MAGIC_COOKIE */
#include <X11/Xresource.h>
#include <X11/cursorfont.h>
#include <sys/socket.h>
#include <netdb.h>
#include "xvt.h"
#include "command.h"
#include "ttyinit.h"
#include "xsetup.h"
#include "screen.h"
#include "sbar.h"
#ifdef __STDC__
static int error_handler(Display *,XErrorEvent *);
static int io_error_handler(Display *);
static char *scopy(char *);
static int extract_nonX_args(int, char **);
static unsigned char *get_resource(char *,char *);
static int affirmative(unsigned char *);
static void extract_resources(void);
static void create_window(int,char **);
#else /* __STDC__ */
static int error_handler();
static int io_error_handler();
static char *scopy();
static int extract_nonX_args();
static unsigned char *get_resource();
static int affirmative();
static void extract_resources();
static void create_window();
#endif /* __STDC__ */
#define XVT_CLASS "XTerm"
#define SBAR_WIDTH 15 /* width of scroll bar */
#define VT_EVENTS ( ExposureMask |\
EnterWindowMask|\
LeaveWindowMask |\
ButtonPressMask |\
ButtonReleaseMask |\
Button1MotionMask \
)
#define MW_EVENTS ( KeyPressMask |\
FocusChangeMask |\
StructureNotifyMask \
)
#define SB_EVENTS ( ExposureMask |\
EnterWindowMask|\
LeaveWindowMask |\
Button2MotionMask |\
ButtonReleaseMask |\
ButtonPressMask \
)
/* External global variables that are initialised at startup.
*/
Display *display;
Window vt_win; /* vt100 window */
Window sb_win; /* scroll bar window */
Window main_win; /* parent window */
Colormap colormap;
XFontStruct *mainfont; /* main font structure */
XFontStruct *boldfont; /* bold font structure */
GC txgc; /* GC for drawing text */
GC negc; /* GC for moving areas without graphics exposure */
GC hlgc; /* GC used for highlighting selections */
GC cugc; /* GC used for the text cursor */
GC sbgc; /* GC used for drawing the scrollbar */
unsigned long foreground; /* foreground pixel value */
unsigned long background; /* background pixel value */
int reverse_wrap = 0; /* enable reverse wrapround */
int debugging = 0; /* enable debugging output */
int messages = 0; /* flag to enable messages */
static char *xvt_name; /* the name the program is run under */
static char *res_name; /* the resource name */
static char *window_name; /* window name for titles etc. */
static char *icon_name; /* name to display in the icon */
static char *name_name = NULL; /* name set with -name option */
static int screen; /* the X screen number */
static Visual *visual;
static XrmDatabase rDB; /* merged resources database */
static unsigned long border; /* border pixel value */
static int border_width = 1;
static int save_lines = DEF_SAVED_LINES; /* number of saved lines */
static unsigned long cursorclr;
static XColor foreground_color;
static XColor background_color;
static XColor cursor_color;
static int iconic = 0; /* start up iconized */
static int logshell = 0; /* flag nonzero if using a login shell */
static int eight_bit_input = 1; /* eight bit input enabled */
static int console_flag = 0; /* true if we want a console window */
static int show_scrollbar = 0; /* scroll-bar displayed if true */
#define OPTABLESIZE 26
static XrmOptionDescRec optable[] = {
{"-display", ".display", XrmoptionSepArg, (caddr_t)NULL},
{"-geometry", "*geometry", XrmoptionSepArg, (caddr_t)NULL},
{"-background", "*background", XrmoptionSepArg, (caddr_t)NULL},
{"-bg", "*background", XrmoptionSepArg, (caddr_t)NULL},
{"-foreground", "*foreground", XrmoptionSepArg, (caddr_t)NULL},
{"-fg", "*foreground", XrmoptionSepArg, (caddr_t)NULL},
{"-bd", "*borderColor", XrmoptionSepArg, (caddr_t)NULL},
{"-bw", "*borderWidth", XrmoptionSepArg, (caddr_t)NULL},
{"-font", "*font", XrmoptionSepArg, (caddr_t)NULL},
{"-fn", "*font", XrmoptionSepArg, (caddr_t)NULL},
{"-fb", "*boldFont", XrmoptionSepArg, (caddr_t)NULL},
{"-title", "*title", XrmoptionSepArg, (caddr_t)NULL},
{"-T", "*title", XrmoptionSepArg, (caddr_t)NULL},
{"-n", "*iconName", XrmoptionSepArg, (caddr_t)NULL},
{"-sl", "*saveLines", XrmoptionSepArg, (caddr_t)NULL},
{"-cc", "*charClass", XrmoptionSepArg, (caddr_t)NULL},
{"-cr", "*cursorColor", XrmoptionSepArg, (caddr_t)NULL},
{"-sb", "*scrollBar", XrmoptionNoArg, "on"},
{"-rw", "*reverseWrap", XrmoptionNoArg, "on"},
{"-msg", "*messages", XrmoptionNoArg, "on"},
{"-iconic", "*iconic", XrmoptionNoArg, "on"},
{"-8", "*eightBitInput",XrmoptionNoArg, "on"},
{"-7", "*eightBitInput",XrmoptionNoArg, "off"},
{"-ls", "*loginShell", XrmoptionNoArg, "on"},
{"-sf", "*sunFunctionKeys",XrmoptionNoArg, "on"},
{"-debug", "*debug", XrmoptionNoArg, "on"},
};
static char *usearray[] = {
"-e <command> <arg> ... execute command with arguments - must be last argument",
"-display <name> specify the display (server)",
"-geometry <spec> the initial window geometry",
"-background <colour> background colour",
"-bg <colour> same as -background",
"-foreground <colour> foreground colour",
"-fg <colour> same as -foreground",
"-bd <colour> border colour",
"-bw <count> border width",
"-font <fontname> normal font",
"-fn <fontname same as -font",
"-fb <fontname> font used for bold text",
"-name <name> name used for matching X resources",
"-title <text> text in window titlebar",
"-T <text> same as -title",
"-n <text> name in icon or icon window",
"-sl <count> number of lines saved after scrolling off window",
"-cc <char-class> character classes for double click",
"-cr <colour> text cursor colour",
"-sb provide an initial scrollbar",
"-rw enable reverse wrap",
"-msg allow messages",
"-iconic start up already iconized",
"-8 process eight-bit characters",
"-7 strip input and output characters to 7 bits",
"-ls run a login shell",
"-C connect to console (not all systems)",
"-console same as -C",
"-sf use Sun function key escape codes",
NULL
};
static XSizeHints sizehints = {
PMinSize | PResizeInc | PBaseSize,
0, 0, 80, 24, /* x, y, width and height */
1, 1, /* Min width and height */
0, 0, /* Max width and height */
1, 1, /* Width and height increments */
{0, 0}, {0, 0}, /* Aspect ratio - not used */
2 * MARGIN, 2 * MARGIN, /* base size */
0
};
/* Return true if we should be running a login shell.
*/
int
is_logshell()
{
return(logshell);
}
/* Return true is we are handling eight bit characters.
*/
int
is_eightbit()
{
return(eight_bit_input);
}
/* Return true if this window should be a console.
*/
int
is_console()
{
return(console_flag);
}
/* Error handling function, tidy up and then exit.
*/
static int
error_handler(dpy,evp)
Display *dpy;
XErrorEvent *evp;
{
quit(1);
return(0);
}
static int
io_error_handler(dpy)
Display *dpy;
{
quit(1);
return(0);
}
/* Utility function to return a malloced copy of a string.
*/
static char *
scopy(str)
char *str;
{
char *s;
if ((s = malloc(strlen((char *)str) + 1)) == NULL)
abort();
strcpy(s,str);
return(s);
}
/* Do any necessary preprocessing of the environment ready for passing to
* the command.
*/
void
fix_environment()
{
int i, j, k;
#ifdef LC_ENV
int cols, lines;
#endif /* LC_ENV */
char **com_env;
extern char **environ;
static char *elist[] = {
"TERM=",
"DISPLAY=",
"WINDOWID=",
#ifdef LC_ENV
"COLUMNS=",
"LINES=",
#endif /* LC_ENV */
NULL
};
char buf[500];
for (i = 0; environ[i] != NULL; i++)
;
com_env = (char **)cmalloc((i + 4) * sizeof(char *));
for (i = j = 0; environ[i] != NULL; i++) {
for (k = 0; elist[k] != NULL; k++)
if (strncmp(elist[k],environ[i],strlen(elist[k])) == 0)
break;
if (elist[k] == NULL)
com_env[j++] = environ[i];
}
com_env[j++] = scopy(TERM_ENV);
sprintf(buf,"DISPLAY=%s",DisplayString(display));
com_env[j++] = scopy(buf);
sprintf(buf,"WINDOWID=%d",(int)main_win);
com_env[j++] = scopy(buf);
#ifdef LC_ENV
scr_get_size(&cols,&lines);
sprintf(buf,"LINES=%d",lines);
com_env[j++] = scopy(buf);
sprintf(buf,"COLUMNS=%d",cols);
com_env[j++] = scopy(buf);
#endif /* LC_ENV */
com_env[j] = NULL;
environ = com_env;
}
/* Take a pass through the arguments extracting any that do not correspond
* to X resources. Recognised arguments are removed from the list and
* the new value of argc is returned.
*/
static int
extract_nonX_args(argc,argv)
int argc;
char **argv;
{
int i, j;
char *s;
xvt_name = argv[0];
res_name = NULL;
for (j = i = 1; i < argc; i++) {
if (strcmp(argv[i],"-name") == 0) {
if (argv[++i] != NULL) {
res_name = scopy(argv[i]);
name_name = scopy(argv[i]);
} else
error("missing -name argument");
} else if (strcmp(argv[i],"-C") == 0 || strcmp(argv[i],"-console") == 0) {
console_flag = 1;
} else
argv[j++] = argv[i];
}
argv[j] = NULL;
if (res_name == NULL) {
s = strrchr(xvt_name,'/');
if (s != NULL)
s++;
else
s = xvt_name;
res_name = scopy(s);
}
return(j);
}
/* Open the display, initialise the rDB resources database and create the
* window. if command is non-null it is the name of -e option command.
* iargc and iargv are the original argc, argv so the can be written to a
* COMMAND resource.
*/
void
init_display(argc,argv,iargc,iargv,command)
int argc, iargc;
char **argv, **iargv;
char *command;
{
char str1[256],str2[256];
char *display_name = NULL;
XrmDatabase commandlineDB, serverDB;
XrmValue value;
XGCValues gcv;
char *str_type;
char *s;
argc = extract_nonX_args(argc,argv);
icon_name = name_name != NULL ? name_name : command;
window_name = name_name != NULL ? name_name : command;
XrmInitialize();
commandlineDB = NULL;
XrmParseCommand(&commandlineDB,optable,OPTABLESIZE,res_name,&argc,argv);
if (argc > 1) {
usage(0);
exit(1);
}
/* See if there was a display named in the command line
*/
sprintf(str1,"%s.display",res_name);
sprintf(str2,"%s.Display",XVT_CLASS);
if (XrmGetResource(commandlineDB,str1,str2,&str_type,&value) == True) {
strncpy(str1,value.addr,(int)value.size);
display_name = str1;
}
if ((display = XOpenDisplay(display_name)) == NULL) {
error("can't open display %s",XDisplayName(display_name));
quit(1);
}
/* Get the resources from the server if there are any.
*/
if ((s = XResourceManagerString(display)) != NULL) {
serverDB = XrmGetStringDatabase(s);
XrmMergeDatabases(serverDB,&rDB);
}
XrmMergeDatabases(commandlineDB,&rDB);
screen = DefaultScreen(display);
visual = DefaultVisual(display,screen);
colormap = DefaultColormap(display,screen);
extract_resources();
#ifdef DEBUG_X
XSynchronize(display,True),XSetErrorHandler(abort);
#else
if (!debugging) {
XSetErrorHandler(error_handler);
XSetIOErrorHandler(io_error_handler);
}
#endif
/* Get colormap entries and create the graphics contexts.
*/
if (cursorclr == 0 || DefaultDepth(display,screen) == 1) {
/* We are not using a colored text cursor so we can use
* read only shared colormap entries for foreground and background.
*/
if (foreground == 0)
XParseColor(display,colormap,"black",&foreground_color);
if (XAllocColor(display,colormap,&foreground_color) != 0)
foreground = foreground_color.pixel;
else {
error("can't allocate foreground color %s - using black",s);
foreground = BlackPixel(display,screen);
}
if (background == 0)
XParseColor(display,colormap,"white",&background_color);
if (XAllocColor(display,colormap,&background_color) != 0)
background = background_color.pixel;
else {
error("can't allocate background color %s - using white",s);
background = WhitePixel(display,screen);
}
if (background == foreground) {
/* If the background and foreground colours end up the same then
* try and remap the background to something different. This
* will only work on a monochrome display.
*/
char *bgclr;
bgclr = foreground == BlackPixel(display,screen) ? "white" : "black";
XParseColor(display,colormap,bgclr,&background_color);
if (XAllocColor(display,colormap,&background_color) != 0)
background = background_color.pixel;
}
cursorclr = foreground;
} else {
unsigned long plane_masks[2];
unsigned long pixels[1];
if (XAllocColorCells(display,colormap,False,plane_masks,2,pixels,1) == 0) {
error("Cannot allocate colormap cells");
foreground = BlackPixel(display,screen);
background = background_color.pixel;
cursorclr = foreground;
} else {
if (foreground == 0)
XParseColor(display,colormap,"black",&foreground_color);
foreground_color.pixel = foreground = pixels[0];
foreground_color.flags = DoRed | DoBlue | DoGreen;
XStoreColor(display,colormap,&foreground_color);
if (background == 0)
XParseColor(display,colormap,"white",&background_color);
background_color.pixel = background = pixels[0] | plane_masks[0];
background_color.flags = DoRed | DoBlue | DoGreen;
XStoreColor(display,colormap,&background_color);
background_color.pixel = pixels[0] | plane_masks[1];
XStoreColor(display,colormap,&background_color);
cursor_color.pixel = cursorclr = pixels[0] |
plane_masks[0] | plane_masks[1];
cursor_color.flags = DoRed | DoBlue | DoGreen;
XStoreColor(display,colormap,&cursor_color);
}
}
create_window(iargc,iargv);
gcv.foreground = foreground;
gcv.background = background;
gcv.font = mainfont->fid;
txgc = XCreateGC(display,main_win,GCForeground|GCBackground|GCFont,&gcv);
gcv.graphics_exposures = False;
negc = XCreateGC(display,main_win,
GCForeground|GCBackground|GCGraphicsExposures,&gcv);
gcv.foreground = foreground;
gcv.background = background;
sbgc = XCreateGC(display,main_win,GCForeground|GCBackground|GCFont,&gcv);
gcv.function = GXinvert;
gcv.plane_mask = foreground ^ background;
hlgc = XCreateGC(display,main_win,GCFunction | GCPlaneMask,&gcv);
gcv.function = GXinvert;
gcv.plane_mask = cursorclr ^ background;
cugc = XCreateGC(display,main_win,GCFunction | GCPlaneMask,&gcv);
/* initialise the screen data structures.
*/
scr_init(save_lines);
sbar_init();
}
/* Extract the named resource from the database and return a pointer to a static
* string containing it.
*/
static unsigned char *
get_resource(name,class)
char *name, *class;
{
static unsigned char resource[256];
unsigned char str1[256], str2[256];
XrmValue value;
char *str_type;
sprintf((char *)str1,"%s.%s",res_name,name);
sprintf((char *)str2,"%s.%s",XVT_CLASS,class);
if (XrmGetResource(rDB,str1,str2,&str_type,&value) == True) {
strncpy((char *)resource,value.addr,(int)value.size);
return(resource);
}
/* The following is added for compatibility with xterm.
*/
sprintf((char *)str1,"%s.vt100.%s",res_name,name);
sprintf((char *)str2,"%s.VT100.%s",XVT_CLASS,class);
if (XrmGetResource(rDB,str1,str2,&str_type,&value) == True) {
strncpy((char *)resource,value.addr,(int)value.size);
return(resource);
}
return(NULL);
}
/* Return true if s is "on" or "yes".
*/
static int
affirmative(s)
unsigned char *s;
{
if (strcmp((char *)s,"on") == 0)
return(1);
if (strcmp((char *)s,"yes") == 0)
return(1);
return(0);
}
/* Extract the resource fields that are needed to open the window.
*/
static void
extract_resources()
{
unsigned char *s;
int x, y, width, height;
int flags;
XColor color;
/* First get the font since we need it to set the size.
*/
if ((s = get_resource("font","Font")) == NULL)
s = (unsigned char *)DEF_FONT;
if ((mainfont = XLoadQueryFont(display,s)) == NULL) {
error("can't access font %s, trying %s",s,FIXED_FONT);
if ((mainfont = XLoadQueryFont(display,FIXED_FONT)) == NULL) {
error("can't access font %s - quitting",FIXED_FONT);
quit(1);
}
}
sizehints.width_inc = XTextWidth(mainfont,"M",1);
sizehints.height_inc = mainfont->ascent + mainfont->descent;
/* Determine whether debugging is enabled.
*/
if ((s = get_resource("debug","Debug")) != NULL)
debugging = affirmative(s);
/* Determine whether to allow messages.
*/
if ((s = get_resource("messages","Messages")) != NULL)
messages = affirmative(s);
/* Determine whether to start up iconized.
*/
if ((s = get_resource("iconic","Iconic")) != NULL)
iconic = affirmative(s);
/* Determine whether to display the scrollbar.
*/
if ((s = get_resource("scrollBar","ScrollBar")) != NULL)
show_scrollbar = affirmative(s);
if (show_scrollbar)
sizehints.base_width += SBAR_WIDTH;
if ((s = get_resource("borderWidth","BorderWidth")) != NULL)
border_width = atoi((char *)s);
flags = 0;
if ((s = get_resource("geometry","Geometry")) != NULL)
flags = XParseGeometry(s,&x,&y,&width,&height);
if (flags & WidthValue) {
sizehints.width = width;
sizehints.flags |= USSize;
}
if (flags & HeightValue) {
sizehints.height = height;
sizehints.flags |= USSize;
}
sizehints.width = sizehints.width * sizehints.width_inc + sizehints.base_width;
sizehints.height = sizehints.height * sizehints.height_inc + sizehints.base_height;
sizehints.min_width = sizehints.width_inc + sizehints.base_width;
sizehints.min_height = sizehints.height_inc + sizehints.base_height;
if (flags & XValue) {
if (flags & XNegative)
x = DisplayWidth(display,screen) + x - sizehints.width - 2 * border_width;
sizehints.x = x;
sizehints.flags |= USPosition;
}
if (flags & YValue) {
if (flags & YNegative)
y = DisplayHeight(display,screen) + y - sizehints.height - 2 * border_width;
sizehints.y = y;
sizehints.flags |= USPosition;
}
if (flags & XNegative)
sizehints.win_gravity = flags & YNegative
? SouthEastGravity
: NorthEastGravity;
else
sizehints.win_gravity = flags & YNegative
? SouthWestGravity
: NorthWestGravity;
sizehints.flags |= PWinGravity;
/* Do the foreground, background and border colours.
*/
border = foreground;
if ((s = get_resource("borderColor","BorderColor")) != NULL) {
if (XParseColor(display,colormap,s,&color) == 0)
error("invalid border color %s",s);
else if (XAllocColor(display,colormap,&color) == 0)
error("can't allocate color %s",s);
else
border = color.pixel;
}
foreground = 0;
if ((s = get_resource("foreground","Foreground")) != NULL) {
if (XParseColor(display,colormap,s,&foreground_color) != 0)
foreground = 1;
else
error("invalid foreground color %s",s);
}
background = 0;
if ((s = get_resource("background","Background")) != NULL) {
if (XParseColor(display,colormap,s,&background_color) != 0)
background = 1;
else
error("invalid background color %s",s);
}
cursorclr = 0;
if ((s = get_resource("cursorColor","CursorColor")) != NULL) {
if (XParseColor(display,colormap,s,&cursor_color) != 0)
cursorclr = 1;
else
error("invalid cursor color %s",s);
}
/* Get the window and icon names
*/
if ((s = get_resource("iconName","IconName")) != NULL) {
icon_name = scopy((char *)s);
window_name = scopy((char *)s);
}
if ((s = get_resource("title","Title")) != NULL)
window_name = scopy((char *)s);
if (window_name == NULL)
window_name = scopy(res_name);
if (icon_name == NULL)
icon_name = scopy(res_name);
/* Extract the bold font if there is one.
*/
if ((s = get_resource("boldFont","BoldFont")) != NULL)
if ((boldfont = XLoadQueryFont(display,s)) == NULL)
error("can't access font %s\n",s);
/* Get the character class.
*/
if ((s = get_resource("charClass","CharClass")) != NULL)
scr_char_class(s);
/* Get the reverse wrapround flag.
*/
if ((s = get_resource("reverseWrap","ReverseWrap")) != NULL)
reverse_wrap = affirmative(s);
/* Get the eight bit flag.
*/
if ((s = get_resource("eightBitInput","EightBitInput")) != NULL)
eight_bit_input = affirmative(s);
/* Get the login shell flag.
*/
if ((s = get_resource("loginShell","LoginShell")) != NULL)
logshell = affirmative(s);
/* Determine whether to use Sun function key escape codes.
*/
if ((s = get_resource("sunFunctionKeys","SunFunctionKeys")) != NULL)
set_sun_function_keys(affirmative(s));
/* extract xvt specific arguments.
*/
if ((s = get_resource("saveLines","SaveLines")) != NULL)
save_lines = atoi((char *)s);
}
/* Open the window.
*/
static void
create_window(argc,argv)
int argc;
char **argv;
{
XTextProperty wname, iname;
XClassHint class;
XWMHints wmhints;
Cursor cursor;
main_win = XCreateSimpleWindow(display,DefaultRootWindow(display),
sizehints.x,sizehints.y,sizehints.width,sizehints.height,
border_width,foreground,background);
if (XStringListToTextProperty(&window_name,1,&wname) == 0) {
error("cannot allocate window name");
quit(1);
}
if (XStringListToTextProperty(&icon_name,1,&iname) == 0) {
error("cannot allocate icon name");
quit(1);
}
class.res_name = res_name;
class.res_class = XVT_CLASS;
wmhints.input = True;
wmhints.initial_state = iconic ? IconicState : NormalState;
wmhints.flags = InputHint | StateHint;
XSetWMProperties(display,main_win,&wname,&iname,argv,argc,
&sizehints,&wmhints,&class);
XFree(iname.value);
XFree(wname.value);
XSelectInput(display,main_win,MW_EVENTS);
sb_win = XCreateSimpleWindow(display,main_win,-1,-1,SBAR_WIDTH - 1,
sizehints.height,1,border,background);
cursor = XCreateFontCursor(display,XC_sb_v_double_arrow);
XRecolorCursor(display,cursor,&foreground_color,&background_color);
XDefineCursor(display,sb_win,cursor);
XSelectInput(display,sb_win,SB_EVENTS);
vt_win = XCreateSimpleWindow(display,main_win,0,0, sizehints.width,
sizehints.height,0,border,background);
if (show_scrollbar) {
XMoveWindow(display,vt_win,SBAR_WIDTH,0);
XResizeWindow(display,vt_win,sizehints.width - SBAR_WIDTH,sizehints.height);
}
cursor = XCreateFontCursor(display,XC_xterm);
XRecolorCursor(display,cursor,&foreground_color,&background_color);
XDefineCursor(display,vt_win,cursor);
XSelectInput(display,vt_win,VT_EVENTS);
}
/* Map the window
*/
void
map_window()
{
#ifdef LC_ENV
XEvent event;
#endif /* LC_ENV */
XMapWindow(display,vt_win);
if (show_scrollbar)
XMapWindow(display,sb_win);
XMapWindow(display,main_win);
#ifdef LC_ENV
/* Setup the window now so that we can add LINES and COLUMNS to
* the environment.
*/
XMaskEvent(display,ExposureMask,&event);
resize_window();
scr_reset();
#endif /* LC_ENV */
}
/* Called after a possible window size change. If the window size has changed
* initiate a redraw by resizing the subwindows and return 1. If the window
* size has not changed then return 0;
*/
int
resize_window()
{
Window root;
int x, y;
unsigned int width, height, bdr_width, depth;
static unsigned int last_width = 0, last_height = 0;
XGetGeometry(display,main_win,&root,&x,&y,&width,&height,&bdr_width,&depth);
if (height == last_height && width == last_width)
return (0);
last_height = height;
last_width = width;
if (show_scrollbar) {
XResizeWindow(display,sb_win,SBAR_WIDTH - 1,height);
XResizeWindow(display,vt_win,width - SBAR_WIDTH,height);
} else
XResizeWindow(display,vt_win,width,height);
return(1);
}
/* Toggle scrollbar.
*/
void
switch_scrollbar()
{
Window root;
int x, y;
unsigned int width, height, bdr_width, depth;
XGetGeometry(display,main_win,&root,&x,&y,&width,&height,&bdr_width,&depth);
if (show_scrollbar) {
XUnmapWindow(display,sb_win);
XMoveWindow(display,vt_win,0,0);
width -= SBAR_WIDTH;
sizehints.base_width -= SBAR_WIDTH;
sizehints.width = width;
sizehints.height = height;
sizehints.flags = USSize | PMinSize | PResizeInc | PBaseSize;
XSetWMNormalHints(display,main_win,&sizehints);
XResizeWindow(display,main_win,width,height);
show_scrollbar = 0;
} else {
XMapWindow(display,sb_win);
XMoveWindow(display,vt_win,SBAR_WIDTH,0);
width += SBAR_WIDTH;
sizehints.base_width += SBAR_WIDTH;
sizehints.width = width;
sizehints.height = height;
sizehints.flags = USSize | PMinSize | PResizeInc | PBaseSize;
XSetWMNormalHints(display,main_win,&sizehints);
XResizeWindow(display,main_win,width,height);
show_scrollbar = 1;
}
}
/* Change the window name displayed in the title bar.
*/
void
change_window_name(str)
unsigned char *str;
{
XTextProperty name;
if (XStringListToTextProperty((char **)&str,1,&name) == 0) {
error("cannot allocate window name");
return;
}
XSetWMName(display,main_win,&name);
XFree(name.value);
}
/* Change the icon name.
*/
void
change_icon_name(str)
unsigned char *str;
{
XTextProperty name;
if (XStringListToTextProperty((char **)&str,1,&name) == 0) {
error("cannot allocate icon name");
return;
}
XSetWMIconName(display,main_win,&name);
XFree(name.value);
}
/* Print an error message.
*/
/*VARARGS1*/
void
#ifdef __STDC__
error(char *fmt,...)
{
va_list args;
va_start(args,fmt);
#else
error(va_alist)
va_dcl
{
char *fmt;
va_list args;
va_start(args);
fmt = va_arg(args,char *);
#endif
fprintf(stderr,"%s: ",xvt_name);
vfprintf(stderr,fmt,args);
va_end(args);
fprintf(stderr,"\n");
}
/* Print out a usage message and exit.
*/
void
usage(full)
int full;
{
int i;
if (full) {
fprintf(stderr,"xvt: permitted arguments are:\n");
for (i = 0; usearray[i] != NULL; i++)
fprintf(stderr,"%s\n",usearray[i]);
} else {
fprintf(stderr,"xvt: unrecognised argument\n");
fprintf(stderr,"Type xvt -help for an option list.\n");
}
}
/* Send a 'Magic Cookie' authorisation string to the command.
*/
void
send_auth()
{
#ifdef MAGIC_COOKIE
static char hexdigits[] = "0123456789abcdef";
char *display_name, *nptr, *dot;
char *buf, *optr;
Xauth *auth;
int i, nlen, len;
struct hostent *h;
char hostname[64];
display_name = DisplayString(display);
if ((nptr = strchr(display_name, ':')) == NULL)
return;
if (nptr == display_name || nptr - display_name > sizeof(hostname))
return;
memcpy(hostname, display_name, nptr - display_name);
hostname[nptr - display_name] = '\0';
++nptr;
if ((h = gethostbyname(hostname)) == NULL)
return;
if (h->h_addrtype != AF_INET)
return;
if ((dot = strchr(nptr, '.')) != NULL)
nlen = dot - nptr;
else
nlen = strlen(nptr);
auth = XauGetAuthByAddr(FamilyInternet, 4, h->h_addr_list[0],
nlen, nptr, 0, "");
if (auth == NULL)
return;
len = 2 + 2 +
2 + auth->address_length +
2 + auth->number_length +
2 + auth->name_length +
2 + auth->data_length;
if ((buf = (char *)cmalloc(len * 2 + 1)) == NULL) {
XauDisposeAuth(auth);
return;
}
optr = buf;
#define PUTSHORT(o, n) *o++ = (n >> 8) & 0xff, *o++ = n & 0xff
#define PUTBYTES(o, s, n) PUTSHORT(o, n), memcpy(o, s, n), o += n
PUTSHORT(optr, (len - 2) * 2);
PUTSHORT(optr, auth->family);
PUTBYTES(optr, auth->address, auth->address_length);
PUTBYTES(optr, auth->number, auth->number_length);
PUTBYTES(optr, auth->name, auth->name_length);
PUTBYTES(optr, auth->data, auth->data_length);
#undef PUTSHORT
#undef PUTBYTES
if (optr != buf + len)
abort();
for (i = len - 1; i >= 0; --i) {
buf[i * 2 + 1] = hexdigits[buf[i] & 0xf];
buf[i * 2] = hexdigits[(buf[i] >> 4) & 0xf];
}
buf[len * 2] = '\r';
send_string((unsigned char *)buf, len * 2 + 1);
free(buf);
XauDisposeAuth(auth);
return;
#endif /* MAGIC_COOKIE */
}
|