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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,40870e077bed1c53 X-Google-Attributes: gid103376,public From: "David C. Hoos, Sr." Subject: Re: Gui development in ADA Date: 1999/06/09 Message-ID: #1/1 X-Deja-AN: 487461270 Content-Transfer-Encoding: 7bit References: <375E3D80.E2DFE42A@alcatel.be> X-Priority: 3 Content-Type: text/plain; charset="iso-8859-1" X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-MSMail-Priority: Normal MIME-Version: 1.0 Newsgroups: comp.lang.ada Date: 1999-06-09T00:00:00+00:00 List-Id: Jos De Laender wrote in message news:375E3D80.E2DFE42A@alcatel.be... > > Hi, > > I recently studied a C++ class library for building Gui applications > under Windows/Unix and others. In fact it was a quite impressive one > from OO point of view. > > Do you guys know if such an elaborated class library is also > available in Ada ? It should , at least for personal use , be freely > available. Currently it is only for self education purposes. > > Any pointers available ? There are several possibilities, ranging from "thin" to "thick" bindings to the underlying OS services, and GUI libraries. There may be others, but try these for starters: CLAW (Class Library Ada Windows) free demo but production version not free. Very useful for education, though, but specific to Win32. http://rrsoftware.com/html/prodinf/claw/clawdemo.htm These others are platform-independent (i.e., there are versions for UNIX and Win32): GTK Ada -- this is a binding to the GTK+ Graphics toolkit. http://ada.eu.org/gtkada/ TASH (Tcl Ada SHell), an Ada95 binding to Tcl/tk http://tash.calspan.com/ RAPID, the Rapid Ada Portable Interface Design tool. Using RAPID, programmers can easily create a graphical user interfaces (GUIs) for their applications by simply drawing them. RAPID then generates Ada code using the TASH binding to Tcl/Tk. Since Tcl/Tk is supported on many different platforms (including Windows, Macintosh, and UNIX), the generated GUI will also run on all of these platforms. ftp://ftp.usafa.af.mil/pub/dfcs/carlisle/usafa/rapid/index.html Some work done by Leonid Dulman using TASH, RAPID, et. al. http://ada95.freeservers.com/index.htm