home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume10 / contool / patch2 < prev    next >
Internet Message Format  |  1990-12-08  |  58KB

  1. Path: uunet!snorkelwacker.mit.edu!apple!sun-barr!newstop!exodus!appserv!melmac.harris-atd.com
  2. From: chuck@melmac.harris-atd.com (Chuck Musciano)
  3. Newsgroups: comp.sources.x
  4. Subject: v10i078: contool -- replacement for cmdtool -C, Patch2, Part01/01
  5. Message-ID: <316@appserv.Eng.Sun.COM>
  6. Date: 21 Nov 90 18:25:55 GMT
  7. References: <csx-10i078:contool@uunet.UU.NET>
  8. Sender: news@exodus.Eng.Sun.COM
  9. Lines: 1964
  10. Approved: argv@sun.com
  11.  
  12. Submitted-by: chuck@melmac.harris-atd.com (Chuck Musciano)
  13. Posting-number: Volume 10, Issue 78
  14. Archive-name: contool/patch2
  15. Patch-To: contool: Volume 10, Issue 34-40 (10/29/90)
  16.  
  17. *** Makefile.orig    Thu Nov  1 15:09:31 1990
  18. --- Makefile    Thu Nov  1 14:51:23 1990
  19. ***************
  20. *** 8,13 ****
  21. --- 8,16 ----
  22.   # Where to install the help file
  23.   HELPDIR        = /usr/local/lib/help
  24.   
  25. + # Mailer you use
  26. + MAILER        = /usr/ucb/mail
  27.   # paths to be searched for icons
  28.   ICON_PATH    = .:./icons:/usr/local/images:/usr/include/images
  29.   
  30. ***************
  31. *** 18,26 ****
  32.   LDFLAGS        = -L$(OPENWINHOME)/lib
  33.   
  34.   # Where your XView include files are installed
  35. ! CPPFLAGS    = -I$(OPENWINHOME)/include
  36.   
  37. ! CONTOOL        = contool.o contool_ui.o error.o expand.o filters.o load.o load_icon.o logging.o misc.o parse.o props.o regexp.o store.o window_misc.o
  38.   
  39.   OPTIONS        = -O
  40.   
  41. --- 21,31 ----
  42.   LDFLAGS        = -L$(OPENWINHOME)/lib
  43.   
  44.   # Where your XView include files are installed
  45. ! CPPFLAGS    = -I$(OPENWINHOME)/include -DMAILER=\"$(MAILER)\"
  46.   
  47. ! CONTOOL        = about.o busy.o contool.o contool_ui.o error.o expand.o filename_completion.o \
  48. !           filters.o load.o load_icon.o logging.o misc.o parse.o \
  49. !           pinned_menu_notify.o place_dialog.o props.o regexp.o send_mail.o store.o
  50.   
  51.   OPTIONS        = -O
  52.   
  53. ***************
  54. *** 50,55 ****
  55. --- 55,64 ----
  56.   
  57.   #dependencies
  58.   
  59. + about.o: contool_ui.h manifest.h
  60. + busy.o: manifest.h
  61.   contool.o: manifest.h contool.h contool_ui.h icons/default_good.icon \
  62.        icons/default_bad.icon icons/default_flash.icon icons/mask.icon
  63.   
  64. ***************
  65. *** 59,70 ****
  66.   
  67.   expand.o: manifest.h
  68.   
  69.   filters.o: manifest.h contool.h contool_ui.h images/single.icon \
  70.        images/range.icon images/empty.icon
  71.   
  72.   load.o: manifest.h contool.h contool_ui.h
  73.   
  74. ! load_icon.o: manifest.h contool.h
  75.   
  76.   logging.o: manifest.h contool.h contool_ui.h
  77.   
  78. --- 68,81 ----
  79.   
  80.   expand.o: manifest.h
  81.   
  82. + filename_completion.o: manifest.h
  83.   filters.o: manifest.h contool.h contool_ui.h images/single.icon \
  84.        images/range.icon images/empty.icon
  85.   
  86.   load.o: manifest.h contool.h contool_ui.h
  87.   
  88. ! load_icon.o: manifest.h
  89.   
  90.   logging.o: manifest.h contool.h contool_ui.h
  91.   
  92. ***************
  93. *** 72,81 ****
  94.   
  95.   parse.o: manifest.h contool.h lex.c
  96.   
  97.   props.o: manifest.h contool.h contool_ui.h
  98.   
  99.   regexp.o: manifest.h contool.h
  100.   
  101. ! store.o: manifest.h contool.h contool_ui.h
  102.   
  103. ! window_misc.o: manifest.h contool_ui.h
  104. --- 83,96 ----
  105.   
  106.   parse.o: manifest.h contool.h lex.c
  107.   
  108. + pinned_menu_notify.o: manifest.h
  109. + place_dialog.o: manifest.h
  110.   props.o: manifest.h contool.h contool_ui.h
  111.   
  112.   regexp.o: manifest.h contool.h
  113.   
  114. ! send_mail.o: contool_ui.h manifest.h
  115.   
  116. ! store.o: manifest.h contool.h contool_ui.h
  117. *** Imakefile.orig    Thu Nov  1 15:09:34 1990
  118. --- Imakefile    Thu Nov  1 14:51:22 1990
  119. ***************
  120. *** 2,20 ****
  121.   
  122.   HELPDIR        = /usr/local/lib/help
  123.   
  124.   LOCAL_LIBRARIES = -lxview -lolgx $(XLIB)
  125.   
  126.   LDOPTIONS    = -L$(OPENWINHOME)/lib
  127.   
  128. ! CFLAGS        = -O -I$(OPENWINHOME)/include
  129.   
  130. ! SRCS        = contool.c contool_ui.c error.c expand.c filters.c \
  131. !           load.c load_icon.c logging.c misc.c parse.y props.c \
  132. !           regexp.c store.c window_misc.c
  133.   
  134. ! OBJS        = contool.o contool_ui.o error.o expand.o filters.o \
  135. !           load.o load_icon.o logging.o misc.o parse.o props.o \
  136. !           regexp.o store.o window_misc.o
  137.   
  138.   ComplexProgramTarget(contool)
  139.   
  140. --- 2,22 ----
  141.   
  142.   HELPDIR        = /usr/local/lib/help
  143.   
  144. + MAILER        = /usr/ucb/mail
  145.   LOCAL_LIBRARIES = -lxview -lolgx $(XLIB)
  146.   
  147.   LDOPTIONS    = -L$(OPENWINHOME)/lib
  148.   
  149. ! CFLAGS        = -O -I$(OPENWINHOME)/include -DMAILER=\"$(MAILER)\"
  150.   
  151. ! SRCS        = about.c busy.c contool.c contool_ui.c error.c expand.c filename_completion.c \
  152. !           filters.c load.c load_icon.c logging.c misc.c parse.y \
  153. !           pinned_menu_notify.c place_dialog.c props.c regexp.c send_mail.c store.c
  154.   
  155. ! OBJS        = about.o busy.o contool.o contool_ui.o error.o expand.o filename_completion.o \
  156. !           filters.o load.o load_icon.o logging.o misc.o parse.o \
  157. !           pinned_menu_notify.o place_dialog.o props.o regexp.o send_mail.o store.o
  158.   
  159.   ComplexProgramTarget(contool)
  160.   
  161. *** README.orig    Thu Nov  1 15:09:35 1990
  162. --- README    Thu Nov  1 13:39:35 1990
  163. ***************
  164. *** 54,59 ****
  165. --- 54,61 ----
  166.           HELPDIR        Where the context-sensitive help file
  167.                   will be stored.
  168.   
  169. +         MAILER        The full path of your system mailer.
  170.           ICON_PATH    Path to search (at runtime) for other
  171.                   icon files.  This path will only be used
  172.                   if the user does not have the ICON_PATH
  173. ***************
  174. *** 178,180 ****
  175. --- 180,185 ----
  176.                   Fixed handling of dialog boxes under
  177.                      window managers other than olwm.
  178.                   Add Imakefile.
  179. +     3.0b            Fixed "tiny icon" bug.
  180. +                 Added "About contool..." dialog.
  181. +                 Source restructuring for maintainability.
  182. *** contool.info.orig    Thu Nov  1 15:09:37 1990
  183. --- contool.info    Thu Nov  1 13:47:28 1990
  184. ***************
  185. *** 281,283 ****
  186. --- 281,364 ----
  187.   # 
  188.   :accept_store
  189.   The Store button writes the desired items to the configuration file.  The entire file is overwritten with the data.  Thus, a file containing properties and filters will be completely rewritten, even if you only write the filters to it.
  190. + # 
  191. + :about_controls
  192. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  193. + # 
  194. + :message1
  195. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  196. + # 
  197. + :message5
  198. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  199. + # 
  200. + :message6
  201. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  202. + # 
  203. + :message7
  204. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  205. + # 
  206. + :message8
  207. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  208. + # 
  209. + :message9
  210. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  211. + # 
  212. + :message10
  213. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  214. + # 
  215. + :message15
  216. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  217. + # 
  218. + :message11
  219. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  220. + # 
  221. + :message12
  222. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  223. + # 
  224. + :message13
  225. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  226. + # 
  227. + :message14
  228. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  229. + # 
  230. + :message16
  231. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  232. + # 
  233. + :message17
  234. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  235. + # 
  236. + :message18
  237. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  238. + # 
  239. + :message19
  240. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  241. + # 
  242. + :message20
  243. + This window gives you some details about the development of contool, encourages you to correspond with the developer to improve future versions of contool, and delineates the restrictions placed on the contool source code.
  244. + # 
  245. + :send_mail
  246. + Clicking this button will open another window in which you can compose and send mail to the developer of contool.
  247. + # 
  248. + :mail_controls
  249. + This window allows you to send mail concerning contool to its developer.  You are encouraged to send comments and suggestions in order to make contool a better tool.
  250. + # 
  251. + :message21
  252. + This window allows you to send mail concerning contool to its developer.  You are encouraged to send comments and suggestions in order to make contool a better tool.
  253. + # 
  254. + :message22
  255. + This window allows you to send mail concerning contool to its developer.  You are encouraged to send comments and suggestions in order to make contool a better tool.
  256. + # 
  257. + :address
  258. + This choice item lets you select the address to which your mail will be sent.  If your machine understands Internet-style addresses, you should use the first choice item.  If you are a UUCP-based site, you should use the second item.  If neither address works, use the third item to enter a valid address.
  259. + # 
  260. + :other_address
  261. + This text field is used to enter an e-mail address to which your mail will be sent.  It should only be used if the two default addresses do not work from your site.
  262. + # 
  263. + :mail_controls1
  264. + This window allows you to send mail concerning contool to its developer.  You are encouraged to send comments and suggestions in order to make contool a better tool.
  265. + # 
  266. + :accept_send
  267. + Clicking this button will send your mail message to contool's developer.
  268. + # 
  269. + :cancel_mail
  270. + Clicking this button cancels the message you were going to send.
  271. *** about.c.orig    Thu Nov  1 15:09:38 1990
  272. --- about.c    Thu Nov  1 11:46:52 1990
  273. ***************
  274. *** 0 ****
  275. --- 1,35 ----
  276. + /************************************************************************/
  277. + /*                                    */
  278. + /*    about.c        display a little information window        */
  279. + /*                                    */
  280. + /************************************************************************/
  281. + #include    <stdio.h>
  282. + #include    <sys/param.h>
  283. + #include    <sys/types.h>
  284. + #include    <xview/xview.h>
  285. + #include    <xview/panel.h>
  286. + #include    "contool_ui.h"
  287. + #include    "manifest.h"
  288. + PUBLIC    contool_base_objects    *contool_base;
  289. + PRIVATE    contool_about_objects    *dialog = NULL;
  290. + /************************************************************************/
  291. + EXPORT    Menu_item    popup_about_contool(item, op)
  292. + Menu_item    item;
  293. + Menu_generate    op;
  294. + {
  295. +     if (op == MENU_NOTIFY) {
  296. +        if (dialog == NULL) {
  297. +           dialog = contool_about_objects_initialize(NULL, contool_base->base);
  298. +           place_dialog(contool_base->base, dialog->about);
  299. +           }
  300. +        xv_set(dialog->about, XV_SHOW, TRUE, NULL);
  301. +        }
  302. +     return item;
  303. + }
  304. *** busy.c.orig    Thu Nov  1 15:09:39 1990
  305. --- busy.c    Tue Oct 23 08:03:24 1990
  306. ***************
  307. *** 0 ****
  308. --- 1,65 ----
  309. + /************************************************************************/
  310. + /*    Copyright 1988-1990 by Chuck Musciano and Harris Corporation    */
  311. + /*                                    */
  312. + /*    Permission to use, copy, modify, and distribute this software    */
  313. + /*    and its documentation for any purpose and without fee is    */
  314. + /*    hereby granted, provided that the above copyright notice    */
  315. + /*    appear in all copies and that both that copyright notice and    */
  316. + /*    this permission notice appear in supporting documentation, and    */
  317. + /*    that the name of Chuck Musciano and Harris Corporation not be    */
  318. + /*    used in advertising or publicity pertaining to distribution    */
  319. + /*    of the software without specific, written prior permission.    */
  320. + /*    Chuck Musciano and Harris Corporation make no representations    */
  321. + /*    about the suitability of this software for any purpose.  It is    */
  322. + /*    provided "as is" without express or implied warranty.  This     */
  323. + /*    software may not be sold without the prior explicit permission    */
  324. + /*    of Harris Corporation.                        */
  325. + /************************************************************************/
  326. + /************************************************************************/
  327. + /*                                    */
  328. + /*    busy.c    turn frame busy attribute on and off            */
  329. + /*                                    */
  330. + /************************************************************************/
  331. + #include    <stdio.h>
  332. + #include    <xview/xview.h>
  333. + #include    <xview/panel.h>
  334. + #include    "manifest.h"
  335. + /************************************************************************/
  336. + PRIVATE    set_busy(base, busy, skip)
  337. + Frame    base;
  338. + int    busy;
  339. + Frame    skip;
  340. + {    Frame    subframe;
  341. +     int    i;
  342. +     for (i = 1; subframe = (Frame) xv_get(base, FRAME_NTH_SUBFRAME, i); i++)
  343. +        if (subframe != skip)
  344. +           if (xv_get(subframe, XV_SHOW))
  345. +              xv_set(subframe, FRAME_BUSY, busy, NULL);
  346. +     xv_set(base, FRAME_BUSY, busy, NULL);
  347. + }
  348. + /************************************************************************/
  349. + EXPORT    lets_get_busy(base, busy, skip)
  350. + Frame    base;
  351. + int    busy;
  352. + Frame    skip;
  353. + {    static    int    depth = 0;
  354. +     if (busy) {
  355. +        if (depth == 0)
  356. +           set_busy(base, TRUE, skip);
  357. +        depth++;
  358. +        }
  359. +     else if (depth > 0)
  360. +        if (--depth == 0)
  361. +           set_busy(base, FALSE, NULL);
  362. + }
  363. *** contool.c.orig    Thu Nov  1 15:09:40 1990
  364. --- contool.c    Thu Nov  1 11:46:51 1990
  365. ***************
  366. *** 176,182 ****
  367.          else if ((cmd = popen(defaults.print_filter, "w")) == NULL)
  368.             error("Could not execute %s", defaults.print_filter);
  369.          else {
  370. !           xv_set(contool_base->base, FRAME_BUSY, TRUE, NULL);
  371.             size = (int) xv_get(contool_base->display, TEXTSW_LENGTH);
  372.             buf = (char *) malloc(size);
  373.             xv_get(contool_base->display, TEXTSW_CONTENTS, 0, buf, size);
  374. --- 176,182 ----
  375.          else if ((cmd = popen(defaults.print_filter, "w")) == NULL)
  376.             error("Could not execute %s", defaults.print_filter);
  377.          else {
  378. !           lets_get_busy(contool_base->base, TRUE, NULL);
  379.             size = (int) xv_get(contool_base->display, TEXTSW_LENGTH);
  380.             buf = (char *) malloc(size);
  381.             xv_get(contool_base->display, TEXTSW_CONTENTS, 0, buf, size);
  382. ***************
  383. *** 183,189 ****
  384.             if (fwrite(buf, 1, size, cmd) != size)
  385.                error("Could not write console contents to printer");
  386.             pclose(cmd);
  387. !           xv_set(contool_base->base, FRAME_BUSY, FALSE, NULL);
  388.             }
  389.          }
  390.       return item;
  391. --- 183,190 ----
  392.             if (fwrite(buf, 1, size, cmd) != size)
  393.                error("Could not write console contents to printer");
  394.             pclose(cmd);
  395. !           free(buf);
  396. !           lets_get_busy(contool_base->base, FALSE, NULL);
  397.             }
  398.          }
  399.       return item;
  400. ***************
  401. *** 258,266 ****
  402.       if (flash && flash != default_flash_icon)
  403.          xv_destroy(flash);
  404.   
  405. !     good  = (defaults.good_icon  == NULL)? default_good_icon  : load_icon(defaults.good_icon, msg);
  406. !     bad   = (defaults.bad_icon   == NULL)? default_bad_icon   : load_icon(defaults.bad_icon, msg);
  407.       flash = (defaults.flash_icon == NULL)? default_flash_icon : load_icon(defaults.flash_icon, msg);
  408.   
  409.       if (!blinking)
  410.          change_icon(good, good == default_good_icon);
  411. --- 259,279 ----
  412.       if (flash && flash != default_flash_icon)
  413.          xv_destroy(flash);
  414.   
  415. !     good = (defaults.good_icon == NULL)? default_good_icon : load_icon(defaults.good_icon, msg);
  416. !     if (good == NULL) {
  417. !        internal_error("Cannot load default \"All is well\" icon %s: %s", defaults.good_icon, msg);
  418. !        good = default_good_icon;
  419. !        }
  420. !     bad = (defaults.bad_icon == NULL)? default_bad_icon : load_icon(defaults.bad_icon, msg);
  421. !     if (bad == NULL) {
  422. !        internal_error("Cannot load default \"Check console\" icon %s: %s", defaults.bad_icon, msg);
  423. !        bad = default_bad_icon;
  424. !        }
  425.       flash = (defaults.flash_icon == NULL)? default_flash_icon : load_icon(defaults.flash_icon, msg);
  426. +     if (flash == NULL) {
  427. +        internal_error("Cannot load default \"Flash\" icon %s: %s", defaults.flash_icon, msg);
  428. +        flash = default_flash_icon;
  429. +        }
  430.   
  431.       if (!blinking)
  432.          change_icon(good, good == default_good_icon);
  433. ***************
  434. *** 267,273 ****
  435.   }
  436.   
  437.   /************************************************************************/
  438. ! /*    Now, filter  handlers                        */
  439.   /************************************************************************/
  440.   
  441.   /************************************************************************/
  442. --- 280,286 ----
  443.   }
  444.   
  445.   /************************************************************************/
  446. ! /*    Now, filter handlers                        */
  447.   /************************************************************************/
  448.   
  449.   /************************************************************************/
  450. *** contool_ui.c.orig    Thu Nov  1 15:09:42 1990
  451. --- contool_ui.c    Thu Nov  1 13:47:30 1990
  452. ***************
  453. *** 33,38 ****
  454. --- 33,39 ----
  455.       extern Menu_item    start_logging();
  456.       extern Menu_item    stop_logging();
  457.       extern Menu_item    print_messages();
  458. +     extern Menu_item    popup_about_contool();
  459.       Xv_opaque    obj;
  460.       
  461.       obj = xv_create(XV_NULL, MENU_COMMAND_MENU,
  462. ***************
  463. *** 62,67 ****
  464. --- 63,73 ----
  465.               MENU_STRING, "Print",
  466.               MENU_GEN_PROC, print_messages,
  467.               NULL,
  468. +         MENU_ITEM,
  469. +             XV_KEY_DATA, INSTANCE, ip,
  470. +             MENU_STRING, "About contool...",
  471. +             MENU_GEN_PROC, popup_about_contool,
  472. +             NULL,
  473.           MENU_DEFAULT, 2,
  474.           MENU_GEN_PIN_WINDOW, (Xv_opaque) ip[0], "File",
  475.           NULL);
  476. ***************
  477. *** 307,313 ****
  478.           XV_KEY_DATA, INSTANCE, ip,
  479.           XV_WIDTH, 575,
  480.           XV_HEIGHT, 246,
  481. !         XV_LABEL, "Contool 3.0a",
  482.           FRAME_CLOSED, FALSE,
  483.           FRAME_SHOW_FOOTER, TRUE,
  484.           FRAME_SHOW_RESIZE_CORNER, TRUE,
  485. --- 313,319 ----
  486.           XV_KEY_DATA, INSTANCE, ip,
  487.           XV_WIDTH, 575,
  488.           XV_HEIGHT, 246,
  489. !         XV_LABEL, "Contool 3.0b",
  490.           FRAME_CLOSED, FALSE,
  491.           FRAME_SHOW_FOOTER, TRUE,
  492.           FRAME_SHOW_RESIZE_CORNER, TRUE,
  493. ***************
  494. *** 661,667 ****
  495.       caddr_t        ip;
  496.       Xv_opaque    owner;
  497.   {
  498. !     extern Panel_setting    file_completion();
  499.       Xv_opaque    obj;
  500.       
  501.       obj = xv_create(owner, PANEL_TEXT,
  502. --- 667,673 ----
  503.       caddr_t        ip;
  504.       Xv_opaque    owner;
  505.   {
  506. !     extern Panel_setting    filename_completion();
  507.       Xv_opaque    obj;
  508.       
  509.       obj = xv_create(owner, PANEL_TEXT,
  510. ***************
  511. *** 678,684 ****
  512.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  513.           PANEL_VALUE_STORED_LENGTH, 256,
  514.           PANEL_READ_ONLY, FALSE,
  515. !         PANEL_NOTIFY_PROC, file_completion,
  516.           NULL);
  517.       return obj;
  518.   }
  519. --- 684,690 ----
  520.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  521.           PANEL_VALUE_STORED_LENGTH, 256,
  522.           PANEL_READ_ONLY, FALSE,
  523. !         PANEL_NOTIFY_PROC, filename_completion,
  524.           NULL);
  525.       return obj;
  526.   }
  527. ***************
  528. *** 752,758 ****
  529.       caddr_t        ip;
  530.       Xv_opaque    owner;
  531.   {
  532. !     extern Panel_setting    file_completion();
  533.       Xv_opaque    obj;
  534.       
  535.       obj = xv_create(owner, PANEL_TEXT,
  536. --- 758,764 ----
  537.       caddr_t        ip;
  538.       Xv_opaque    owner;
  539.   {
  540. !     extern Panel_setting    filename_completion();
  541.       Xv_opaque    obj;
  542.       
  543.       obj = xv_create(owner, PANEL_TEXT,
  544. ***************
  545. *** 769,775 ****
  546.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  547.           PANEL_VALUE_STORED_LENGTH, 256,
  548.           PANEL_READ_ONLY, FALSE,
  549. !         PANEL_NOTIFY_PROC, file_completion,
  550.           NULL);
  551.       return obj;
  552.   }
  553. --- 775,781 ----
  554.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  555.           PANEL_VALUE_STORED_LENGTH, 256,
  556.           PANEL_READ_ONLY, FALSE,
  557. !         PANEL_NOTIFY_PROC, filename_completion,
  558.           NULL);
  559.       return obj;
  560.   }
  561. ***************
  562. *** 783,789 ****
  563.       caddr_t        ip;
  564.       Xv_opaque    owner;
  565.   {
  566. !     extern Panel_setting    file_completion();
  567.       Xv_opaque    obj;
  568.       
  569.       obj = xv_create(owner, PANEL_TEXT,
  570. --- 789,795 ----
  571.       caddr_t        ip;
  572.       Xv_opaque    owner;
  573.   {
  574. !     extern Panel_setting    filename_completion();
  575.       Xv_opaque    obj;
  576.       
  577.       obj = xv_create(owner, PANEL_TEXT,
  578. ***************
  579. *** 800,806 ****
  580.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  581.           PANEL_VALUE_STORED_LENGTH, 256,
  582.           PANEL_READ_ONLY, FALSE,
  583. !         PANEL_NOTIFY_PROC, file_completion,
  584.           NULL);
  585.       return obj;
  586.   }
  587. --- 806,812 ----
  588.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  589.           PANEL_VALUE_STORED_LENGTH, 256,
  590.           PANEL_READ_ONLY, FALSE,
  591. !         PANEL_NOTIFY_PROC, filename_completion,
  592.           NULL);
  593.       return obj;
  594.   }
  595. ***************
  596. *** 814,820 ****
  597.       caddr_t        ip;
  598.       Xv_opaque    owner;
  599.   {
  600. !     extern Panel_setting    file_completion();
  601.       Xv_opaque    obj;
  602.       
  603.       obj = xv_create(owner, PANEL_TEXT,
  604. --- 820,826 ----
  605.       caddr_t        ip;
  606.       Xv_opaque    owner;
  607.   {
  608. !     extern Panel_setting    filename_completion();
  609.       Xv_opaque    obj;
  610.       
  611.       obj = xv_create(owner, PANEL_TEXT,
  612. ***************
  613. *** 831,837 ****
  614.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  615.           PANEL_VALUE_STORED_LENGTH, 256,
  616.           PANEL_READ_ONLY, FALSE,
  617. !         PANEL_NOTIFY_PROC, file_completion,
  618.           NULL);
  619.       return obj;
  620.   }
  621. --- 837,843 ----
  622.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  623.           PANEL_VALUE_STORED_LENGTH, 256,
  624.           PANEL_READ_ONLY, FALSE,
  625. !         PANEL_NOTIFY_PROC, filename_completion,
  626.           NULL);
  627.       return obj;
  628.   }
  629. ***************
  630. *** 1683,1689 ****
  631.       caddr_t        ip;
  632.       Xv_opaque    owner;
  633.   {
  634. !     extern Panel_setting    file_completion();
  635.       Xv_opaque    obj;
  636.       
  637.       obj = xv_create(owner, PANEL_TEXT,
  638. --- 1689,1695 ----
  639.       caddr_t        ip;
  640.       Xv_opaque    owner;
  641.   {
  642. !     extern Panel_setting    filename_completion();
  643.       Xv_opaque    obj;
  644.       
  645.       obj = xv_create(owner, PANEL_TEXT,
  646. ***************
  647. *** 1700,1706 ****
  648.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  649.           PANEL_VALUE_STORED_LENGTH, 256,
  650.           PANEL_READ_ONLY, FALSE,
  651. !         PANEL_NOTIFY_PROC, file_completion,
  652.           NULL);
  653.       return obj;
  654.   }
  655. --- 1706,1712 ----
  656.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  657.           PANEL_VALUE_STORED_LENGTH, 256,
  658.           PANEL_READ_ONLY, FALSE,
  659. !         PANEL_NOTIFY_PROC, filename_completion,
  660.           NULL);
  661.       return obj;
  662.   }
  663. ***************
  664. *** 1841,1847 ****
  665.       caddr_t        ip;
  666.       Xv_opaque    owner;
  667.   {
  668. !     extern Panel_setting    file_completion();
  669.       Xv_opaque    obj;
  670.       
  671.       obj = xv_create(owner, PANEL_TEXT,
  672. --- 1847,1853 ----
  673.       caddr_t        ip;
  674.       Xv_opaque    owner;
  675.   {
  676. !     extern Panel_setting    filename_completion();
  677.       Xv_opaque    obj;
  678.       
  679.       obj = xv_create(owner, PANEL_TEXT,
  680. ***************
  681. *** 1858,1864 ****
  682.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  683.           PANEL_VALUE_STORED_LENGTH, 256,
  684.           PANEL_READ_ONLY, FALSE,
  685. !         PANEL_NOTIFY_PROC, file_completion,
  686.           NULL);
  687.       return obj;
  688.   }
  689. --- 1864,1870 ----
  690.           PANEL_VALUE_DISPLAY_LENGTH, 35,
  691.           PANEL_VALUE_STORED_LENGTH, 256,
  692.           PANEL_READ_ONLY, FALSE,
  693. !         PANEL_NOTIFY_PROC, filename_completion,
  694.           NULL);
  695.       return obj;
  696.   }
  697. ***************
  698. *** 1884,1889 ****
  699. --- 1890,2715 ----
  700.           XV_HEIGHT, 20,
  701.           PANEL_LABEL_STRING, "Store",
  702.           PANEL_NOTIFY_PROC, store_filters,
  703. +         NULL);
  704. +     return obj;
  705. + }
  706. + /*
  707. +  * Initialize an instance of object `about'.
  708. +  */
  709. + contool_about_objects *
  710. + contool_about_objects_initialize(ip, owner)
  711. +     contool_about_objects    *ip;
  712. +     Xv_opaque    owner;
  713. + {
  714. +     if (!ip && !(ip = (contool_about_objects *) calloc(1, sizeof (contool_about_objects))))
  715. +         return (contool_about_objects *) NULL;
  716. +     if (!ip->about)
  717. +         ip->about = contool_about_about_create(ip, owner);
  718. +     if (!ip->about_controls)
  719. +         ip->about_controls = contool_about_about_controls_create(ip, ip->about);
  720. +     if (!ip->message1)
  721. +         ip->message1 = contool_about_message1_create(ip, ip->about_controls);
  722. +     if (!ip->message5)
  723. +         ip->message5 = contool_about_message5_create(ip, ip->about_controls);
  724. +     if (!ip->message6)
  725. +         ip->message6 = contool_about_message6_create(ip, ip->about_controls);
  726. +     if (!ip->message7)
  727. +         ip->message7 = contool_about_message7_create(ip, ip->about_controls);
  728. +     if (!ip->message8)
  729. +         ip->message8 = contool_about_message8_create(ip, ip->about_controls);
  730. +     if (!ip->message9)
  731. +         ip->message9 = contool_about_message9_create(ip, ip->about_controls);
  732. +     if (!ip->message10)
  733. +         ip->message10 = contool_about_message10_create(ip, ip->about_controls);
  734. +     if (!ip->message15)
  735. +         ip->message15 = contool_about_message15_create(ip, ip->about_controls);
  736. +     if (!ip->message11)
  737. +         ip->message11 = contool_about_message11_create(ip, ip->about_controls);
  738. +     if (!ip->message12)
  739. +         ip->message12 = contool_about_message12_create(ip, ip->about_controls);
  740. +     if (!ip->message13)
  741. +         ip->message13 = contool_about_message13_create(ip, ip->about_controls);
  742. +     if (!ip->message14)
  743. +         ip->message14 = contool_about_message14_create(ip, ip->about_controls);
  744. +     if (!ip->message16)
  745. +         ip->message16 = contool_about_message16_create(ip, ip->about_controls);
  746. +     if (!ip->message17)
  747. +         ip->message17 = contool_about_message17_create(ip, ip->about_controls);
  748. +     if (!ip->message18)
  749. +         ip->message18 = contool_about_message18_create(ip, ip->about_controls);
  750. +     if (!ip->message19)
  751. +         ip->message19 = contool_about_message19_create(ip, ip->about_controls);
  752. +     if (!ip->message20)
  753. +         ip->message20 = contool_about_message20_create(ip, ip->about_controls);
  754. +     if (!ip->send_mail)
  755. +         ip->send_mail = contool_about_send_mail_create(ip, ip->about_controls);
  756. +     return ip;
  757. + }
  758. + /*
  759. +  * Create object `about' in the specified instance.
  760. +  */
  761. + Xv_opaque
  762. + contool_about_about_create(ip, owner)
  763. +     caddr_t        ip;
  764. +     Xv_opaque    owner;
  765. + {
  766. +     Xv_opaque    obj;
  767. +     
  768. +     obj = xv_create(owner, FRAME_CMD,
  769. +         XV_KEY_DATA, INSTANCE, ip,
  770. +         XV_WIDTH, 509,
  771. +         XV_HEIGHT, 392,
  772. +         XV_LABEL, "Contool: About contool",
  773. +         XV_SHOW, FALSE,
  774. +         FRAME_SHOW_FOOTER, FALSE,
  775. +         FRAME_SHOW_RESIZE_CORNER, FALSE,
  776. +         FRAME_CMD_PUSHPIN_IN, TRUE,
  777. +         NULL);
  778. +     xv_set(xv_get(obj, FRAME_CMD_PANEL), WIN_SHOW, FALSE, NULL);
  779. +     return obj;
  780. + }
  781. + /*
  782. +  * Create object `about_controls' in the specified instance.
  783. +  */
  784. + Xv_opaque
  785. + contool_about_about_controls_create(ip, owner)
  786. +     caddr_t        ip;
  787. +     Xv_opaque    owner;
  788. + {
  789. +     Xv_opaque    obj;
  790. +     
  791. +     obj = xv_create(owner, PANEL,
  792. +         XV_KEY_DATA, INSTANCE, ip,
  793. +         XV_HELP_DATA, "contool:about_controls",
  794. +         XV_X, 0,
  795. +         XV_Y, 0,
  796. +         XV_WIDTH, WIN_EXTEND_TO_EDGE,
  797. +         XV_HEIGHT, WIN_EXTEND_TO_EDGE,
  798. +         WIN_BORDER, FALSE,
  799. +         NULL);
  800. +     return obj;
  801. + }
  802. + /*
  803. +  * Create object `message1' in the specified instance.
  804. +  */
  805. + Xv_opaque
  806. + contool_about_message1_create(ip, owner)
  807. +     caddr_t        ip;
  808. +     Xv_opaque    owner;
  809. + {
  810. +     Xv_opaque    obj;
  811. +     
  812. +     obj = xv_create(owner, PANEL_MESSAGE,
  813. +         XV_KEY_DATA, INSTANCE, ip,
  814. +         XV_HELP_DATA, "contool:message1",
  815. +         XV_X, 210,
  816. +         XV_Y, 14,
  817. +         XV_WIDTH, 85,
  818. +         XV_HEIGHT, 13,
  819. +         PANEL_LABEL_STRING, "Contool 3.0b",
  820. +         PANEL_LABEL_BOLD, TRUE,
  821. +         NULL);
  822. +     return obj;
  823. + }
  824. + /*
  825. +  * Create object `message5' in the specified instance.
  826. +  */
  827. + Xv_opaque
  828. + contool_about_message5_create(ip, owner)
  829. +     caddr_t        ip;
  830. +     Xv_opaque    owner;
  831. + {
  832. +     Xv_opaque    obj;
  833. +     
  834. +     obj = xv_create(owner, PANEL_MESSAGE,
  835. +         XV_KEY_DATA, INSTANCE, ip,
  836. +         XV_HELP_DATA, "contool:message5",
  837. +         XV_X, 177,
  838. +         XV_Y, 30,
  839. +         XV_WIDTH, 152,
  840. +         XV_HEIGHT, 13,
  841. +         PANEL_LABEL_STRING, "Copyright 1988 - 1990",
  842. +         PANEL_LABEL_BOLD, TRUE,
  843. +         NULL);
  844. +     return obj;
  845. + }
  846. + /*
  847. +  * Create object `message6' in the specified instance.
  848. +  */
  849. + Xv_opaque
  850. + contool_about_message6_create(ip, owner)
  851. +     caddr_t        ip;
  852. +     Xv_opaque    owner;
  853. + {
  854. +     Xv_opaque    obj;
  855. +     
  856. +     obj = xv_create(owner, PANEL_MESSAGE,
  857. +         XV_KEY_DATA, INSTANCE, ip,
  858. +         XV_HELP_DATA, "contool:message6",
  859. +         XV_X, 117,
  860. +         XV_Y, 46,
  861. +         XV_WIDTH, 274,
  862. +         XV_HEIGHT, 13,
  863. +         PANEL_LABEL_STRING, "Chuck Musciano and Harris Corporation",
  864. +         PANEL_LABEL_BOLD, TRUE,
  865. +         NULL);
  866. +     return obj;
  867. + }
  868. + /*
  869. +  * Create object `message7' in the specified instance.
  870. +  */
  871. + Xv_opaque
  872. + contool_about_message7_create(ip, owner)
  873. +     caddr_t        ip;
  874. +     Xv_opaque    owner;
  875. + {
  876. +     Xv_opaque    obj;
  877. +     
  878. +     obj = xv_create(owner, PANEL_MESSAGE,
  879. +         XV_KEY_DATA, INSTANCE, ip,
  880. +         XV_HELP_DATA, "contool:message7",
  881. +         XV_X, 185,
  882. +         XV_Y, 62,
  883. +         XV_WIDTH, 135,
  884. +         XV_HEIGHT, 13,
  885. +         PANEL_LABEL_STRING, "All Rights Reserved",
  886. +         PANEL_LABEL_BOLD, TRUE,
  887. +         NULL);
  888. +     return obj;
  889. + }
  890. + /*
  891. +  * Create object `message8' in the specified instance.
  892. +  */
  893. + Xv_opaque
  894. + contool_about_message8_create(ip, owner)
  895. +     caddr_t        ip;
  896. +     Xv_opaque    owner;
  897. + {
  898. +     Xv_opaque    obj;
  899. +     
  900. +     obj = xv_create(owner, PANEL_MESSAGE,
  901. +         XV_KEY_DATA, INSTANCE, ip,
  902. +         XV_HELP_DATA, "contool:message8",
  903. +         XV_X, 14,
  904. +         XV_Y, 94,
  905. +         XV_WIDTH, 457,
  906. +         XV_HEIGHT, 13,
  907. +         PANEL_LABEL_STRING, "Contool was written using Sun's Devguide interface builder and the XView",
  908. +         PANEL_LABEL_BOLD, FALSE,
  909. +         NULL);
  910. +     return obj;
  911. + }
  912. + /*
  913. +  * Create object `message9' in the specified instance.
  914. +  */
  915. + Xv_opaque
  916. + contool_about_message9_create(ip, owner)
  917. +     caddr_t        ip;
  918. +     Xv_opaque    owner;
  919. + {
  920. +     Xv_opaque    obj;
  921. +     
  922. +     obj = xv_create(owner, PANEL_MESSAGE,
  923. +         XV_KEY_DATA, INSTANCE, ip,
  924. +         XV_HELP_DATA, "contool:message9",
  925. +         XV_X, 14,
  926. +         XV_Y, 110,
  927. +         XV_WIDTH, 447,
  928. +         XV_HEIGHT, 13,
  929. +         PANEL_LABEL_STRING, "OPEN LOOK toolkit.  It originated as a SunView application in early 1987,",
  930. +         PANEL_LABEL_BOLD, FALSE,
  931. +         NULL);
  932. +     return obj;
  933. + }
  934. + /*
  935. +  * Create object `message10' in the specified instance.
  936. +  */
  937. + Xv_opaque
  938. + contool_about_message10_create(ip, owner)
  939. +     caddr_t        ip;
  940. +     Xv_opaque    owner;
  941. + {
  942. +     Xv_opaque    obj;
  943. +     
  944. +     obj = xv_create(owner, PANEL_MESSAGE,
  945. +         XV_KEY_DATA, INSTANCE, ip,
  946. +         XV_HELP_DATA, "contool:message10",
  947. +         XV_X, 14,
  948. +         XV_Y, 126,
  949. +         XV_WIDTH, 464,
  950. +         XV_HEIGHT, 13,
  951. +         PANEL_LABEL_STRING, "was released into the public domain in 1988, and was ported to X Windows",
  952. +         PANEL_LABEL_BOLD, FALSE,
  953. +         NULL);
  954. +     return obj;
  955. + }
  956. + /*
  957. +  * Create object `message15' in the specified instance.
  958. +  */
  959. + Xv_opaque
  960. + contool_about_message15_create(ip, owner)
  961. +     caddr_t        ip;
  962. +     Xv_opaque    owner;
  963. + {
  964. +     Xv_opaque    obj;
  965. +     
  966. +     obj = xv_create(owner, PANEL_MESSAGE,
  967. +         XV_KEY_DATA, INSTANCE, ip,
  968. +         XV_HELP_DATA, "contool:message15",
  969. +         XV_X, 14,
  970. +         XV_Y, 142,
  971. +         XV_WIDTH, 51,
  972. +         XV_HEIGHT, 13,
  973. +         PANEL_LABEL_STRING, "in 1990.",
  974. +         PANEL_LABEL_BOLD, FALSE,
  975. +         NULL);
  976. +     return obj;
  977. + }
  978. + /*
  979. +  * Create object `message11' in the specified instance.
  980. +  */
  981. + Xv_opaque
  982. + contool_about_message11_create(ip, owner)
  983. +     caddr_t        ip;
  984. +     Xv_opaque    owner;
  985. + {
  986. +     Xv_opaque    obj;
  987. +     
  988. +     obj = xv_create(owner, PANEL_MESSAGE,
  989. +         XV_KEY_DATA, INSTANCE, ip,
  990. +         XV_HELP_DATA, "contool:message11",
  991. +         XV_X, 14,
  992. +         XV_Y, 174,
  993. +         XV_WIDTH, 460,
  994. +         XV_HEIGHT, 13,
  995. +         PANEL_LABEL_STRING, "I welcome comments, criticism, suggestions, and bug reports.  Almost every",
  996. +         PANEL_LABEL_BOLD, FALSE,
  997. +         NULL);
  998. +     return obj;
  999. + }
  1000. + /*
  1001. +  * Create object `message12' in the specified instance.
  1002. +  */
  1003. + Xv_opaque
  1004. + contool_about_message12_create(ip, owner)
  1005. +     caddr_t        ip;
  1006. +     Xv_opaque    owner;
  1007. + {
  1008. +     Xv_opaque    obj;
  1009. +     
  1010. +     obj = xv_create(owner, PANEL_MESSAGE,
  1011. +         XV_KEY_DATA, INSTANCE, ip,
  1012. +         XV_HELP_DATA, "contool:message12",
  1013. +         XV_X, 14,
  1014. +         XV_Y, 190,
  1015. +         XV_WIDTH, 462,
  1016. +         XV_HEIGHT, 13,
  1017. +         PANEL_LABEL_STRING, "feature in this version of contool was added as the result of a user request. ",
  1018. +         PANEL_LABEL_BOLD, FALSE,
  1019. +         NULL);
  1020. +     return obj;
  1021. + }
  1022. + /*
  1023. +  * Create object `message13' in the specified instance.
  1024. +  */
  1025. + Xv_opaque
  1026. + contool_about_message13_create(ip, owner)
  1027. +     caddr_t        ip;
  1028. +     Xv_opaque    owner;
  1029. + {
  1030. +     Xv_opaque    obj;
  1031. +     
  1032. +     obj = xv_create(owner, PANEL_MESSAGE,
  1033. +         XV_KEY_DATA, INSTANCE, ip,
  1034. +         XV_HELP_DATA, "contool:message13",
  1035. +         XV_X, 14,
  1036. +         XV_Y, 206,
  1037. +         XV_WIDTH, 467,
  1038. +         XV_HEIGHT, 13,
  1039. +         PANEL_LABEL_STRING, "User feedback is the single best driving force in the evolution of my tools.  I ",
  1040. +         PANEL_LABEL_BOLD, FALSE,
  1041. +         NULL);
  1042. +     return obj;
  1043. + }
  1044. + /*
  1045. +  * Create object `message14' in the specified instance.
  1046. +  */
  1047. + Xv_opaque
  1048. + contool_about_message14_create(ip, owner)
  1049. +     caddr_t        ip;
  1050. +     Xv_opaque    owner;
  1051. + {
  1052. +     Xv_opaque    obj;
  1053. +     
  1054. +     obj = xv_create(owner, PANEL_MESSAGE,
  1055. +         XV_KEY_DATA, INSTANCE, ip,
  1056. +         XV_HELP_DATA, "contool:message14",
  1057. +         XV_X, 14,
  1058. +         XV_Y, 222,
  1059. +         XV_WIDTH, 205,
  1060. +         XV_HEIGHT, 13,
  1061. +         PANEL_LABEL_STRING, "look forward to hearing from you!",
  1062. +         PANEL_LABEL_BOLD, FALSE,
  1063. +         NULL);
  1064. +     return obj;
  1065. + }
  1066. + /*
  1067. +  * Create object `message16' in the specified instance.
  1068. +  */
  1069. + Xv_opaque
  1070. + contool_about_message16_create(ip, owner)
  1071. +     caddr_t        ip;
  1072. +     Xv_opaque    owner;
  1073. + {
  1074. +     Xv_opaque    obj;
  1075. +     
  1076. +     obj = xv_create(owner, PANEL_MESSAGE,
  1077. +         XV_KEY_DATA, INSTANCE, ip,
  1078. +         XV_HELP_DATA, "contool:message16",
  1079. +         XV_X, 14,
  1080. +         XV_Y, 254,
  1081. +         XV_WIDTH, 481,
  1082. +         XV_HEIGHT, 13,
  1083. +         PANEL_LABEL_STRING, "Contool has been placed in the public domain, but the copyright on the source",
  1084. +         PANEL_LABEL_BOLD, FALSE,
  1085. +         NULL);
  1086. +     return obj;
  1087. + }
  1088. + /*
  1089. +  * Create object `message17' in the specified instance.
  1090. +  */
  1091. + Xv_opaque
  1092. + contool_about_message17_create(ip, owner)
  1093. +     caddr_t        ip;
  1094. +     Xv_opaque    owner;
  1095. + {
  1096. +     Xv_opaque    obj;
  1097. +     
  1098. +     obj = xv_create(owner, PANEL_MESSAGE,
  1099. +         XV_KEY_DATA, INSTANCE, ip,
  1100. +         XV_HELP_DATA, "contool:message17",
  1101. +         XV_X, 14,
  1102. +         XV_Y, 270,
  1103. +         XV_WIDTH, 472,
  1104. +         XV_HEIGHT, 13,
  1105. +         PANEL_LABEL_STRING, "code is retained by myself and Harris Corporation, my employer.  This means",
  1106. +         PANEL_LABEL_BOLD, FALSE,
  1107. +         NULL);
  1108. +     return obj;
  1109. + }
  1110. + /*
  1111. +  * Create object `message18' in the specified instance.
  1112. +  */
  1113. + Xv_opaque
  1114. + contool_about_message18_create(ip, owner)
  1115. +     caddr_t        ip;
  1116. +     Xv_opaque    owner;
  1117. + {
  1118. +     Xv_opaque    obj;
  1119. +     
  1120. +     obj = xv_create(owner, PANEL_MESSAGE,
  1121. +         XV_KEY_DATA, INSTANCE, ip,
  1122. +         XV_HELP_DATA, "contool:message18",
  1123. +         XV_X, 14,
  1124. +         XV_Y, 286,
  1125. +         XV_WIDTH, 460,
  1126. +         XV_HEIGHT, 13,
  1127. +         PANEL_LABEL_STRING, "that you can give the source code to anyone but you cannot sell any part of",
  1128. +         PANEL_LABEL_BOLD, FALSE,
  1129. +         NULL);
  1130. +     return obj;
  1131. + }
  1132. + /*
  1133. +  * Create object `message19' in the specified instance.
  1134. +  */
  1135. + Xv_opaque
  1136. + contool_about_message19_create(ip, owner)
  1137. +     caddr_t        ip;
  1138. +     Xv_opaque    owner;
  1139. + {
  1140. +     Xv_opaque    obj;
  1141. +     
  1142. +     obj = xv_create(owner, PANEL_MESSAGE,
  1143. +         XV_KEY_DATA, INSTANCE, ip,
  1144. +         XV_HELP_DATA, "contool:message19",
  1145. +         XV_X, 14,
  1146. +         XV_Y, 302,
  1147. +         XV_WIDTH, 455,
  1148. +         XV_HEIGHT, 13,
  1149. +         PANEL_LABEL_STRING, "the source code, nor can you incorporate any part of the source code into a",
  1150. +         PANEL_LABEL_BOLD, FALSE,
  1151. +         NULL);
  1152. +     return obj;
  1153. + }
  1154. + /*
  1155. +  * Create object `message20' in the specified instance.
  1156. +  */
  1157. + Xv_opaque
  1158. + contool_about_message20_create(ip, owner)
  1159. +     caddr_t        ip;
  1160. +     Xv_opaque    owner;
  1161. + {
  1162. +     Xv_opaque    obj;
  1163. +     
  1164. +     obj = xv_create(owner, PANEL_MESSAGE,
  1165. +         XV_KEY_DATA, INSTANCE, ip,
  1166. +         XV_HELP_DATA, "contool:message20",
  1167. +         XV_X, 14,
  1168. +         XV_Y, 318,
  1169. +         XV_WIDTH, 219,
  1170. +         XV_HEIGHT, 13,
  1171. +         PANEL_LABEL_STRING, "product which is subsequently sold.",
  1172. +         PANEL_LABEL_BOLD, FALSE,
  1173. +         NULL);
  1174. +     return obj;
  1175. + }
  1176. + /*
  1177. +  * Create object `send_mail' in the specified instance.
  1178. +  */
  1179. + Xv_opaque
  1180. + contool_about_send_mail_create(ip, owner)
  1181. +     caddr_t        ip;
  1182. +     Xv_opaque    owner;
  1183. + {
  1184. +     extern void        popup_send_mail();
  1185. +     Xv_opaque    obj;
  1186. +     
  1187. +     obj = xv_create(owner, PANEL_BUTTON,
  1188. +         XV_KEY_DATA, INSTANCE, ip,
  1189. +         XV_HELP_DATA, "contool:send_mail",
  1190. +         XV_X, 215,
  1191. +         XV_Y, 352,
  1192. +         XV_WIDTH, 78,
  1193. +         XV_HEIGHT, 20,
  1194. +         PANEL_LABEL_STRING, "Send Mail",
  1195. +         PANEL_NOTIFY_PROC, popup_send_mail,
  1196. +         NULL);
  1197. +     return obj;
  1198. + }
  1199. + /*
  1200. +  * Initialize an instance of object `mail'.
  1201. +  */
  1202. + contool_mail_objects *
  1203. + contool_mail_objects_initialize(ip, owner)
  1204. +     contool_mail_objects    *ip;
  1205. +     Xv_opaque    owner;
  1206. + {
  1207. +     if (!ip && !(ip = (contool_mail_objects *) calloc(1, sizeof (contool_mail_objects))))
  1208. +         return (contool_mail_objects *) NULL;
  1209. +     if (!ip->mail)
  1210. +         ip->mail = contool_mail_mail_create(ip, owner);
  1211. +     if (!ip->mail_controls)
  1212. +         ip->mail_controls = contool_mail_mail_controls_create(ip, ip->mail);
  1213. +     if (!ip->message21)
  1214. +         ip->message21 = contool_mail_message21_create(ip, ip->mail_controls);
  1215. +     if (!ip->message22)
  1216. +         ip->message22 = contool_mail_message22_create(ip, ip->mail_controls);
  1217. +     if (!ip->address)
  1218. +         ip->address = contool_mail_address_create(ip, ip->mail_controls);
  1219. +     if (!ip->other_address)
  1220. +         ip->other_address = contool_mail_other_address_create(ip, ip->mail_controls);
  1221. +     if (!ip->message)
  1222. +         ip->message = contool_mail_message_create(ip, ip->mail);
  1223. +     if (!ip->mail_controls1)
  1224. +         ip->mail_controls1 = contool_mail_mail_controls1_create(ip, ip->mail);
  1225. +     if (!ip->accept_send)
  1226. +         ip->accept_send = contool_mail_accept_send_create(ip, ip->mail_controls1);
  1227. +     if (!ip->cancel_mail)
  1228. +         ip->cancel_mail = contool_mail_cancel_mail_create(ip, ip->mail_controls1);
  1229. +     return ip;
  1230. + }
  1231. + /*
  1232. +  * Create object `mail' in the specified instance.
  1233. +  */
  1234. + Xv_opaque
  1235. + contool_mail_mail_create(ip, owner)
  1236. +     caddr_t        ip;
  1237. +     Xv_opaque    owner;
  1238. + {
  1239. +     Xv_opaque    obj;
  1240. +     
  1241. +     obj = xv_create(owner, FRAME_CMD,
  1242. +         XV_KEY_DATA, INSTANCE, ip,
  1243. +         XV_WIDTH, 506,
  1244. +         XV_HEIGHT, 338,
  1245. +         XV_LABEL, "Contool: Send mail",
  1246. +         XV_SHOW, FALSE,
  1247. +         FRAME_SHOW_FOOTER, FALSE,
  1248. +         FRAME_SHOW_RESIZE_CORNER, FALSE,
  1249. +         FRAME_CMD_PUSHPIN_IN, FALSE,
  1250. +         NULL);
  1251. +     xv_set(xv_get(obj, FRAME_CMD_PANEL), WIN_SHOW, FALSE, NULL);
  1252. +     return obj;
  1253. + }
  1254. + /*
  1255. +  * Create object `mail_controls' in the specified instance.
  1256. +  */
  1257. + Xv_opaque
  1258. + contool_mail_mail_controls_create(ip, owner)
  1259. +     caddr_t        ip;
  1260. +     Xv_opaque    owner;
  1261. + {
  1262. +     Xv_opaque    obj;
  1263. +     
  1264. +     obj = xv_create(owner, PANEL,
  1265. +         XV_KEY_DATA, INSTANCE, ip,
  1266. +         XV_HELP_DATA, "contool:mail_controls",
  1267. +         XV_X, 0,
  1268. +         XV_Y, 0,
  1269. +         XV_WIDTH, WIN_EXTEND_TO_EDGE,
  1270. +         XV_HEIGHT, 92,
  1271. +         WIN_BORDER, FALSE,
  1272. +         NULL);
  1273. +     return obj;
  1274. + }
  1275. + /*
  1276. +  * Create object `message21' in the specified instance.
  1277. +  */
  1278. + Xv_opaque
  1279. + contool_mail_message21_create(ip, owner)
  1280. +     caddr_t        ip;
  1281. +     Xv_opaque    owner;
  1282. + {
  1283. +     Xv_opaque    obj;
  1284. +     
  1285. +     obj = xv_create(owner, PANEL_MESSAGE,
  1286. +         XV_KEY_DATA, INSTANCE, ip,
  1287. +         XV_HELP_DATA, "contool:message21",
  1288. +         XV_X, 14,
  1289. +         XV_Y, 14,
  1290. +         XV_WIDTH, 478,
  1291. +         XV_HEIGHT, 13,
  1292. +         PANEL_LABEL_STRING, "Your feedback is appreciated.  To ensure that your message reaches me, check",
  1293. +         PANEL_LABEL_BOLD, FALSE,
  1294. +         NULL);
  1295. +     return obj;
  1296. + }
  1297. + /*
  1298. +  * Create object `message22' in the specified instance.
  1299. +  */
  1300. + Xv_opaque
  1301. + contool_mail_message22_create(ip, owner)
  1302. +     caddr_t        ip;
  1303. +     Xv_opaque    owner;
  1304. + {
  1305. +     Xv_opaque    obj;
  1306. +     
  1307. +     obj = xv_create(owner, PANEL_MESSAGE,
  1308. +         XV_KEY_DATA, INSTANCE, ip,
  1309. +         XV_HELP_DATA, "contool:message22",
  1310. +         XV_X, 14,
  1311. +         XV_Y, 30,
  1312. +         XV_WIDTH, 395,
  1313. +         XV_HEIGHT, 13,
  1314. +         PANEL_LABEL_STRING, "that the \"To\" address is valid for your site before clicking \"Send\".",
  1315. +         PANEL_LABEL_BOLD, FALSE,
  1316. +         NULL);
  1317. +     return obj;
  1318. + }
  1319. + /*
  1320. +  * Create object `address' in the specified instance.
  1321. +  */
  1322. + Xv_opaque
  1323. + contool_mail_address_create(ip, owner)
  1324. +     caddr_t        ip;
  1325. +     Xv_opaque    owner;
  1326. + {
  1327. +     extern int        handle_address();
  1328. +     Xv_opaque    obj;
  1329. +     
  1330. +     obj = xv_create(owner, PANEL_CHOICE, PANEL_DISPLAY_LEVEL, PANEL_CURRENT,
  1331. +         XV_KEY_DATA, INSTANCE, ip,
  1332. +         XV_HELP_DATA, "contool:address",
  1333. +         XV_X, 14,
  1334. +         XV_Y, 64,
  1335. +         XV_WIDTH, 278,
  1336. +         XV_HEIGHT, 23,
  1337. +         PANEL_VALUE_X, 43,
  1338. +         PANEL_VALUE_Y, 64,
  1339. +         PANEL_LAYOUT, PANEL_HORIZONTAL,
  1340. +         PANEL_CHOICE_NROWS, 1,
  1341. +         PANEL_LABEL_STRING, "To:",
  1342. +         PANEL_NOTIFY_PROC, handle_address,
  1343. +         PANEL_CHOICE_STRINGS,
  1344. +             "chuck@trantor.harris-atd.com",
  1345. +             "uunet!trantor.harris-atd.com!chuck",
  1346. +             "Other:",
  1347. +             0,
  1348. +         NULL);
  1349. +     return obj;
  1350. + }
  1351. + /*
  1352. +  * Create object `other_address' in the specified instance.
  1353. +  */
  1354. + Xv_opaque
  1355. + contool_mail_other_address_create(ip, owner)
  1356. +     caddr_t        ip;
  1357. +     Xv_opaque    owner;
  1358. + {
  1359. +     Xv_opaque    obj;
  1360. +     
  1361. +     obj = xv_create(owner, PANEL_TEXT,
  1362. +         XV_KEY_DATA, INSTANCE, ip,
  1363. +         XV_HELP_DATA, "contool:other_address",
  1364. +         XV_X, 105,
  1365. +         XV_Y, 69,
  1366. +         XV_WIDTH, 385,
  1367. +         XV_HEIGHT, 15,
  1368. +         PANEL_VALUE_X, 114,
  1369. +         PANEL_VALUE_Y, 69,
  1370. +         PANEL_LAYOUT, PANEL_HORIZONTAL,
  1371. +         PANEL_VALUE_DISPLAY_LENGTH, 47,
  1372. +         PANEL_VALUE_STORED_LENGTH, 256,
  1373. +         PANEL_READ_ONLY, FALSE,
  1374. +         NULL);
  1375. +     return obj;
  1376. + }
  1377. + /*
  1378. +  * Create object `message' in the specified instance.
  1379. +  */
  1380. + Xv_opaque
  1381. + contool_mail_message_create(ip, owner)
  1382. +     caddr_t        ip;
  1383. +     Xv_opaque    owner;
  1384. + {
  1385. +     Xv_opaque    obj;
  1386. +     
  1387. +     obj = xv_create(owner, TEXTSW,
  1388. +         XV_KEY_DATA, INSTANCE, ip,
  1389. +         XV_X, 0,
  1390. +         XV_Y, 92,
  1391. +         XV_WIDTH, WIN_EXTEND_TO_EDGE,
  1392. +         XV_HEIGHT, 188,
  1393. +         OPENWIN_SHOW_BORDERS, TRUE,
  1394. +         NULL);
  1395. +     return obj;
  1396. + }
  1397. + /*
  1398. +  * Create object `mail_controls1' in the specified instance.
  1399. +  */
  1400. + Xv_opaque
  1401. + contool_mail_mail_controls1_create(ip, owner)
  1402. +     caddr_t        ip;
  1403. +     Xv_opaque    owner;
  1404. + {
  1405. +     Xv_opaque    obj;
  1406. +     
  1407. +     obj = xv_create(owner, PANEL,
  1408. +         XV_KEY_DATA, INSTANCE, ip,
  1409. +         XV_HELP_DATA, "contool:mail_controls1",
  1410. +         XV_X, 0,
  1411. +         XV_Y, 280,
  1412. +         XV_WIDTH, WIN_EXTEND_TO_EDGE,
  1413. +         XV_HEIGHT, WIN_EXTEND_TO_EDGE,
  1414. +         WIN_BORDER, FALSE,
  1415. +         NULL);
  1416. +     return obj;
  1417. + }
  1418. + /*
  1419. +  * Create object `accept_send' in the specified instance.
  1420. +  */
  1421. + Xv_opaque
  1422. + contool_mail_accept_send_create(ip, owner)
  1423. +     caddr_t        ip;
  1424. +     Xv_opaque    owner;
  1425. + {
  1426. +     extern void        send_mail();
  1427. +     Xv_opaque    obj;
  1428. +     
  1429. +     obj = xv_create(owner, PANEL_BUTTON,
  1430. +         XV_KEY_DATA, INSTANCE, ip,
  1431. +         XV_HELP_DATA, "contool:accept_send",
  1432. +         XV_X, 193,
  1433. +         XV_Y, 18,
  1434. +         XV_WIDTH, 48,
  1435. +         XV_HEIGHT, 20,
  1436. +         PANEL_LABEL_STRING, "Send",
  1437. +         PANEL_NOTIFY_PROC, send_mail,
  1438. +         NULL);
  1439. +     return obj;
  1440. + }
  1441. + /*
  1442. +  * Create object `cancel_mail' in the specified instance.
  1443. +  */
  1444. + Xv_opaque
  1445. + contool_mail_cancel_mail_create(ip, owner)
  1446. +     caddr_t        ip;
  1447. +     Xv_opaque    owner;
  1448. + {
  1449. +     extern void        cancel_mail();
  1450. +     Xv_opaque    obj;
  1451. +     
  1452. +     obj = xv_create(owner, PANEL_BUTTON,
  1453. +         XV_KEY_DATA, INSTANCE, ip,
  1454. +         XV_HELP_DATA, "contool:cancel_mail",
  1455. +         XV_X, 253,
  1456. +         XV_Y, 18,
  1457. +         XV_WIDTH, 59,
  1458. +         XV_HEIGHT, 20,
  1459. +         PANEL_LABEL_STRING, "Cancel",
  1460. +         PANEL_NOTIFY_PROC, cancel_mail,
  1461.           NULL);
  1462.       return obj;
  1463.   }
  1464. *** contool_ui.h.orig    Thu Nov  1 15:09:48 1990
  1465. --- contool_ui.h    Thu Nov  1 13:47:26 1990
  1466. ***************
  1467. *** 151,154 ****
  1468. --- 151,226 ----
  1469.   extern Xv_opaque    contool_store_store_type_create();
  1470.   extern Xv_opaque    contool_store_store_file_create();
  1471.   extern Xv_opaque    contool_store_accept_store_create();
  1472. + typedef struct {
  1473. +     Xv_opaque    about;
  1474. +     Xv_opaque    about_controls;
  1475. +     Xv_opaque    message1;
  1476. +     Xv_opaque    message5;
  1477. +     Xv_opaque    message6;
  1478. +     Xv_opaque    message7;
  1479. +     Xv_opaque    message8;
  1480. +     Xv_opaque    message9;
  1481. +     Xv_opaque    message10;
  1482. +     Xv_opaque    message15;
  1483. +     Xv_opaque    message11;
  1484. +     Xv_opaque    message12;
  1485. +     Xv_opaque    message13;
  1486. +     Xv_opaque    message14;
  1487. +     Xv_opaque    message16;
  1488. +     Xv_opaque    message17;
  1489. +     Xv_opaque    message18;
  1490. +     Xv_opaque    message19;
  1491. +     Xv_opaque    message20;
  1492. +     Xv_opaque    send_mail;
  1493. + } contool_about_objects;
  1494. + extern contool_about_objects    *contool_about_objects_initialize();
  1495. + extern Xv_opaque    contool_about_about_create();
  1496. + extern Xv_opaque    contool_about_about_controls_create();
  1497. + extern Xv_opaque    contool_about_message1_create();
  1498. + extern Xv_opaque    contool_about_message5_create();
  1499. + extern Xv_opaque    contool_about_message6_create();
  1500. + extern Xv_opaque    contool_about_message7_create();
  1501. + extern Xv_opaque    contool_about_message8_create();
  1502. + extern Xv_opaque    contool_about_message9_create();
  1503. + extern Xv_opaque    contool_about_message10_create();
  1504. + extern Xv_opaque    contool_about_message15_create();
  1505. + extern Xv_opaque    contool_about_message11_create();
  1506. + extern Xv_opaque    contool_about_message12_create();
  1507. + extern Xv_opaque    contool_about_message13_create();
  1508. + extern Xv_opaque    contool_about_message14_create();
  1509. + extern Xv_opaque    contool_about_message16_create();
  1510. + extern Xv_opaque    contool_about_message17_create();
  1511. + extern Xv_opaque    contool_about_message18_create();
  1512. + extern Xv_opaque    contool_about_message19_create();
  1513. + extern Xv_opaque    contool_about_message20_create();
  1514. + extern Xv_opaque    contool_about_send_mail_create();
  1515. + typedef struct {
  1516. +     Xv_opaque    mail;
  1517. +     Xv_opaque    mail_controls;
  1518. +     Xv_opaque    message21;
  1519. +     Xv_opaque    message22;
  1520. +     Xv_opaque    address;
  1521. +     Xv_opaque    other_address;
  1522. +     Xv_opaque    message;
  1523. +     Xv_opaque    mail_controls1;
  1524. +     Xv_opaque    accept_send;
  1525. +     Xv_opaque    cancel_mail;
  1526. + } contool_mail_objects;
  1527. + extern contool_mail_objects    *contool_mail_objects_initialize();
  1528. + extern Xv_opaque    contool_mail_mail_create();
  1529. + extern Xv_opaque    contool_mail_mail_controls_create();
  1530. + extern Xv_opaque    contool_mail_message21_create();
  1531. + extern Xv_opaque    contool_mail_message22_create();
  1532. + extern Xv_opaque    contool_mail_address_create();
  1533. + extern Xv_opaque    contool_mail_other_address_create();
  1534. + extern Xv_opaque    contool_mail_message_create();
  1535. + extern Xv_opaque    contool_mail_mail_controls1_create();
  1536. + extern Xv_opaque    contool_mail_accept_send_create();
  1537. + extern Xv_opaque    contool_mail_cancel_mail_create();
  1538.   #endif
  1539. *** filename_completion.c.orig    Thu Nov  1 15:09:50 1990
  1540. --- filename_completion.c    Tue Oct 23 08:20:50 1990
  1541. ***************
  1542. *** 0 ****
  1543. --- 1,52 ----
  1544. + /************************************************************************/
  1545. + /*    Copyright 1988-1990 by Chuck Musciano and Harris Corporation    */
  1546. + /*                                    */
  1547. + /*    Permission to use, copy, modify, and distribute this software    */
  1548. + /*    and its documentation for any purpose and without fee is    */
  1549. + /*    hereby granted, provided that the above copyright notice    */
  1550. + /*    appear in all copies and that both that copyright notice and    */
  1551. + /*    this permission notice appear in supporting documentation, and    */
  1552. + /*    that the name of Chuck Musciano and Harris Corporation not be    */
  1553. + /*    used in advertising or publicity pertaining to distribution    */
  1554. + /*    of the software without specific, written prior permission.    */
  1555. + /*    Chuck Musciano and Harris Corporation make no representations    */
  1556. + /*    about the suitability of this software for any purpose.  It is    */
  1557. + /*    provided "as is" without express or implied warranty.  This     */
  1558. + /*    software may not be sold without the prior explicit permission    */
  1559. + /*    of Harris Corporation.                        */
  1560. + /************************************************************************/
  1561. + /************************************************************************/
  1562. + /*                                    */
  1563. + /*    filename_completion.c    completion handler for text items    */
  1564. + /*                                    */
  1565. + /************************************************************************/
  1566. + #include    <stdio.h>
  1567. + #include    <sys/param.h>
  1568. + #include    <sys/types.h>
  1569. + #include    <xview/xview.h>
  1570. + #include    <xview/panel.h>
  1571. + #include    "manifest.h"
  1572. + /************************************************************************/
  1573. + EXPORT    Panel_setting    filename_completion(item, event)
  1574. + Panel_item    item;
  1575. + Event        *event;
  1576. + {    char    *p, *expand_filename();
  1577. +     switch (event_action(event)) {
  1578. +        case '\n' :
  1579. +        case '\r' :
  1580. +        case ' '  : if ((p = expand_filename((char *) xv_get(item, PANEL_VALUE))) == NULL)
  1581. +                  window_bell(xv_get(item, XV_OWNER));
  1582. +                   else
  1583. +                      xv_set(item, PANEL_VALUE, p, 0);
  1584. +                   return(PANEL_NONE);
  1585. +        case '\t' : return(event_shift_is_down(event)? PANEL_PREVIOUS : PANEL_NEXT);
  1586. +        default   : return(panel_text_notify(item, event));
  1587. +        }
  1588. + }
  1589. *** load_icon.c.orig    Thu Nov  1 15:09:55 1990
  1590. --- load_icon.c    Thu Nov  1 09:07:38 1990
  1591. ***************
  1592. *** 23,29 ****
  1593.   #include    <xview/icon_load.h>
  1594.   
  1595.   #include    "manifest.h"
  1596. ! #include    "contool.h"
  1597.   
  1598.   PUBLIC    char    *getenv();
  1599.   
  1600. --- 23,32 ----
  1601.   #include    <xview/icon_load.h>
  1602.   
  1603.   #include    "manifest.h"
  1604. ! #if !defined(ICON_PATH)
  1605. ! #define        ICON_PATH        ".:./icons:/usr/local/images:/usr/include/images"
  1606. ! #endif
  1607.   
  1608.   PUBLIC    char    *getenv();
  1609.   
  1610. *** patchlevel.h.orig    Thu Nov  1 15:10:00 1990
  1611. --- patchlevel.h    Thu Nov  1 09:08:10 1990
  1612. ***************
  1613. *** 2,8 ****
  1614. --- 2,12 ----
  1615.   /*                                    */
  1616.   /*    Patch        Comments                    */
  1617.   /*      0        Initial release for XView            */
  1618. + /*               comp.sources.x: Volume 10, Issues 34-39    */
  1619.   /*                                    */
  1620.   /*      1        Bug fixes; see README for details        */
  1621. + /*               comp.sources.x: Volume 10, Issue 40        */
  1622. + /*                                    */
  1623. + /*      2        Bug fixes; see README for details        */
  1624.   /*                                    */
  1625.   /************************************************************************/
  1626. *** pinned_menu_notify.c.orig    Thu Nov  1 15:10:00 1990
  1627. --- pinned_menu_notify.c    Tue Oct 23 08:03:27 1990
  1628. ***************
  1629. *** 0 ****
  1630. --- 1,52 ----
  1631. + /************************************************************************/
  1632. + /*    Copyright 1988-1990 by Chuck Musciano and Harris Corporation    */
  1633. + /*                                    */
  1634. + /*    Permission to use, copy, modify, and distribute this software    */
  1635. + /*    and its documentation for any purpose and without fee is    */
  1636. + /*    hereby granted, provided that the above copyright notice    */
  1637. + /*    appear in all copies and that both that copyright notice and    */
  1638. + /*    this permission notice appear in supporting documentation, and    */
  1639. + /*    that the name of Chuck Musciano and Harris Corporation not be    */
  1640. + /*    used in advertising or publicity pertaining to distribution    */
  1641. + /*    of the software without specific, written prior permission.    */
  1642. + /*    Chuck Musciano and Harris Corporation make no representations    */
  1643. + /*    about the suitability of this software for any purpose.  It is    */
  1644. + /*    provided "as is" without express or implied warranty.  This     */
  1645. + /*    software may not be sold without the prior explicit permission    */
  1646. + /*    of Harris Corporation.                        */
  1647. + /************************************************************************/
  1648. + /************************************************************************/
  1649. + /*                                    */
  1650. + /*    pinned_menu_notify.c    GUIDE callback for pinned menus        */
  1651. + /*                                    */
  1652. + /************************************************************************/
  1653. + #include    <stdio.h>
  1654. + #include    <sys/param.h>
  1655. + #include    <sys/types.h>
  1656. + #include    <xview/xview.h>
  1657. + #include    "manifest.h"
  1658. + /************************************************************************/
  1659. + EXPORT    void    pinned_menu_notify(menu, item)
  1660. + Menu        menu;
  1661. + Menu_item    item;
  1662. + {    Xv_opaque    pin_window     = (Xv_opaque) xv_get(menu, MENU_PIN_WINDOW);
  1663. +     void        (*menu_notify)() = (void (*)()) xv_get(menu, MENU_GEN_PROC);
  1664. +     void        (*item_notify)() = (void (*)()) xv_get(item, MENU_GEN_PROC);
  1665. +     
  1666. +     if (pin_window && xv_get(pin_window, XV_SHOW)) {
  1667. +        if (menu_notify)
  1668. +           (*menu_notify)(menu, MENU_NOTIFY);
  1669. +        if (item_notify)
  1670. +           (*item_notify)(item, MENU_NOTIFY);
  1671. +        if (item_notify)
  1672. +           (*item_notify)(item, MENU_NOTIFY_DONE);
  1673. +        if (menu_notify)
  1674. +           (*menu_notify)(menu, MENU_NOTIFY_DONE);
  1675. +     }
  1676. + }
  1677. *** place_dialog.c.orig    Thu Nov  1 15:10:01 1990
  1678. --- place_dialog.c    Tue Oct 23 08:03:26 1990
  1679. ***************
  1680. *** 0 ****
  1681. --- 1,65 ----
  1682. + /************************************************************************/
  1683. + /*    Copyright 1988-1990 by Chuck Musciano and Harris Corporation    */
  1684. + /*                                    */
  1685. + /*    Permission to use, copy, modify, and distribute this software    */
  1686. + /*    and its documentation for any purpose and without fee is    */
  1687. + /*    hereby granted, provided that the above copyright notice    */
  1688. + /*    appear in all copies and that both that copyright notice and    */
  1689. + /*    this permission notice appear in supporting documentation, and    */
  1690. + /*    that the name of Chuck Musciano and Harris Corporation not be    */
  1691. + /*    used in advertising or publicity pertaining to distribution    */
  1692. + /*    of the software without specific, written prior permission.    */
  1693. + /*    Chuck Musciano and Harris Corporation make no representations    */
  1694. + /*    about the suitability of this software for any purpose.  It is    */
  1695. + /*    provided "as is" without express or implied warranty.  This     */
  1696. + /*    software may not be sold without the prior explicit permission    */
  1697. + /*    of Harris Corporation.                        */
  1698. + /************************************************************************/
  1699. + /************************************************************************/
  1700. + /*                                    */
  1701. + /*    place_dialog.c    position a dialog box at the right place    */
  1702. + /*                                    */
  1703. + /************************************************************************/
  1704. + #include    <stdio.h>
  1705. + #include    <sys/param.h>
  1706. + #include    <sys/types.h>
  1707. + #include    <xview/xview.h>
  1708. + #include    <X11/Xutil.h>
  1709. + #include    "manifest.h"
  1710. + /************************************************************************/
  1711. + EXPORT    void    place_dialog(base, dialog)
  1712. + Xv_opaque    base;
  1713. + Xv_opaque    dialog;
  1714. + {    Rect        br, dr, sr;
  1715. +     XWMHints    *hints;
  1716. +     sr = *((Rect *) xv_get(base, WIN_SCREEN_RECT));
  1717. +     frame_get_rect(base, &br);
  1718. +     frame_get_rect(dialog, &dr);
  1719. +     if (rect_right(&br) + dr.r_width < sr.r_width) {
  1720. +        dr.r_left = rect_right(&br);
  1721. +        dr.r_top = br.r_top;
  1722. +        }
  1723. +     else if (dr.r_width <= br.r_left) {
  1724. +        dr.r_left = br.r_left - dr.r_width;
  1725. +        dr.r_top = br.r_top;
  1726. +        }
  1727. +     else {
  1728. +        dr.r_left = br.r_left + 32;
  1729. +        dr.r_top = br.r_top + 32;
  1730. +        }
  1731. +     frame_set_rect(dialog, &dr);
  1732. +     hints = XGetWMHints(xv_get(dialog, XV_DISPLAY), xv_get(dialog, XV_XID));
  1733. +     hints->flags |= StateHint;
  1734. +     hints->initial_state = NormalState;
  1735. +     XSetWMHints(xv_get(dialog, XV_DISPLAY), xv_get(dialog, XV_XID), hints);
  1736. +     XFree(hints);
  1737. + }
  1738. *** send_mail.c.orig    Thu Nov  1 15:10:04 1990
  1739. --- send_mail.c    Thu Nov  1 13:39:36 1990
  1740. ***************
  1741. *** 0 ****
  1742. --- 1,112 ----
  1743. + /************************************************************************/
  1744. + /*                                    */
  1745. + /*    send_mail.c    display a little information window        */
  1746. + /*                                    */
  1747. + /************************************************************************/
  1748. + #include    <stdio.h>
  1749. + #include    <sys/param.h>
  1750. + #include    <sys/types.h>
  1751. + #include    <xview/xview.h>
  1752. + #include    <xview/panel.h>
  1753. + #include    <xview/textsw.h>
  1754. + #include    "contool_ui.h"
  1755. + #include    "manifest.h"
  1756. + PUBLIC    contool_base_objects    *contool_base;
  1757. + PRIVATE    contool_mail_objects    *dialog = NULL;
  1758. + /************************************************************************/
  1759. + EXPORT    popup_send_mail(item, event)
  1760. + Panel_item    item;
  1761. + Event        *event;
  1762. + {
  1763. +     if (dialog == NULL) {
  1764. +        dialog = contool_mail_objects_initialize(NULL, contool_base->base);
  1765. +        place_dialog(contool_base->base, dialog->mail);
  1766. +        xv_set(dialog->other_address, WIN_SHOW, FALSE, NULL);
  1767. +        }
  1768. +     xv_set(dialog->mail, XV_SHOW, TRUE, NULL);
  1769. +     xv_set(item, PANEL_NOTIFY_STATUS, XV_OK, 0);
  1770. + }
  1771. + /************************************************************************/
  1772. + EXPORT    void    handle_address(item, value, event)
  1773. + Panel_item    item;
  1774. + int        value;
  1775. + Event        *event;
  1776. + {
  1777. +     if (value == 2) {
  1778. +        xv_set(dialog->other_address, WIN_SHOW, TRUE, NULL);
  1779. +        panel_paint(dialog->address, PANEL_NO_CLEAR);
  1780. +        panel_paint(dialog->other_address, PANEL_NO_CLEAR);
  1781. +        }
  1782. +     else {
  1783. +        xv_set(dialog->other_address, WIN_SHOW, FALSE, NULL);
  1784. +        panel_paint(dialog->address, PANEL_NO_CLEAR);
  1785. +        }
  1786. + }
  1787. + /************************************************************************/
  1788. + EXPORT    void    send_mail(item, event)
  1789. + Panel_item    item;
  1790. + Event        *event;
  1791. + {    char    cmd[1024], *buf;
  1792. +     int    val, size;
  1793. +     FILE    *pipe;
  1794. +     xv_set(item, PANEL_NOTIFY_STATUS, XV_ERROR, 0);
  1795. +     val = (int) xv_get(dialog->address, PANEL_VALUE);
  1796. +     if (val != 2)
  1797. +        sprintf(cmd, "%s %s", MAILER, xv_get(dialog->address, PANEL_CHOICE_STRING, val));
  1798. +     else {
  1799. +        buf = (char *) xv_get(dialog->other_address, PANEL_VALUE);
  1800. +        if (is_empty(buf)) {
  1801. +           error("You must specify an alternate address before sending your message");
  1802. +           return;
  1803. +           }
  1804. +        else
  1805. +           sprintf(cmd, "%s %s", MAILER, buf);
  1806. +        }
  1807. +     lets_get_busy(contool_base->base, TRUE, NULL);
  1808. +     if ((pipe = popen(cmd, "w")) == NULL) {
  1809. +        error("Could not invoke \"%s\" to send mail", cmd);
  1810. +        return;
  1811. +        }
  1812. +     size = (int) xv_get(dialog->message, TEXTSW_LENGTH);
  1813. +     if (size == 0) {
  1814. +        error("Please type a message before sending the mail");
  1815. +        return;
  1816. +        }
  1817. +     buf = (char *) malloc(size);
  1818. +     xv_get(dialog->message, TEXTSW_CONTENTS, 0, buf, size);
  1819. +     fprintf(pipe, "Subject: Contool comment\n\n");
  1820. +     if (fwrite(buf, 1, size, pipe) != size) {
  1821. +        error("Could not write message to the mailer");
  1822. +        free(buf);
  1823. +        return;
  1824. +        }
  1825. +     pclose(pipe);
  1826. +     free(buf);
  1827. +     lets_get_busy(contool_base->base, FALSE, NULL);
  1828. +     xv_set(item, PANEL_NOTIFY_STATUS, XV_OK, 0);
  1829. + }
  1830. + /************************************************************************/
  1831. + EXPORT    void    cancel_mail(item, event)
  1832. + Panel_item    item;
  1833. + Event        *event;
  1834. + {
  1835. +     textsw_reset(dialog->message, 0, 0);
  1836. +     xv_set(item, PANEL_NOTIFY_STATUS, XV_ERROR, 0);
  1837. + }
  1838. dan
  1839. ----------------------------------------------------
  1840. O'Reilly && Associates   argv@sun.com / argv@ora.com
  1841. Opinions expressed reflect those of the author only.
  1842. --
  1843. dan
  1844. ----------------------------------------------------
  1845. O'Reilly && Associates   argv@sun.com / argv@ora.com
  1846. Opinions expressed reflect those of the author only.
  1847.