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,34191e2c05ab90f1 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!feeder.xsnews.nl!feeder.news-service.com!skynet.be!newspost001!tjb!not-for-mail Date: Fri, 29 Jul 2005 14:31:24 +0200 From: Adrien Plisson User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) X-Accept-Language: fr-fr, fr-be, fr, en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: ada & gui References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: <42ea20e3$0$30471$ba620e4c@news.skynet.be> Organization: -= Belgacom Usenet Service =- NNTP-Posting-Host: 16052bd4.news.skynet.be X-Trace: 1122640099 news.skynet.be 30471 81.246.238.178:4839 X-Complaints-To: usenet-abuse@skynet.be Xref: g2news1.google.com comp.lang.ada:3838 Date: 2005-07-29T14:31:24+02:00 List-Id: Szymon Guz wrote: > Hi, > I've got to create a database application for my client and I've got a > problem with choosing the apropriate language and libraries. Program > must connect to a database (I chose Postgresql) and must have nice gui. > What is more it has to work under windows and linux. there are numerous databases working under both windows and linux (mysql, postgresql, sqlite, ...), there also are numerous GUI libraries working on both (see: ). > First of all I want to use Ada, bu what with the gui ? In my opinion, > maybe I'm wrong, the GTK-made gui isn't nice for a normal windows user. > My application must work under windows, but also there should be the > possibility to work under linux. My next chose is C# with mono, but > there also is gtk when talking about multiplatform application. Next, I > thought about wxWindows (I still like this name), but there is no Ada > binding and I want to avoid C and C++ as much as I can. are you sure you want to write this application in Ada ? it would be easier to choose a GUI framework in other languages, not necessarily C/C++. i wrote very nice GUI applications using python+wxWidgets (thanks microsoft for this name, i also prefer the old one), but there are many other languages available. you may consider writing the core app in Ada and the GUI in another language, using anything you like to make the 2 work together: DLLs, IPC... you may also consider a Tcl/Tk binding for Ada like TASH (). there is a list of available GUI framework bindings on adapower () -- rien