com.google.gwt.user.client.ui

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » GWT » com.google.gwt.user.client.ui 
com.google.gwt.user.client.ui
Widgets, Panels, and other user-interface classes. This package contains all of the high-level user-interface Widgets, along with panels and event interfaces. These classes form the bulk of the client-side libraries used by GWT applications.
Java Source File NameTypeComment
AbsolutePanel.javaClass An absolute panel positions all of its children absolutely, allowing them to overlap.

Note that this panel will not automatically resize itself to allow enough room for its absolutely-positioned children.

AbsolutePanelTest.javaClass TODO: document me.
AbstractImagePrototype.javaClass An opaque representation of a particular image such that the image can be accessed either as an HTML fragment or as an Image object.
Button.javaClass A standard push-button widget.
ButtonBase.javaClass Abstract base class for com.google.gwt.user.client.ui.Button , com.google.gwt.user.client.ui.CheckBox , com.google.gwt.user.client.ui.RadioButton .
CellPanel.javaClass A panel whose child widgets are contained within the cells of a table.
ChangeListener.javaInterface Event listener interface for 'change' events.
ChangeListenerCollection.javaClass A helper class for implementers of the SourcesChangeEvents interface.
CheckBox.javaClass A standard check box widget (also serves as a base class for com.google.gwt.user.client.ui.RadioButton .
CheckBoxTest.javaClass Tests the CheckBox Widget.
ClickListener.javaInterface Event listener interface for click events.
ClickListenerCollection.javaClass A helper class for implementers of the SourcesClickEvents interface.
ComplexPanel.javaClass Abstract base class for panels that can contain multiple child widgets.
Composite.javaClass A type of widget that can wrap another widget, hiding the wrapped widget's methods.
CustomButton.javaClass Custom Button is a base button class with built in support for a set number of button faces. Each face has its own style modifier.
CustomButtonTest.javaClass Test for PushButton as most of this widget's functionality is UI based, the primary test will be in the new UI testing framework once it is released.
DeckPanel.javaClass A panel that displays all of its child widgets in a 'deck', where only one can be visible at a time.
DelegatingChangeListenerCollection.javaClassChangeListenerCollection used to correctly hook up listeners which need to listen to events from another source.

For example, Composite widgets often need to listen to events generated on their wrapped widget.

DelegatingClickListenerCollection.javaClassClickListenerCollection used to correctly hook up listeners which need to listen to events from another source.

For example, Composite widgets often need to listen to events generated on their wrapped widget.

DelegatingFocusListenerCollection.javaClassFocusListenerCollection used to correctly hook up listeners which need to listen to events from another source.

For example, Composite widgets often need to listen to events generated on their wrapped widget.

DelegatingKeyboardListenerCollection.javaClassKeyboardListenerCollection used to correctly hook up event listeners to the composite's wrapped widget.

For example, Composite widgets often need to listen to events generated on their wrapped widget.

DelegatingKeyboardListenerCollectionTest.javaClass Tests keyboard events in the DelegatingKeyboardListenerCollection class.
DialogBox.javaClass A form of popup that has a caption area at the top and can be dragged by the user.
DialogBoxTest.javaClass Unit test for DialogBox .
DisclosureEvent.javaClass Event object containing information about DisclosurePanel changes.
DisclosureHandler.javaInterface Event handler interface for DisclosureEvent .
DisclosurePanel.javaClass A widget that consists of a header and a content panel that discloses the content when a user clicks on the header.

CSS Style Rules

  • .gwt-DisclosurePanel { the panel's primary style }
  • .gwt-DisclosurePanel-open { dependent style set when panel is open }
  • .gwt-DisclosurePanel-closed { dependent style set when panel is closed }
  • .header { the header section }
  • .content { the content section }

The header and content sections can be easily selected using css with a child selector:
.gwt-DisclosurePanel-open .header { ...

DisclosurePanelImages.javaInterface An ImageBundle that provides images for DisclosurePanel .
DisclosurePanelTest.javaClass Tests core functionality of DisclosurePanel .
DockPanel.javaClass A panel that lays its child widgets out "docked" at its outer edges, and allows its last widget to take up the remaining space in its center.
DockPanelTest.javaClass Tests the DockPanel widget.
DOMTest.javaClass Tests standard DOM operations in the DOM class.
FastStringMap.javaClass Special-case Map implementation which imposes limits on the types of keys that can be used in return for much faster speed.
FastStringMapProfile.javaClass TODO: document me.
FastStringMapTest.javaClass Tests FastStringMapRight now, no tests are directly run here, because the tests are run in mapTest.FastStringMapTest.
FileUpload.javaClass A widget that wraps the HTML <input type='file'> element.
FiresDisclosureEvents.javaInterface A widget that implements this interface fires the events defined by the DisclosureHandler interface.
FiresFormEvents.javaInterface A widget that implements this interface fires the events defined by the com.google.gwt.user.client.ui.FormHandler interface.
FiresSuggestionEvents.javaInterface A widget that implements this interface fires the events defined by the SuggestionHandler interface.
FlexTable.javaClass A flexible table that creates cells on demand.
FlexTableProfile.javaClass TODO: document me.
FlexTableTest.javaClass TODO: document me.
FlowPanel.javaClass A panel that formats its child widgets using the default HTML layout behavior.
FlowPanelTest.javaClass Tests the FlowPanel widget.
FocusListener.javaInterface Event listener for focus events.
FocusListenerAdapter.javaClass An adapter to simplify focus event listeners that do not need all events defined on the FocusListener interface.
FocusListenerCollection.javaClass A helper class for implementers of the com.google.gwt.user.client.ui.SourcesFocusEvents interface.
FocusPanel.javaClass A simple panel that makes its contents focusable, and adds the ability to catch mouse and keyboard events.
FocusPanelTest.javaClass Test the FocusPanel widget.
FocusWidget.javaClass Abstract base class for most widgets that can receive keyboard focus.
FormHandler.javaInterface Handler interface for form submit events.
FormHandlerCollection.javaClass Helper class for widgets that accept com.google.gwt.user.client.ui.FormHandler FormHandlers .
FormPanel.javaClass A panel that wraps its contents in an HTML <FORM> element.

This panel can be used to achieve interoperability with servers that accept traditional HTML form encoding.

FormPanelTest.javaClass Tests the FormPanel.
FormSubmitCompleteEvent.javaClass Event object containing information about form submission events.
FormSubmitEvent.javaClass Event object containing information about form submission events.
Frame.javaClass A widget that wraps an IFRAME element, which can contain an arbitrary web site.
Grid.javaClass A rectangular grid that can contain text, html, or a child com.google.gwt.user.client.ui.Widget within its cells.
GridProfile.javaClass TODO: document me.
GridTest.javaClass TODO: document me.
HasAlignment.javaInterface A widget that implements this interface has an intrinsic alignment which can be manipulated using these methods and constants.
HasCaption.javaInterface A widget that implements this interface has a caption which can be set and retrieved using these methods.
HasFocus.javaInterface A widget that implements this interface can receive keyboard focus.
HasHorizontalAlignment.javaInterface Characteristic interface which indicates that a widget can be aligned horizontally.
HasHTML.javaInterface An object that implements this interface contains text, which can be set and retrieved using these methods.
HasKeyPreview.javaInterface A class that implements this interface receives a preview of keyboard events before they are passed to the focused widget.
HasName.javaInterface A widget that implements this interface has a 'name' associated with it, allowing it to be used with FormPanel .
HasText.javaInterface An object that implements this interface contains text, which can be set and retrieved using these methods.
HasVerticalAlignment.javaInterface Characteristic interface which indicates that a widget has an associated vertical alignment.
HasWidgets.javaInterface A widget that implements this interface contains com.google.gwt.user.client.ui.Widget widgets and can enumerate them.
HasWidgetsTester.javaClass All Widgets that implement HasWidgets should derive from this test case, and make sure to run all of its test templates.
HasWordWrap.javaInterface A widget that implements this interface has a 'word-wrap' property that can be manipulated using these methods.
Hidden.javaClass Represents a hidden field in an HTML form.
HiddenTest.javaClass TODO: document me.
HistoryTest.javaClass Tests for the history system.
HorizontalPanel.javaClass A panel that lays all of its widgets out in a single horizontal column.
HorizontalPanelTest.javaClass A test for HorizontalPanel .
HorizontalSplitPanel.javaClass A panel that arranges two widgets in a single horizontal row and allows the user to interactively change the proportion of the width dedicated to each of the two widgets.
HorizontalSplitPanelImages.javaInterface An ImageBundle that provides images for com.google.gwt.user.client.ui.HorizontalSplitPanel .
HTML.javaClass A widget that can contain arbitrary HTML.
HTMLPanel.javaClass A panel that contains HTML, and which can attach child widgets to identified elements within that HTML.
HTMLPanelTest.javaClass Tests the HTMLPanel widget.
HTMLTable.javaClass HTMLTable contains the common table algorithms for com.google.gwt.user.client.ui.Grid and com.google.gwt.user.client.ui.FlexTable .
HTMLTableProfile.javaClass TODO: document me.
HTMLTableTestBase.javaClass Base test for HTMLTable derived classes.
Hyperlink.javaClass A widget that serves as an "internal" hyperlink.
Image.javaClass A widget that displays the image at a given URL.
ImageBundle.javaInterface A tag interface that is used in the generation of image bundles.
ImageTest.javaClass Tests for the Image widget.
IndexedPanel.javaInterface A panel that imposes an explicit ordering on its children.
KeyboardListener.javaInterface Event listener interface for keyboard events.
KeyboardListenerAdapter.javaClass An adapter to simplify keyboard event listeners that do not need all events defined on the KeyboardListener interface.
KeyboardListenerCollection.javaClass A helper class for implementers of the SourcesKeyboardEvents interface.
Label.javaClass A widget that contains arbitrary text, not interpreted as HTML.
LinearPanelTest.javaClass TODO: document me.
ListBox.javaClass A widget that presents a list of choices to the user, either as a list box or as a drop-down list.
ListBoxProfile.javaClass TODO: document me.
ListBoxTest.javaClass Tests ListBox .
LoadListener.javaInterface Event listener interface for 'load' events.
LoadListenerCollection.javaClass A helper class for implementers of the SourcesLoadEvents interface.
MenuBar.javaClass A standard menu bar widget.
MenuItem.javaClass A widget that can be placed in a com.google.gwt.user.client.ui.MenuBar .
MouseListener.javaInterface Event listener interface for mouse events.
MouseListenerAdapter.javaClass An adapter to simplify mouse event listeners that do not need all events defined on the MouseListener interface.
MouseListenerCollection.javaClass A helper class for implementers of the SourcesMouseEvents interface.
MouseWheelListener.javaInterface Event listener interface for mouse wheel events.
MouseWheelListenerCollection.javaClass A helper class for implementers of the SourcesMouseWheelEvents interface.
MouseWheelVelocity.javaClass Encapsulates the direction and velocity of mouse wheel events.
MultiWordSuggestOracle.javaClass The default com.google.gwt.user.client.ui.SuggestOracle .
NamedFrame.javaClass A com.google.gwt.user.client.ui.Frame that has a 'name' associated with it.
NamedFrameTest.javaClass Tests the NamedFrame widget.
Panel.javaClass Abstract base class for all panels, which are widgets that can contain other widgets.
PanelTest.javaClass Panel test.
PasswordTextBox.javaClass A text box that visually masks its input to prevent eavesdropping.
PopupListener.javaInterface Event listener interface for popup events.
PopupListenerCollection.javaClass A helper class for implementers of the SourcesPopupEvents interface.
PopupPanel.javaClass A panel that can "pop up" over other widgets.
PopupTest.javaClass TODO: document me.
PrefixTree.javaClass A prefix tree (aka trie).
PrefixTreeTest.javaClass TODO(bobv): comment me.
PushButton.javaClass A normal push button with custom styling.
RadioButton.javaClass A mutually-exclusive selection radio button widget.
RadioButtonTest.javaClass Tests the RadioButton class.
RichTextArea.javaClass A rich text editor that allows complex styling and formatting.
RichTextAreaTest.javaClass Tests the RichTextArea widget.
RootPanel.javaClass The panel to which all other widgets must ultimately be added.
ScrollListener.javaInterface Event listener interface for scroll events.
ScrollListenerCollection.javaClass A helper class for implementers of the SourcesScrollEvents interface.
ScrollPanel.javaClass A simple panel that wraps its contents in a scrollable area.
ScrollPanelTest.javaClass Tests the ScrollPanel widget.
SimplePanel.javaClass Abstract base class for panels that contain only one widget.
SourcesChangeEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.ChangeListener interface.
SourcesClickEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.ClickListener interface.
SourcesFocusEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.FocusListener interface.
SourcesKeyboardEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.KeyboardListener interface.
SourcesLoadEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.LoadListener interface.
SourcesMouseEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.MouseListener interface.
SourcesMouseWheelEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.MouseWheelListener interface.
SourcesPopupEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.PopupListener interface.
SourcesScrollEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.ScrollListener interface.
SourcesTabEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.TabListener interface.
SourcesTableEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.TableListener interface.
SourcesTreeEvents.javaInterface A widget that implements this interface sources the events defined by the com.google.gwt.user.client.ui.TreeListener interface.
SplitPanel.javaClass Abstract base class for HorizontalSplitPanel and VerticalSplitPanel .
SplitPanelTest.javaClass Tests both HorizontalSplitPanel and VerticalSplitPanel .
StackPanel.javaClass A panel that stacks its children vertically, displaying only one at a time, with a header for each child which the user can click to display.
StackPanelTest.javaClass Tests ListBox.
SuggestBox.javaClass A SuggestBox is a text box or text area which displays a pre-configured set of selections that match the user's input. Each SuggestBox is associated with a single SuggestOracle . The SuggestOracle is used to provide a set of selections given a specific query string.

By default, the SuggestBox uses a MultiWordSuggestOracle as its oracle.

SuggestionEvent.javaClass Event object containing information about the selection of a SuggestOracle.Suggestion displayed by a SuggestBox .
SuggestionHandler.javaInterface Event handler interface for SuggestionEvent .
SuggestOracle.javaClass A com.google.gwt.user.client.ui.SuggestOracle can be used to create suggestions associated with a specific query string.
TabBar.javaClass A horizontal bar of folder-style tabs, most commonly used as part of a com.google.gwt.user.client.ui.TabPanel .
TabBarTest.javaClass TODO: document me.
TableListener.javaInterface Event listener interface for table events.
TableListenerCollection.javaClass A helper class for implementers of the com.google.gwt.user.client.ui.SourcesTableEvents interface.
TabListener.javaInterface Event listener interface for tab events, used primarily by com.google.gwt.user.client.ui.TabBar and com.google.gwt.user.client.ui.TabPanel .
TabListenerCollection.javaClass A helper class for implementers of the com.google.gwt.user.client.ui.SourcesTabEvents interface.
TabPanel.javaClass A panel that represents a tabbed set of pages, each of which contains another widget.
TabPanelTest.javaClass Tests the TabPanel.
TextArea.javaClass A text box that allows multiple lines of text to be entered.
TextAreaTest.javaClass Tests TextArea .
TextBox.javaClass A standard single-line text box.
TextBoxBase.javaClass Abstract base class for all text entry widgets.
ToggleButton.javaClass A ToggleButton is a stylish stateful button which allows the user to toggle between up and down states.
Tree.javaClass A standard hierarchical tree widget.
TreeImages.javaInterface An ImageBundle that provides images for com.google.gwt.user.client.ui.Tree .
TreeItem.javaClass An item that can be contained within a com.google.gwt.user.client.ui.Tree .
TreeListener.javaInterface Event listener interface for tree events.
TreeListenerCollection.javaClass A helper class for implementers of the SourcesClickEvents interface.
TreeProfile.javaClass TODO: document me.
TreeTest.javaClass Tests the Tree widget.
UIObject.javaClass The superclass for all user-interface objects.
UIObjectTest.javaClass Tests UIObject.
VerticalPanel.javaClass A panel that lays all of its widgets out in a single vertical column.
VerticalPanelTest.javaClass A test for VerticalPanel .
VerticalSplitPanel.javaClass A panel that arranges two widgets in a single vertical column and allows the user to interactively change the proportion of the height dedicated to each of the two widgets.
VerticalSplitPanelImages.javaInterface An ImageBundle that provides images for com.google.gwt.user.client.ui.HorizontalSplitPanel .
Widget.javaClass The base class for the majority of user-interface objects.
WidgetCollection.javaClass A simple collection of widgets to be used by com.google.gwt.user.client.ui.Panel panels and com.google.gwt.user.client.ui.Composite composites .

The main purpose of this specialized collection is to implement java.util.Iterator.remove in a way that delegates removal to its panel.

WidgetCollectionTest.javaClass TODO: document me.
WidgetIterators.javaClass A collection of convenience factories for creating iterators for widgets.
WidgetIteratorsTest.javaClass Tests WidgetIterators .
WidgetOnLoadTest.javaClass Tests the semantics and ordering of onAttach/onDetach/onLoad/onUnload.
WidgetProfile.javaClass TODO: document me.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.