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
|
/*
* Copyright (C) 1994 by Dave Glowacki
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* to rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* DAVE GLOWACKI BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* $Header: /usr/sww/share/src/X11R6/local/applications/xless-1.7/RCS/init.c,v 1.45 1994/07/29 03:07:33 dglo Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <X11/X.h>
#include <X11/StringDefs.h>
#include <X11/Intrinsic.h>
#include <X11/Shell.h>
#include <X11/Xaw/AsciiText.h>
#include <X11/Xaw/Box.h>
#include <X11/Xaw/Command.h>
#include <X11/Xaw/Form.h>
#include <X11/Xaw/Paned.h>
#include "xless.h"
#define FontWidth(fnt) ((fnt)->max_bounds.width)
#define FontHeight(fnt) ((fnt)->ascent + (fnt)->descent)
static void fixNewText __P((char *, unsigned *, unsigned *, unsigned *));
static void restartNewInputHandler __P((XtPointer, XtIntervalId *));
static void handleNewInput __P((XtPointer, int *, XtInputId *));
static Widget makeButton __P((Widget, int, unsigned, Widget,
XtCallbackProc, WindowInfo *, String,
const char *));
static void ParseGeometryRsrc __P((void));
#define DEFAULT_WIDTH 80
#define DEFAULT_HEIGHT 24
static int geomParsed = 0;
static int geomMask, geomX, geomY;
static unsigned int geomWidth, geomHeight;
static char *geomPosition = NULL;
static void
fixNewText(text, lp, wp, hp)
char *text;
unsigned *lp, *wp, *hp;
{
char *tmp;
int i, w;
/* lose all underlined and bold characters in the file */
i = w = 0;
tmp = text;
while (i < *lp) {
if ((i+1 < *lp) && (*(text + i) == '_') &&
(*(text + i + 1) == '\b')) {
i += 2;
} else if ((i+2 < *lp) && (*(text + i) == *(text + i + 2)) &&
(*(text + i + 1) == '\b')) {
i += 2;
} else {
*tmp = *(text + i++);
if (*tmp == '\n') {
if (w > *wp)
*wp = w;
w = 0;
(*hp)++;
} else if (*tmp == '\t') {
w += 8 - (w % 8);
} else
w++;
tmp++;
}
}
*tmp++ = 0;
*lp = (tmp - text);
}
static void
restartNewInputHandler(closure, ignored)
XtPointer closure;
XtIntervalId *ignored;
{
WindowInfo *wi = (WindowInfo *)closure;
wi->inputInfo->id = XtAppAddInput(context, wi->inputInfo->fd,
(XtPointer )XtInputReadMask,
handleNewInput, (XtPointer )wi);
}
static void
handleNewInput(closure, source, id)
XtPointer closure;
int *source;
XtInputId *id;
{
WindowInfo *wi = (WindowInfo *)closure;
char buffer[BUFSIZ];
unsigned nbytes, lastchar;
Cardinal needed;
char *bottom;
XawTextPosition pos;
if ((nbytes = read(*source, buffer, (size_t )BUFSIZ)) == -1) {
XtAppError(context, "handleNewMessage: read failed");
return;
}
if (nbytes > 0) {
needed = wi->used + nbytes + (wi->flag & XLessAddedNewline ? 0 : 1);
if (needed > wi->allocated) {
wi->memory = XtRealloc((char *)wi->memory, needed);
wi->allocated = needed;
}
lastchar = wi->used - (wi->flag & XLessAddedNewline ? 2 : 1);
bottom = (char *)&(wi->memory[lastchar]);
strncpy(bottom, buffer, (size_t )nbytes);
wi->flag = (wi->flag & ~(unsigned )XLessAddedNewline);
if (bottom[nbytes-1] != '\n') {
wi->flag |= XLessAddedNewline;
bottom[nbytes++] = '\n';
}
bottom[nbytes] = 0;
fixNewText(bottom, &nbytes, &(wi->dataWidth), &(wi->dataHeight));
wi->used = lastchar + nbytes;
pos = XawTextGetInsertionPoint(wi->text);
XtVaSetValues(wi->text,
XtNstring, wi->memory,
NULL);
XawTextSetInsertionPoint(wi->text,
(pos != lastchar ? pos : wi->used -
(wi->flag & XLessAddedNewline ? 2 : 1)));
} else {
/* no input was waiting for us */
if (wi->inputInfo->falseAlarm++ >= 3) {
/* bump up the wait interval */
wi->inputInfo->interval <<= 1;
wi->inputInfo->falseAlarm = 0;
}
/* turn off input source... */
XtRemoveInput(wi->inputInfo->id);
/* ...but set alarm to turn it back on after the appropriate interval */
XtAppAddTimeOut(context, wi->inputInfo->interval, restartNewInputHandler,
(XtPointer )wi);
}
}
static char *
readFile(fd, wi, szp)
int fd;
WindowInfo *wi;
Cardinal *szp;
{
struct stat fileinfo; /* file information from fstat */
char *data;
XtInputId id;
/* get size of file */
if (fstat(fd, &fileinfo)) {
fprintf(stderr, "%s: can't get file size.\n", progname);
exit(1);
}
/* leave space for the NULL (and possibly a final NEWLINE) */
data = (char *)XtMalloc((Cardinal )(fileinfo.st_size + 2));
/* read entire file */
read(fd, data, (size_t )fileinfo.st_size);
if (resources.monitorFile && wi) {
id = XtAppAddInput(context, fd, (XtPointer )XtInputReadMask,
handleNewInput, (XtPointer )wi);
if (wi) {
wi->inputInfo = (InputInfo *)XtMalloc((Cardinal )sizeof(InputInfo));
wi->inputInfo->fd = fd;
wi->inputInfo->id = id;
wi->inputInfo->interval = 1000;
wi->inputInfo->falseAlarm = 0;
}
} else {
close(fd);
/* make sure file ends with a NEWLINE */
if (*(data + fileinfo.st_size - 1) != '\n') {
*(data + fileinfo.st_size) = '\n';
fileinfo.st_size++;
if (wi)
wi->flag |= XLessAddedNewline;
}
}
*szp = fileinfo.st_size;
return(data);
}
static char *
readStdIn(fd, wi, szp)
int fd;
WindowInfo *wi;
Cardinal *szp;
{
XtInputId id;
char *data, *where;
int size, sz, newsz;
if (resources.monitorFile && wi) {
/* only allocate a single byte, read everything dynamically */
data = (char *)XtMalloc(2);
size = 1;
*data = '\n';
if (wi) {
wi->flag |= XLessAddedNewline;
id = XtAppAddInput(context, 0, (XtPointer )XtInputReadMask,
handleNewInput, (XtPointer )wi);
wi->inputInfo = (InputInfo *)XtMalloc((Cardinal )sizeof(InputInfo));
wi->inputInfo->fd = 0;
wi->inputInfo->id = id;
wi->inputInfo->interval = 1000;
wi->inputInfo->falseAlarm = 0;
}
} else {
/* read STDIN a chunk at a time */
data = (char *)XtMalloc(XLESS_MEMORY_CHUNK);
size = 0;
where = data;
while ((sz = read(fd, where, (size_t )XLESS_MEMORY_CHUNK)) != 0) {
size += sz;
newsz = size + XLESS_MEMORY_CHUNK;
data = (char *)XtRealloc(data, (unsigned)newsz);
where = data + size;
}
/* see if file ends with a NEWLINE */
if (*(data + size - 1) != '\n')
size++;
/* allocate final chunk of memory */
newsz = size + 1;
data = (char *)XtRealloc(data, (unsigned)newsz);
/* make sure file ends with a NEWLINE */
if (*(data + size - 1) != '\n')
*(data + size - 1) = '\n';
}
*szp = size;
return(data);
}
const char *
InitData(fd, wi)
int fd;
WindowInfo *wi;
{
char *data; /* pointer to the data stored
in dynamic memory */
unsigned width, height, length;
Cardinal size;
/*
* Get file size and allocate a chunk of memory for the file to be
* copied into.
*/
if (fd != 0)
data = readFile(fd, wi, &size);
else
data = readStdIn(fd, wi, &size);
/* NUL-terminate file string */
*(data + size) = '\0';
width = height = 0;
length = size;
fixNewText((char *)data, &length, &width, &height);
if (wi) {
wi->memory = data;
wi->allocated = size + 1;
wi->used = length;
wi->dataWidth = width;
wi->dataHeight = height;
}
return(data);
}
static Widget
makeButton(parent, sensitive, vertdist, prevwidg, procptr, wininfo,
accelstr, label)
Widget parent;
int sensitive;
unsigned vertdist;
Widget prevwidg;
XtCallbackProc procptr;
WindowInfo *wininfo;
String accelstr;
const char *label;
{
XtAccelerators accel;
XtCallbackRec callback[2];
Widget w;
accel = XtParseAcceleratorTable(accelstr);
callback[0].callback = procptr;
callback[0].closure = (XtPointer )wininfo;
callback[1].callback = (XtCallbackProc) NULL;
callback[1].closure = (XtPointer) NULL;
w = XtVaCreateManagedWidget(label, commandWidgetClass, parent,
XtNaccelerators, accel,
XtNbottom, XtChainTop,
XtNcallback, callback,
XtNcursor, stdcur,
XtNfont, buttonFont,
XtNfromVert, prevwidg,
XtNfromHoriz, NULL,
XtNhorizDistance, 4,
XtNleft, XtChainLeft,
XtNright, XtChainLeft,
XtNsensitive, (sensitive ? False : True),
XtNtop, XtChainTop,
XtNvertDistance, vertdist,
XtNwidth, XLESS_BUTTON_WIDTH,
NULL);
XtInstallAccelerators(wininfo->text, w);
return(w);
}
/*
* Function Name: MakeToolbox
* Description: This function create all the widgets necessary
* to build the toolbox.
* Arguments: parent - the parent widget
* cd - pointer to the data structure containing
* the application data.
* notmain - TRUE if this is not the main window
* new_wdg - the shell widget that is the new window
* filename - the name of the file displayed in the window
* Returns: None.
*/
Widget
MakeToolbox(parent, wi, filename)
Widget parent;
WindowInfo *wi;
const char *filename;
{
Widget box, button;
const String AccSearch = "#override Meta<Key>S: set() notify() unset()\n";
const String AccNext = "#override Meta<Key>N: set() notify() unset()\n";
const String AccReload = "#override Meta<Key>R: set() notify() unset()\n";
const String AccEdit = "#override Meta<Key>E: set() notify() unset()\n";
const String AccChange = "#override Meta<Key>C: set() notify() unset()\n";
const String AccWind = "#override Meta<Key>W: set() notify() unset()\n";
const String AccPrint = "#override Meta<Key>P: set() notify() unset()\n";
const String AccHelp = "#override <Key>?: set() notify() unset()\n";
const String AccClose = "#override <Key>Q: set() notify() unset()\n";
const String AccBackgnd = "#override Meta<Key>&: set() notify() unset()\n";
const String AccQuit = "#override Meta<Key>Q: set() notify() unset()\n";
/* create the ButtonBox which contains the toolbox */
box = XtVaCreateManagedWidget("toolbox", boxWidgetClass, parent,
XtNallowResize, True,
XtNbottom, XtChainTop,
XtNfromHoriz, wi->text,
XtNhorizDistance, 1,
XtNleft, XtChainRight,
XtNorientation, XtorientVertical,
XtNright, XtChainRight,
XtNshowGrip, False,
XtNskipAdjust, True,
XtNtop, XtChainTop,
NULL);
button = (Widget )NULL;
button = makeButton(box, False, 1, button, PopupHelp, wi, AccHelp, "Help");
button = makeButton(box, False, 1, button, Search, wi, AccSearch, "Search");
button = makeButton(box, False, 1, button, SearchNext, wi,
AccNext, "Search Next");
button = makeButton(box, (filename == NULL ? True : False), 1, button,
CallEditor, wi, AccEdit, "Editor");
if (filename == NULL)
wi->editorButton = button;
else
wi->editorButton = 0;
button = makeButton(box, ((filename == NULL || wi->inputInfo != NULL) ?
True : False),
1, button, Reload, wi, AccReload, "Reload");
if (filename == NULL)
wi->reloadButton = button;
else
wi->reloadButton = 0;
button = makeButton(box, False, 1, button, ChangeFile, wi,
AccChange, "Change file");
button = makeButton(box, False, 1, button, NewWindow, wi,
AccWind, "New window");
button = makeButton(box, False, 1, button, Print, wi, AccPrint, "Print");
button = makeButton(box, False, 1, button, Background, wi, AccBackgnd,
"Background");
button = makeButton(box, False, 1, button, CloseWindow, wi, AccClose,
"Close window");
if (resources.quitButton)
button = makeButton(box, False, 1, button, Quit, wi, AccQuit, "Quit");
return(box);
}
static void
ParseGeometryRsrc()
{
/* get geometry from resource */
if (resources.geometry) {
geomMask = XParseGeometry(resources.geometry, &geomX, &geomY,
&geomWidth, &geomHeight);
/* supply width & height if unspecified */
if ((geomMask & WidthValue) == 0 || (geomMask & HeightValue) == 0) {
if (((geomMask & WidthValue) && geomWidth <= 0) ||
((geomMask & HeightValue) && geomHeight <= 0))
fprintf(stderr, "Bad WIDTHxHEIGHT in geometry \"%s\"!\n",
resources.geometry);
geomWidth = DEFAULT_WIDTH;
geomHeight = DEFAULT_HEIGHT;
}
} else {
geomWidth = DEFAULT_WIDTH;
geomHeight = DEFAULT_HEIGHT;
}
/* remember that we've been here */
geomParsed = 1;
}
const char *
GetGeometryPosition()
{
if (!geomParsed)
ParseGeometryRsrc();
if (!geomPosition && (geomMask & XValue) && (geomMask & YValue)) {
geomPosition = XtMalloc(32);
sprintf(geomPosition, "%+d%+d", geomX, geomY);
}
return(geomPosition);
}
/*
* Function Name: MakeText
* Description: This function creates the text widget necessary
* to display the data.
* Arguments: parent - the parent widget
* wi - pointer to window information
* data - pointer to data in memory.
* ignoreGeom - TRUE if we should ignore supplied geometry
* Returns: tmp - the text widget so created.
*/
Widget
MakeText(parent, wi, data, ignoreGeom)
Widget parent;
WindowInfo *wi;
const char *data;
int ignoreGeom;
{
int windowWidth, windowHeight;
int charWidth, charHeight;
Widget txt;
/* make sure we have default width and height */
if (!geomParsed)
ParseGeometryRsrc();
/* set window width & height (expressed in characters) */
windowWidth = (ignoreGeom ? DEFAULT_WIDTH : geomWidth);
windowHeight = (ignoreGeom ? DEFAULT_HEIGHT : geomHeight);
/* get width/height of a text window character */
charWidth = FontWidth(textFont);
charHeight = FontHeight(textFont);
/* if actual text is smaller, use it instead */
if (wi && (wi->inputInfo == NULL) && resources.sizeToFit &&
(resources.geometry == NULL)) {
if (windowWidth > wi->dataWidth)
windowWidth = wi->dataWidth + 1;
if (windowHeight > wi->dataHeight)
windowHeight = wi->dataHeight;
}
/* convert width/height of text window to pixel values */
windowWidth *= charWidth;
windowHeight *= charHeight;
#ifdef DUMP_TEXTFONT_INFO
printf("\nTextFont info:\n");
printf("\tfid=%ld, direction=%d\n", textFont->fid, textFont->direction);
printf("\tmin_char_or_byte2=%d, max_char_or_byte2=%d\n",
textFont->min_char_or_byte2, textFont->max_char_or_byte2);
printf("\tmin_byte1=%d, max_byte1=%d\n", textFont->min_byte1,
textFont->max_byte1);
printf("\tall_chars_exist=%s, default_char=%d, n_properties=%d\n",
(textFont->all_chars_exist ? "TRUE" : "FALSE"),
textFont->default_char, textFont->n_properties);
printf("\tmin_bounds: lbearing=%d, rbearing=%d, width=%d,\n",
textFont->min_bounds.lbearing, textFont->min_bounds.rbearing,
textFont->min_bounds.width);
printf("\t\tascent=%d, descent=%d\n", textFont->min_bounds.ascent,
textFont->min_bounds.descent);
printf("\tmax_bounds: lbearing=%d, rbearing=%d, width=%d,\n",
textFont->max_bounds.lbearing, textFont->max_bounds.rbearing,
textFont->max_bounds.width);
printf("\t\tascent=%d, descent=%d\n", textFont->max_bounds.ascent,
textFont->max_bounds.descent);
printf("\tascent=%d, descent=%d\n", textFont->ascent, textFont->descent);
printf("TextWindow: char=(%d,%d), lines=(%d,%d), txtwin=(%d,%d)\n",
charWidth, charHeight,
(wi ? wi->dataWidth : -1), (wi? wi->dataHeight : -1),
windowWidth, windowHeight);
#endif /* DUMP_TEXTFONT_INFO */
txt = XtVaCreateManagedWidget("text", asciiTextWidgetClass, parent,
XtNallowResize, True,
XtNbottom, XtChainBottom,
XtNdisplayNonprinting, False,
XtNeditType, XawtextRead,
XtNfont, textFont,
XtNfromHoriz, NULL,
XtNheight, windowHeight,
XtNhorizDistance, 1,
XtNleft, XtChainLeft,
XtNright, XtChainRight,
XtNskipAdjust, False,
XtNscrollVertical, XawtextScrollWhenNeeded,
XtNscrollHorizontal, XawtextScrollWhenNeeded,
XtNscrollVertical, XawtextScrollAlways,
XtNscrollHorizontal, XawtextScrollAlways,
XtNshowGrip, False,
XtNstring, data,
XtNtop, XtChainTop,
XtNuseStringInPlace, True,
XtNwidth, windowWidth,
NULL);
return (txt);
}
void
SetXNames(top, filename)
Widget top;
const char *filename;
{
static char *namePrefix;
static int namelen = 0;
static char *namestr = 0;
const char *cp;
int prefixlen, newlen;
/* don't do this if user has already named the window */
if (resources.name && resources.title)
return;
/* make sure there's a filename string */
if (!filename || *filename == 0)
return;
/* if there's no namePrefix, set one up */
if (!namePrefix) {
namePrefix = XtMalloc((Cardinal )(strlen(progname) + 2));
strcpy(namePrefix, progname);
strcat(namePrefix, ":");
}
/* figure out how long the prefix is */
if (namePrefix && *namePrefix)
prefixlen = strlen(namePrefix);
else
prefixlen = 0;
/* remove path junk if user doesn't want it */
if (resources.removePath) {
cp = strrchr(filename, '/');
if (cp)
filename = cp + 1;
}
/* make sure name buffer is large enough */
newlen = prefixlen + strlen(filename) + 1;
if (newlen > namelen) {
if (namestr)
XtFree(namestr);
namestr = (char *)XtMalloc((Cardinal )newlen);
namelen = newlen;
}
/* create title/icon name string */
strcpy(namestr, namePrefix);
strcat(namestr, filename);
/* set window's icon and title names to the file name */
XtVaSetValues(top,
XtNiconName, (resources.name ? resources.name : namestr),
XtNtitle, (resources.title ? resources.title : namestr),
NULL);
}
void
SetWMHints(wi)
WindowInfo *wi;
{
Dimension txtWidth, txtHeight;
Dimension winWidth, winHeight;
Dimension baseWidth, baseHeight;
Dimension tbxWidth, tbxHeight;
int charWidth, charHeight;
/* get width/height of entire window */
XtVaGetValues(wi->base,
XtNheight, &winHeight,
XtNwidth, &winWidth,
NULL);
/* get width/height of text window */
XtVaGetValues(wi->text,
XtNheight, &txtHeight,
XtNwidth, &txtWidth,
NULL);
/* get size of tool box */
XtVaGetValues(wi->toolbox,
XtNheight, &tbxHeight,
XtNwidth, &tbxWidth,
NULL);
/* figure out base width/height */
baseWidth = winWidth - txtWidth;
baseHeight = (tbxHeight > txtHeight ? tbxHeight : txtHeight);
/* get width/height of a text window character */
charWidth = FontWidth(textFont);
charHeight = FontHeight(textFont);
/* set base & increment size */
XtVaSetValues(wi->base,
XtNbaseWidth, baseWidth + charWidth + charWidth + charWidth,
XtNbaseHeight, charHeight,
XtNheightInc, charHeight,
XtNwidthInc, charWidth,
NULL);
/* set minimum window size */
XtVaSetValues(wi->base,
XtNminHeight, tbxHeight,
XtNminWidth, tbxWidth + charWidth + charWidth,
NULL);
}
|