Gul ( the phpGtk User Language )
[email protected] (thomas favennec)
| Newsgroups | php.gtk.webmaster |
|---|---|
| Message-ID | <000601c5e7b9$02e0cc60$7e67fea9@Thomas> |
Hello phpgtk team !
I would like to submit you my Gul project in php-gtk applications.
Gul is a free Xul-like markup language for describing user interfaces with PHP-GTK extension
Example :
<Gul>
<style>
.MainWindow{
background-color: gradient(white,yellow,v,300);
width:300px;
height:300px;
}
.hello{
font-size:20px;
}
</style>
<window border="5" destroy="MainQuit" position="center" class="MainWindow">
<label class="hello" >hello Gul !</label>
</window>
<script>
<![CDATA[
function MainQuit()
{
gtk::main_quit();
}
]]>
</script>
</Gul>
Official site here : http://gul.redsofa.net/index.php
Documentation is under construction here : http://gul.redsofa.net/index.php?path=Gul%20documentation/Gul%20reference
Could you please give your opinion about that ?
thanks
Thomas.
(PS sorry for my bad english, I'm french)