Hello,

  Lucia Bonifacino reports that KoalaGML has been
reborn as GML and that the GML 1.0 release is now out
and work for the 1.0.1 release is already underway.

  What is GML?

  The GUI Markup Language lets you build Eclipse (SWT)
UIs or Swing UIs using XML thanks to a GNU
LGPL-licensed Java runtime. 

  More @ http://www.manentiasoftware.com/gml

  Grab a copy @
http://sourceforge.net/projects/koalagml  

  If anyone tries out GML let us know what you think. 


  - Gerald
  

PS: Here's a GML XUL Challenge 2004 Counter-like
Sample: 

<gml xsi:schemaLocation="http://www.koaladev.com
http://www.koaladev.com/gml/GMLSchema.xsd";>
 <frame name="frame1">
   <size width="500" height="300"/>
    <button name="button1" visible="true"
enabled="true">
      <font type="Arial" size="18" bold="true"
italic="false"/>
      <color background="red" foreground="#000000"/>
      <location horizontal="20" vertical="40"/>
      <size width="200" height="50"/>
      Click here
        <eventHandlers>
          <handler eventType="widgetSelected">
        <imports>
             import java.util.*;
        </imports>
        <declarations>
          private String s;
          private int i;                       
        </declarations>
        <constructor>
          s = new String("1");
          i = Integer.parseInt(s);                    
   
        </constructor>
           frame.textfield1.setText("You click the
button "+i+" times");
           i++;                        
        </handler>
      </eventHandlers>
    </button>

   <textField name="textfield1" visible="true">
     <font type="Arial" size="24" italic="true"/>
     <color background="white" foreground="blue"/>
     <location horizontal="20" vertical="200"/> 
     <size width="400" height="50"/>
     <anchor bottom="fixed" right="fixed"/>
            before any click...        
   </textField>
  </frame>
</gml>   


-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
xul-announce mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xul-announce

Reply via email to