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-Thread: 103376,a875d9649dde34e3 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news.glorb.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local1.nntp.dca.giganews.com!nntp.megapath.net!news.megapath.net.POSTED!not-for-mail NNTP-Posting-Date: Thu, 30 Sep 2004 18:31:21 -0500 From: "Randy Brukardt" Newsgroups: comp.lang.ada References: Subject: Re: GWindows and a future home for it Date: Thu, 30 Sep 2004 18:32:31 -0500 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Message-ID: NNTP-Posting-Host: 64.32.209.38 X-Trace: sv3-yWI5aE2Gc3thWepSUiHKHJOeAIwRDRxTGx9arNLguZ4h4jZW9WiUdOrpT2DanYtErC1vAI7lKk+H37t!DJTgfDn0szNwQWWfeE8f8U4fMoxfR+33lc0XFB0R6yKXNgbhJ44OdUQC1Z/wqqcdxIAc4W1wkavn X-Complaints-To: abuse@megapath.net X-DMCA-Complaints-To: abuse@megapath.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.17 Xref: g2news1.google.com comp.lang.ada:4469 Date: 2004-09-30T18:32:31-05:00 List-Id: "Stephen Leake" wrote in message news:mailman.141.1096581654.390.comp.lang.ada@ada-france.org... > Unfortunately, that's not available. You'll have to go look at the > Claw sources, and see for yourself. I just did a grep in the free Claw > for "database", and came up empty. Randy - any support in the full > Claw? > > I agree database access is important. Currently, I'm using GNADE and > GtkAda for a database application. So some of us will have to change, > whichever standard we agree on. We didn't do any database support, mainly because no one working on Claw has much experience in that area. We decided to concentrate on the GUI, and do the database stuff when we got around to it (and everyone knows how that works). The most recent list of types is found at: http://www.rrsoftware.com/html/prodinf/claw/clawcl13.html That list seems to omit the Rich Text edit control and the ListView family of controls. (I'll have to update it ASAP.) ListView includes a generic unit to create a table from a type and a set of accessor routines. It's a bit messy to set up, but then it does all of the hard work. Someone mentioned printing. The basic capability is the printer canvas, which supports the basic start and end document and page operations, and operations for setting up a cancel button. We had planned to build a document architecture on top of that, but never had much demand. And the Rich Edit control has built-in support for rendering pages, complete with margins. (And it's easy to add headers and footers to the output.) That's so trivial to use, I've never found a need to use anything more complex (just create a hidden rich edit control, load it with your formatted document, and use Print_Range in the loop to print it). Randy.