Great work Alain (as usual)... On May 16, 11:13 pm, Alain Ekambi <[email protected]> wrote: > Hello people, > > I m glad to announce the release of* gwt4air 2.1** * today. > (http://code.google.com/p/gwt4air/) > > This one has been a really hard piece of work because it adds some brand > new features and possibilities for GWT developers. > > The release is compatible with *GWT 2.3* ,* Adobe AIR 2.6*, *EXT GWT 2.2.3, > Appcelerator Titanium Desktop* and *Adobe Flex 4.1* > > Below are some of the new features included in this release. > > I m looking forward for your feedbacks. > > Regards, > > Alain > > P.S Again i can not thank Thomas Broyer enough for his work on > gwt-in-the-air from which this project is a fork. > > - *Java (GWT) API for Adobe Flex (Browser) * > > Panel panel = Panel.newInstance("Panel Container Example"); > DateChooser dateChooser = DateChooser.newInstance(); > dateChooser.setVerticalCenter(0); > dateChooser.setHorizontalCenter(0); > panel.addElement(dateChooser); > > Button button = Button.newInstance("Click me"); > button.setHeight(40); > ControlBar controlBar = ControlBar.newInstance(); > controlBar.addElement(button); > panel.addElement(controlBar); > > Application.get().addElement(panel); > > [image: panelcb.png] > > - *Java (GWT) API for Adobe Flex (AIR)* > > Panel panel = Panel.newInstance("FileSystemTree Example"); > panel.setHorizontalCenter(0); > panel.setVerticalCenter(0); > panel.setPercentHeight(60); > > panel.setPercentWidth(60); > panel.setLayout(ContainerLayout.ABSOLUTE); > FileSystemTree tree = FileSystemTree.newInstance(); > tree.setPercentHeight(100); > tree.setPercentWidth(100); > tree.setDirectory(File.getApplicationDirectory()); > > panel.addElement(tree); > WindowedApplication.get().addElement(panel); > > [image: airfst.png] > > - *Clientside PDF generation in the browser (Read only)* > > PDF pdf = PDF.newInstance(); > pdf.addPage(); > pdf.writeText(“Hello, World”); > ByteArray data = pdf.save(); > Application.get().saveFile(data, "Generated.pdf"); > > - *Clientside Excel generaton in the browser (read and write)* > > Sheet excelSheet = Sheet.newInstance(); > excelSheet.resize(10, 10); > excelSheet.setCell(0, 0, "Hello, World"); > > ExcelFile file = ExcelFile.newInstance(); > file.addSheet(excelSheet); > ByteArray data = file.saveToByteArray(); > Application.get().saveFile(data, "Generated.xls"); > > - *GWT-Containers Support* > > [image: flexandgwt.png] > > -- > > GWT API for non Java based > platformshttp://code.google.com/p/gwt4air/http://www.gwt4air.appspot.com/ > > flexandgwt.png > 39KViewDownload > > panelcb.png > 17KViewDownload > > airfst.png > 91KViewDownload
-- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
