Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

Summarygwt-diagrams is GWT library which provides diagramming capability to web applications. Demo is available here. Notes02.10.2008: gwt-diagrams 0.2-RC00 is now available for download, requires GWT 1.5. Work on stable release version is in progress ... 13.03.2008: there are some delays in ... [More] development of 0.2 version. Actual preview is still here. 0.2.RC01 is expected till end of March and stable 0.2 release is expected at end of April. 20.01.2008: development of 0.2 release is pending. You can preview demo snapshot of immature version here 01.01.2008: gwt-diagrams 0.1 is now available for download :) 01.01.2008: 0.1 was tested on: IE6, IE7, FF2.0 (win), Opera 9 (win), Safari 3 (win). Recent CrossBrowserRaport 12.2007: known issue: straight/bezier connections doesn't work in hosted mode on linux (gecko 1.7) more Hello world examplepublic class ExampleEntryPoint implements EntryPoint { public void onModuleLoad() { // elements to connect Widget label1 = new Label("Hello"); Widget label2 = new Label("world"); RootPanel.get().add(label1, 100, 100); RootPanel.get().add(label2, 200, 200); // gwt-diagrams stuff Connector c1 = UIObjectConnector.wrap(label1); Connector c2 = UIObjectConnector.wrap(label2); Connection connection = new RectilinearTwoEndedConnection(c1, c2); connection.appendTo(RootPanel.get()); } } more code examples Conceptions Connector sth. that can be conneted with another Connector Connection UI widget representing connection eg. line between two Connectors Direction UP, DOWN, LEFT, RIGHT - direction in which Connection can grow from Connector ConnectionData internal structure representing connection. It is internaly computed by ConnectonDataCalculator [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.