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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,b1a5713afb4e5c1 X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!e10g2000prf.googlegroups.com!not-for-mail From: JPWoodruff@gmail.com Newsgroups: comp.lang.ada Subject: Re: An easy way to simple scientific plots (in Ada)? Date: Wed, 26 Dec 2007 20:07:29 -0800 (PST) Organization: http://groups.google.com Message-ID: References: <41bd2384-83a7-46ff-87e9-d726623633e9@s12g2000prg.googlegroups.com> NNTP-Posting-Host: 76.25.248.240 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1198728449 12116 127.0.0.1 (27 Dec 2007 04:07:29 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 27 Dec 2007 04:07:29 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: e10g2000prf.googlegroups.com; posting-host=76.25.248.240; posting-account=eLk0BgoAAAA-yA75xm1L7heSizMaESVg User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11,gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:19033 Date: 2007-12-26T20:07:29-08:00 List-Id: Original poster asks further advice after following Jeff's suggestion: On Dec 26, 2:30 pm, "Jeffrey R. Carter" wrote: > JPWoodr...@gmail.com wrote: > > I'm an old Ada hobbyist who would like to plot some data from a > > computation. > > < .... > > > > So can I ask for a suggestion: which library would be simplest for me > > to install and use for my task? > > Package Plot_Windows from Win_IO seems to do what you want. It's small and easy > to use, and doesn't require that you do anything different with the rest of your > application. I tried to follow Jeff's suggestion - installed fresh new gtkada2.8 from adacore, then installed fresh Win_IO 3.0 from its source. Sorry to say, result is very much as I recalled from nearly a year ago: test_plot_window compiles and links OK, but the elaboration of Plot_Window_Type:=Plot_Window("Test Plot Window","Degrees","Value"); at the very beginning of that test program results in: (test_plot_window.exe:4076): GLib-GObject-WARNING **: gsignal.c:1268: parameter 2 of type `' for signal "GtkPlotCanvas::select_item" is not a value type (test_plot_window.exe:4076): GLib-GObject-WARNING **: gsignal.c:1268: parameter 1 of type `' for signal "GtkPlotCanvas::move_item" is not a value type (test_plot_window.exe:4076): GLib-GObject-WARNING **: gsignal.c:1268: parameter 1 of type `' for signal "GtkPlotCanvas::resize_item" is not a value type (test_plot_window.exe:4076): GLib-GObject-WARNING **: gsignal.c:1268: parameter 1 of type `' for signal "GtkPlotCanvas::delete_item" is not a value type (test_plot_window.exe:4076): GLib-GObject-WARNING **: cannot retrieve class for invalid (unclassed) type `' raised PROGRAM_ERROR : EXCEPTION_ACCESS_VIOLATION ------------------------------------------------- (Some) other parts of the library appear to work properly. I'd welcome some advice on this... John