Login!
Register as a new userLost password?

for Project:

Minky is a new programming language, currently interpreting just fine in my own brain ;P

FS#10 — XML User Interface Language

Attached to Project— Minky
Opened by Terje Pedersen (senikk) - Monday, 31 July 2006, 08:29AM
Last edited by Terje Pedersen (senikk) - Tuesday, 01 August 2006, 03:18PM
Feature Request
GUI
Researching
No-one
All
Low
Normal
Development
Undecided
Undecided
0%
Since I'm planning to make it possible to write XML code as part of the language maybe I should support XUL or UIML somehow, making it simpler to write such applications. Other interests for the XML support is XMPP.
This task depends upon

This task blocks these from closing
Comment by Terje Pedersen (senikk) - Tuesday, 01 August 2006, 01:00PM

# A simple example of generating something, maybe like this?

entries : ("car", "boat", "bicycle")
somelist :
<xul>
<list id="transport">
{entries each (e, <entry value="{e}" />)
</list>
<button id="okbutton" label="OK"/>
</xul>


Comment by Terje Pedersen (senikk) - Tuesday, 01 August 2006, 03:36PM

# UIML based?

filemenu : ("New", "Quit, "Close")
uiml:
<UIML>
<APP NAME="Test" CLASS="App">
<GROUP NAME= "MainFrame" CLASS="frame">
<GROUP NAME="File" CLASS="menu">
{filemenu each (e, <ELEM NAME="{e}" CLASS="menuitem"/>)}
</GROUP>
</GROUP>
</APP>
</UIML>