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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,fe981e78fd1c1db0 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!s31g2000yqs.googlegroups.com!not-for-mail From: Lucretia9 Newsgroups: comp.lang.ada Subject: Re: wxAda : is it vanished ? Date: Thu, 13 Aug 2009 04:19:07 -0700 (PDT) Organization: http://groups.google.com Message-ID: <7326116a-c0df-4f1d-b474-f04952b7ac3e@s31g2000yqs.googlegroups.com> References: <6dbfe301-c9b6-47d7-9324-019b208b0ed5@o15g2000yqm.googlegroups.com> NNTP-Posting-Host: 90.201.91.2 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1250162347 9979 127.0.0.1 (13 Aug 2009 11:19:07 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 13 Aug 2009 11:19:07 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: s31g2000yqs.googlegroups.com; posting-host=90.201.91.2; posting-account=L2-UcQkAAAAfd_BqbeNHs3XeM0jTXloS User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux x86_64; en-GB; rv:1.9.0.13) Gecko/2009080315 Ubuntu/9.04 (jaunty) Firefox/3.0.13,gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:7722 Date: 2009-08-13T04:19:07-07:00 List-Id: On Aug 13, 11:03=A0am, Yannick Duch=EAne Hibou57 wrote: > On 12 ao=FBt, 15:01, Lucretia9 wrote: > Hi Luke (alias Lucretia), nice to meet you :) Hi, and you :) > What is the new way to bind to wxWidgets you are thinking about ? Well, to try to automate it using python scripts (if this doesn't work another attempt with SWIG). Rather than define all tagged types as non-limited types, they will be limited and they will have to allocated dynamically, this is how other bindings to C++ UI toolkits work and really is the only way due to C++ semantics. > I guess its big work, as wxWidgets (previously wxWindows) is all in C+ > +, and interfacing C++ with Ada, tipically requires an intermediate > binding in C... a tedious task. Yeah, bit job due to the size of wxWidgets, although I have no intentions of supporting the entire lib, there's stuff wxAda just doesn't require. > As I said, I was interested in wxWidget rather than others, beceaue of > its license termes and beceause it is an interface to the underlying > OS, not an emulation which creates all its own widgets (I've seen > screen shots of GTK on Mac, it look like Gnome on Linux, and Qt does > an emulation too, althought it lies better). Yup, the license and also the ease of programming with wxWidgets is what got me started with it in the first place. I think atm, your options are this: 1) Use AdaGtk on all platforms for now. 2) Develop your UI code in whatever language for whatever platform, e.g. C++ for Win32, Obj-C for Apple and then create the app code in Ada providing some sort of interface between the 2. Luke.