From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.6 Date: Sun, 30 Jan 2022 14:20:13 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.5.1 Newsgroups: comp.lang.ada Content-Language: en-GB From: ldries46 Subject: Glade but more flexible Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Message-ID: Organization: KPN B.V. Path: eternal-september.org!reader02.eternal-september.org!news.mixmin.net!newsreader4.netcologne.de!news.netcologne.de!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!abe006.abavia.com!abp001.abavia.com!news.kpn.nl!not-for-mail Injection-Date: Sun, 30 Jan 2022 14:20:13 +0100 Injection-Info: news.kpn.nl; mail-complaints-to="abuse@kpn.com" X-Received-Bytes: 1688 Xref: reader02.eternal-september.org comp.lang.ada:63424 List-Id: I like the way Glade can be used for designing a gtk GUI. But There is a problem I cannot do what I like to do. The best way to illustrate that is when I want to design a multi language program. I than need the string variables in some kind of array. For instance Language_Open(lan) instead of Language_Open where: Language_Open(English) := To_Unbounded_String("Open"); Language_Open(Deutsch) := To_Unbounded_String("Offnen"); etc, where lan := (English, Deutsch, ...); This can be reached if Glade can also produce an Ada program output where you can edit output simply or when a program Glade2Ada would be created which translates the Glade Output to Ada, where you can edit the Ada program accordingly. The latest version can also be transfered to other language, so Glade2C, Glade2python etc. The question is is something like that available or is it an idea to create such a thing for the people who created Glad