Browsing projects by Tag(s)

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

Showing page 1 of 2

GWT Mosaic is a feature rich toolkit for creating graphical Rich Internet Applications. Offering a complete set of widgets, GWT Mosaic is suitable for projects ranging from small one-off projects to complete application suites. The goal is to provide a complete widget set by keeping the API as ... [More] close as possible to the GWT's standard widgets API. [Less]

5.0
 
  0 reviews  |  6 users  |  6,161 lines of code  |  0 current contributors  |  Analyzed 12 days ago
 
 
Compare

Kune is a free/libre distributed collaborative social network focused on: the collaborative edition in real time of free contents, thinking on the collaborative work of collectives and organizations; its publishing on the web; and the communication in social network among social movements, academic ... [More] groups and social initiatives. Besides, it stresses the CC licenses of contents and usability for humans. Many buzzwords, but we try to take it seriously :) [Less]

5.0
 
  0 reviews  |  4 users  |  238,760 lines of code  |  5 current contributors  |  Analyzed 4 days ago
 
 

JGoodies form layout implementation for Ext-GWT (GXT) The first advanced layout manager for ExtGWT (GXT). Live demo (1.0.4): http://www.sparksc.com/gxt-jglayout Main features: aligns components in a dynamic rectangular grid of cells column and row specifications horizontal grow, fill ... [More] horizontal alignments: left, center, right, fill vertical alignments: top, center, bottom sizes can be specified as: Pixel, Points, Inches, Millimeter, Centimeter and Dialog Units resize weights bounded, constant, minimum and preferred sizes column and row groups cell constraints form builder form separators ( since 1.0.1 ) layout debugging ( since 1.0.2 ) showcase application ( since 1.0.2 ) WARNING: vertical sizes, vertical fill and grow NOT supported in 1.0.2. Roadmap: performance improvements visual layout designer Any help will be greatly appreciated. [Less]

0
 
  0 reviews  |  1 user  |  15,132 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

GWT Tk is a library of reusable components for programming interactive web applications. FeaturesSimpleHyperLink, ExternalHyperLink create links without fussing with browser history DropDownPanel a widget which expands to show it's content (like in Gmail) ModalDialog a full-featured, highly ... [More] configurable modal dialog AlertDialog a modal dialog tailored for conveniently displaying alerts GlassPanel a transparent widget which blocks user interaction with the document RowPanel, ColumnPanel panels which facililtate simpler, more natural table-based layouts than VerticalPanel & HorizontalPanel Debug print trace statements in all browsers EventWrapper, DelegatingWrapper, CWrapper handle additional events on existing widgets focus management & containment [Less]

0
 
  0 reviews  |  1 user  |  0 current contributors
 
 

Web based desktop environment build with GWT Mosaic. Demo v0.2.0-pr3 - TODO for v0.2.0: Port to GWT Mosaic Demo v0.1.2 - TODO for v0.1.2: Provide MDI API for extensions Easy customization Demo v0.1.1 - Features: Desktop Panel Dock pin/unpin Window List Shell minimize/restore Unique shell names

0
 
  0 reviews  |  0 users  |  1,578 lines of code  |  0 current contributors  |  Analyzed about 1 hour ago
 
 

DaliCMS is an open-source, Web 2.0 ready Content Management System. The administrator site is written using GWT. For more information, visit http://www.dalicms.org.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 9 days ago
 
 

YourGWT is another widget library

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

Project is focused on creating of a home page using available tools and APIs. THe aim is to crete an AJAX web inteface and mash up information from different sources. Research in state of the art web development but the main goal is to have a bit of fun with good software.

0
 
  0 reviews  |  0 users  |  982 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 

Rialto GWTRialto GWT is a widget toolkit which extends GWT and wraps the Rialto JavaScript library. We decide to start this project cause we see here a mutual interest: For the GWT Community which can use the rich widgets and behaviors offered by the Rialto Framework. For the Rialto Community ... [More] which can use the GWT development framework to easily write and deploy Rialto application. The current version is 2.1 (please see below). If you have questions, please post them on the discussion group. Rialto GWT 2.1The first version of Rialto-GWT (1.0 - september 2007) was more a proof of concept than a real and stable version. Due to this, we have basically rebuilt the program from the ground up in this second version. The results are a massive improvement over the previous version with: a use of GWT 1.7 and Java 5 a stronger abstraction of the Rialto API an API closer than the GWT framework components with MVC model [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 2 days ago
 
 

What is GWT?The Google Web Toolkit (GWT) is an AJAX development tool from Google, targeted for Java Developers. Web applications (both GUIs and RPCs) are written in Java using the GWT API. The Java files are then compiled into compact, obfuscated, browser-specific JavaScript files. A small bit of ... [More] loading JavaScript determines which browser-specific script file gets used depending on the user-agent. The API libray is licensed under the Apache 2.0 license. The GWT-Compiler was originally licensed under a proprietary license, but the most recent version is also licensed under the Apache 2.0 license. GWT emphasizes reusable, efficient solutions to recurring Ajax challenges, namely asynchronous remote procedure calls, history management, bookmarking, and cross-browser portability. And what is "gwt-toolbox"?"gwt-toolbox" is a bunch of tools that allow developers to build flexible GWT applications. The project is divided into several modules: 1. toolbox-core This is the core module of the project. It contains a MVC framework you can use in order to build more flexible applications. This framework is highly based on the "observer" design pattern that notifies the UI when the model is changed. 2. toolbox-remoting In this module, you can find all needed classes to build your distributed applications. For the moment, only the RPC protocol is supported for the service layer. 3. toolbox-utils This module contains several helper classes used by the framework. Deeper in "gwt-toolbox"...1. Fundamentals An application based on "gwt-toolbox" should be divided into several parts: Models Views Controllers Services Each of these above elements has a unique name allowing it to be registered in a specific registry. The main entry point of a "gwt-toolbox" application is the AbstractEntryPoint class. When the application starts up, the AbstractEntryPoint instance calls the main controller of the application: The ApplicationController. This last is in charge of registering, in their own registry, all models, views, controllers and services needed by the application. After that, the main controller displays the main view of the application. Due to the fact that a view can observe one or more models (these associations are made by the application controller), when a model is modified, the observing views are notified and can react in consequence. 2. Class diagram TODO 3. Samples The following samples are embedded in the "gwt-toolbox" distribution. To build these samples (war, ...), Maven2 should be installed and configured on your computer. After these fancy stuff, you simply have to execute the following command in your favorite shell: mvn clean install. 3.1. Sample 1 - Asynchronous "Hello World!!!" The famous example built with "gwt-toolbox" and in its asynchronous version. http://code.google.com/p/gwt-toolbox/wiki/HelloWorldAsyncWithGwtToolbox The demo is available at this address 3.4. A full application to manage your contacts: "gwt-contact" TODO Repository Maven2Used to develop maven2 applications with "gwt-toolbox". http://gwt-toolbox.googlecode.com/svn/trunk/maven_repo/ In order to use our repository, you have to add the following lines in your pom.xml file: gwt-toolbox-plugins http://gwt-toolbox.googlecode.com/svn/trunk/maven_repo/ gwt-toolbox http://gwt-toolbox.googlecode.com/svn/trunk/maven_repo/ Finally, add the correct dependency to "gwt-toolbox" in your pom.xml file. For example: org.sempere.gwt-toolbox toolbox-remoting 0.1 [Less]

0
 
  0 reviews  |  0 users  |  1,382 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 
 
 

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.