From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,a1ce307c10055549 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-12-17 12:17:10 PST Path: archiver1.google.com!news2.google.com!news1.google.com!sn-xit-02!sn-xit-06!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: IBM Acquires Rational Ada Date: Tue, 17 Dec 2002 14:17:24 -0600 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: <3DF1615C.7AAAC86E@adaworks.com> <3DF1B042.6603DDDE@easystreet.com> <3DF2A483.EC512CDF@adaworks.com> <8db3d6c8.0212091445.12594821@posting.google.com> <3DF628C4.7090607@cogeco.ca> <3DF6653D.3030603@cogeco.ca> <8db3d6c8.0212101850.51506572@posting.google.com> <3DF8D33F.9020205@cogeco.ca> X-Newsreader: Microsoft Outlook Express 4.72.3612.1700 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3719.2500 X-Complaints-To: abuse@supernews.com Xref: archiver1.google.com comp.lang.ada:31984 Date: 2002-12-17T14:17:24-06:00 List-Id: Marin David Condic wrote in message ... >Randy Brukardt wrote in message >news:uvskpvaik0db2b@corp.supernews.com... >> >> That's JWindows, which has been a part of Janus/Ada for MS-DOS and >> Janus/Ada for Unix since the late 1980's. We originally developed it to >> use for our original IDE (JAWS). It does multiple, overlapping text >> windows, colors, cursor control, and drop down menus. It's implemented >> by a low-level package that went direct to the hardware on MS-DOS and >> used termcap (the underlying mechanism for curses) on Unix. >> >> We redesigned it for Ada 9x during the Ada 9x project (thus, the Ada 95 >> version is different than the Ada 83). Indeed, it provided the starting >> model for Claw. >> > >Well, now there seems to be an answer! I'd guess that something like this >would not be too hard to make reasonably portable between Windows and Unix >(thus covering the bulk of the bases). Assuming an effort got started to >make some kind of "Standard" Ada library, would you think that this might be >included? Sure, we have no real interest in it anymore. This library was 100% portable between Unix and MS-DOS, and it would be simple to build a low-level implementation for the console in Windows. It would be much harder to build an implementation that could map to the Windows (or other) GUI, but it would be possible. I even wrote a "form" package for it, so it even had primitive dialog boxes available, along with the drop-down menus and windows. But no graphics of any kind. Randy.