summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/Root.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved server files to a server src folder (#9299)Artur Signell2012-08-131-1227/+0
|
* Merge remote-tracking branch 'origin/6.8'Leif Åstrand2012-08-031-0/+10
| | | | | | | | | | | | | | | + add @Override Conflicts: src/com/vaadin/terminal/gwt/client/Util.java src/com/vaadin/terminal/gwt/client/ui/VOverlay.java src/com/vaadin/terminal/gwt/client/ui/menubar/VMenuBar.java src/com/vaadin/terminal/gwt/client/ui/popupview/VPopupView.java src/com/vaadin/terminal/gwt/client/ui/table/VScrollTable.java src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java src/com/vaadin/ui/LoginForm.java src/com/vaadin/ui/Table.java tests/test.xml
* Move classes common to client and server to com.vaadin.shared.* (#8934)Leif Åstrand2012-07-271-3/+3
|
* Revert root cleanup changes - this commit was not supposed to go to masterJohannes Dahlström2012-07-271-16/+0
| | | | This reverts commit 25f664f993a1eb936cb516f1b748773b9b4d5239.
* Initial commit for root cleanup support (#7893)Johannes Dahlström2012-07-181-0/+16
|
* Update deprecation messages to inform about changed HTML default (#9066)Leif Åstrand2012-06-291-5/+9
|
* Change Notification default to no allow HTML (#9066)Leif Åstrand2012-06-291-5/+12
|
* Rename setCurrentXyz() to setCurrent() (#9029)Leif Åstrand2012-06-251-4/+4
|
* Move showNotification shorthands back to Root from LegacyWindow (#8907)Leif Åstrand2012-06-251-146/+145
|
* Avoid double attach calls for sub windows (#9011)Artur Signell2012-06-211-24/+0
|
* Moved connector tracking from Application to RootArtur Signell2012-06-211-4/+3
| | | | | | This should fix issues with connectors being detached and reattached and also make the connector map cleanup method unnecessary as long as AbstractConnect.attach and detach always are called (#8943)
* Extract API from Root to Page (#8907)Leif Åstrand2012-06-191-700/+346
|
* JavascriptManager -> JavaScript and changes based on review (#6730)Leif Åstrand2012-06-141-29/+10
|
* Initial javascript callback support (#6730)Leif Åstrand2012-06-111-0/+12
|
* Fix some broken hierarchies (#6690)Leif Åstrand2012-06-061-4/+10
|
* Initial extension support (#6690)Leif Åstrand2012-06-061-8/+0
|
* Repaint when contents changes (#8832)Artur Signell2012-06-011-0/+2
|
* Fixed problem with iterator containing null (#8729)Artur Signell2012-05-141-0/+4
|
* Initial support for sending difference in state (#8419)Artur Signell2012-05-111-3/+2
| | | | | | | | Forces the shared state to be the type declared by getStateType (#8677) Creates an empty object for reference when doing a full repaint, causing only the differences between a freshly created object and the current state to be sent.
* RPC -> Rpc for consistencyArtur Signell2012-04-181-2/+2
|
* Workaround for problem with wrong state being createdArtur Signell2012-04-121-0/+8
|
* Moved each component to its own package on client sideArtur Signell2012-04-121-1/+1
| | | | | | Class loaders have problems with referring to static inner classes (e.g. state classes) when they cannot load the declaring class. To deal with this the components have been moved to their own packages and state/rpc classes will be defined in their own Java files.
* Moved shared classes out from connector to avoid class loader problemsArtur Signell2012-04-121-9/+9
|
* Component no longer implements PaintableArtur Signell2012-04-121-4/+0
|
* Updated Root to use hierarchy change event for content and windowsArtur Signell2012-04-121-28/+20
|
* Simplified Rpc registration on server side (#8591)Artur Signell2012-04-051-1/+1
|
* Replace @ClientWidget with client-side @Component (#8440)Henri Sara2012-04-041-2/+0
|
* Make default Root state reflect reality (#8460)Leif Åstrand2012-04-021-0/+1
|
* Refactored ClickEventHandler and LayoutClickEventHandler to use RPCArtur Signell2012-03-291-1/+10
|
* Moved Connector -> Connector Id mapping to AbstractComponentArtur Signell2012-03-211-0/+16
| | | | | Moved Connector Id -> Connector mapping to Application Moved dirty connector tracking to Root Removed adding of
* Separated Component.isEnabled/isVisible from Connector enabled state.Artur Signell2012-03-141-0/+5
| | | | | | Connector.isConnectorEnabled determines if the Connector can receive messages from its counter part. Component isEnabled/isVisible only returns the state of the component. Made Table implement HasComponents.
* #5890 Added getComponentCount to ComponentContainerArtur Signell2012-03-041-0/+14
|
* Renamed Paintable component classes to ConnectorArtur Signell2012-02-281-1/+1
|
* Use constants for some more UIDL attribute names.Henri Sara2012-02-221-6/+18
|
* #8170 Updated to work with Vaadin 7Leif Åstrand2012-01-061-4/+31
|
* Remove invalid javadoc causing eclipse formatter to insert newlinesLeif Åstrand2012-01-061-2/+1
|
* Make LegacyWindow init eager as there was no other initialization in V6Leif Åstrand2011-12-221-10/+2
|
* Remove @ClientWidget for RootLeif Åstrand2011-12-221-1/+2
| | | | | | The annotation causes problems when reading other annotations in application servers with too eager classloaders. The annotation is also useless as the client side widget for Root is hardcoded in the widgetset.
* Change the default to a two request bootstrapLeif Åstrand2011-12-221-7/+18
| | | | Add @EagerInit annotation to indicate that that no browser details are required, enabling a one request bootstrap.
* Fix typo in public APILeif Åstrand2011-12-201-3/+3
|
* Make Root.init abstract, add non-abstract LegacyWindow and migrate testsLeif Åstrand2011-12-201-4/+125
|
* Root now sends click events, fixes #8151Marc Englund2011-12-191-4/+23
|
* Properly attach the root if application is set after the UI is builtLeif Åstrand2011-12-161-0/+2
|
* Restore the legacy functionality of Root.addComponent and its relativesLeif Åstrand2011-12-151-57/+14
|
* #8097 Root does not send resize eventsLeif Åstrand2011-12-151-6/+151
|
* Update old license headersHenri Sara2011-12-131-1/+1
|
* Corrected typoArtur Signell2011-12-081-1/+1
|
* Fix compile errors and one failed test caused by mergingLeif Åstrand2011-12-081-3/+8
|
* URI fragment support in Root (#8048)Leif Åstrand2011-12-071-1/+151
|
* Add javadocs for some new methodsLeif Åstrand2011-12-071-28/+288
|