aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/terminal/gwt/client/ui/VTabsheet.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved each component to its own package on client sideArtur Signell2012-04-121-1219/+0
| | | | | | 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.
* Merge remote branch 'origin/6.8'Leif Åstrand2012-04-101-43/+77
|\ | | | | | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/VTabsheet.java src/com/vaadin/terminal/gwt/client/ui/VTree.java src/com/vaadin/terminal/gwt/client/ui/VWindow.java src/com/vaadin/ui/AbstractField.java
| * #5100 Removed obsolete code to fix a Firefox tab scrolling bugJohannes Dahlström2012-04-041-4/+0
| | | | | | | | svn changeset:23399/svn branch:6.8
| * #5100 Fixed IE focus; fixed tab scrolling; minor refactoringJohannes Dahlström2012-04-021-43/+77
| | | | | | | | svn changeset:23385/svn branch:6.8
| * Reverted accidental commitJohannes Dahlström2012-04-021-77/+43
| | | | | | | | svn changeset:23384/svn branch:6.8
| * Fixed IE focus; fixed tab scrolling; minor refactoringJohannes Dahlström2012-04-021-43/+77
| | | | | | | | svn changeset:23380/svn branch:6.8
* | Removed unnecessary updateFromUidl calls from containersArtur Signell2012-04-051-2/+0
| |
* | Merge commit '8da6b1a0c3293c7de05ebc3d451a2f2e272a13b8' from origin/6.8Artur Signell2012-03-231-4/+10
|\| | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/VTabsheet.java
| * #5100 Removed unnecessary setTabulatorIndex() callJohannes Dahlström2012-03-191-1/+0
| | | | | | | | svn changeset:23260/svn branch:6.8
| * #5100 some cleanupJohannes Dahlström2012-03-191-4/+11
| | | | | | | | svn changeset:23259/svn branch:6.8
* | #8437 Error indicators in tabs work againArtur Signell2012-03-221-2/+4
| |
* | Remove UIDL parameter from many caption related methods (#8435).Henri Sara2012-03-211-3/+2
| | | | | | | | | | Visibility change related code for captions removed from VCaption, VCaptionWrapper and VFormLayout.Caption, should be handled by removing/adding caption based on hierarchy change events.
* | Refactor error messages not to use UIDL (#8437).Henri Sara2012-03-211-5/+2
| | | | | | | | This change removes support for error messages on tabs of a tabsheet or an accordion. Those should be implemented differently if needed.
* | Removed extra getDeclaredWidth/getDeclaredHeight as they directlyArtur Signell2012-03-161-1/+2
| | | | | | | | contain the width and height from the state.
* | Merge branch 'master' into hierarchypaintArtur Signell2012-03-151-1/+1
|\ \
| * | Compensate for borders when size is not undefined (#8313)Leif Åstrand2012-03-151-1/+1
| | |
* | | Fixed NPE when changing tabArtur Signell2012-03-141-25/+9
| | |
* | | Made TabSheet work again and removed TabSheet tab caching for nowArtur Signell2012-03-141-1/+2
| | |
* | | Moved styles list to shared state, replacing the previous String hack.Artur Signell2012-03-141-9/+9
| | |
* | | #8510 Support using Resources through URLReference/ResourceReference inArtur Signell2012-03-131-1/+2
|/ / | | | | shared state and RPC calls
* | Merge remote-tracking branch 'origin/6.8'Johannes Dahlström2012-03-021-8/+167
|\| | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/VTabsheet.java src/com/vaadin/ui/TabSheet.java
| * #5100 Support for server-side focus/blur listeners; handle disabled tabs ↵Johannes Dahlström2012-02-271-45/+92
| | | | | | | | | | | | correctly; handle tab scrolling correctly; removed debug messages svn changeset:23113/svn branch:6.8
| * #5100 Use FocusImpl to handle focus; allow customization of shortcut keysJohannes Dahlström2012-02-171-7/+20
| | | | | | | | svn changeset:23056/svn branch:6.8
| * Patch for #5100 - TabSheet keyboard navigationJohannes Dahlström2012-02-161-8/+118
| | | | | | | | | | | | | | | | | | - The active tab button in the tab bar is now focusable by clicking or via tabulator - When the focus is in the tab bar, the tab can be changed with left and right arrow keys - Delete key closes the active focused tab if closable - TODO: programmatic control on server side, configurable keyboard shortcuts svn changeset:23052/svn branch:6.8
| * Reverted bad commit [23048]Johannes Dahlström2012-02-161-118/+8
| | | | | | | | svn changeset:23050/svn branch:6.8
| * #5100 test caseJohannes Dahlström2012-02-161-8/+118
| | | | | | | | svn changeset:23048/svn branch:6.8
* | Organized imports and formatted all java filesArtur Signell2012-02-281-4/+3
| |
* | Renamed Paintable component classes to ConnectorArtur Signell2012-02-281-5/+5
| |
* | #8434 Renamed *Paintable classes to *Connector and updated ConnectorMapArtur Signell2012-02-271-16/+16
| | | | | | accordingly
* | getWidgetForPaintable -> getWidgetArtur Signell2012-02-271-4/+4
| |
* | Merge branch 'layoutperformance'Leif Åstrand2012-02-271-126/+16
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ApplicationConnection.java src/com/vaadin/terminal/gwt/client/Util.java src/com/vaadin/terminal/gwt/client/VCaption.java src/com/vaadin/terminal/gwt/client/ui/VAbstractPaintableWidget.java src/com/vaadin/terminal/gwt/client/ui/VFormLayout.java src/com/vaadin/terminal/gwt/client/ui/VGridLayout.java src/com/vaadin/terminal/gwt/client/ui/VGridLayoutPaintable.java src/com/vaadin/terminal/gwt/client/ui/VOrderedLayoutPaintable.java src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java src/com/vaadin/terminal/gwt/client/ui/VTabsheet.java src/com/vaadin/terminal/gwt/client/ui/layout/CellBasedLayoutPaintable.java src/com/vaadin/terminal/gwt/client/ui/layout/ChildComponentContainer.java
| * | Rename definedHeight/Width -> declaredHeight/Width (#8313)Leif Åstrand2012-02-231-1/+1
| | |
| * | Merge branch 'master' into layoutperformanceLeif Åstrand2012-02-151-6/+3
| |\ \
| * \ \ Merge remote branch 'origin/master' into layoutperformanceLeif Åstrand2012-02-151-1/+4
| |\ \ \
| * | | | Properly update height and width of tab content (#8313)Leif Åstrand2012-02-141-7/+2
| | | | |
| * | | | Increase visibility of contentNode field (#8313)Leif Åstrand2012-02-141-1/+3
| | | | |
| * | | | Update tab sheet and accordion to work with MeasureManager (#8313)Leif Åstrand2012-02-141-119/+12
| | | | |
* | | | | Removed extra "Widget" prefix from ApplicationConnection method namesArtur Signell2012-02-271-3/+3
| | | | |
* | | | | Communicate caption of components in shared state (#8304).Henri Sara2012-02-231-4/+5
| | | | |
* | | | | Communicate component description (tooltip) in shared state (#8304).Henri Sara2012-02-231-2/+2
| | | | |
* | | | | Communicate disabled flag in shared state (#8304).Henri Sara2012-02-231-1/+3
| | | | |
* | | | | Communicate component style names in shared state (#8304).Henri Sara2012-02-231-5/+8
| | | | |
* | | | | Convert some literal strings of UIDL attributes to use constants.Henri Sara2012-02-211-7/+9
| |_|/ / |/| | |
* | | | Merge remote-tracking branch 'origin/6.8'Leif Åstrand2012-02-151-6/+3
|\ \ \ \ | |_|/ / |/| | / | | |/ | |/|
| * | [merge from 6.7] #8114 Cleaned up fixAutomerge2012-02-151-6/+3
| | | | | | | | | | | | svn changeset:23026/svn branch:6.8
* | | Merge remote branch 'origin/6.8'Leif Åstrand2012-02-151-1/+4
|\| | | |/ |/|
| * [merge from 6.7] #8114 - Fixed TabSheet rendering of first tab when another ↵Automerge2012-02-151-2/+5
| | | | | | | | | | | | tab is selected svn changeset:23014/svn branch:6.8
* | Removed unnecessary getWidgetForPaintable methodsArtur Signell2012-02-021-4/+0
| |
* | Split Accordion and TabSheet into widget + paintableArtur Signell2012-01-311-73/+17
| |
* | Merge remote-tracking branch 'origin/6.8'Artur Signell2012-01-271-1/+4
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: WebContent/VAADIN/themes/base/table/table.css WebContent/release-notes.html build/build.xml src/com/vaadin/terminal/gwt/client/ApplicationConnection.java src/com/vaadin/terminal/gwt/client/ui/VFormLayout.java src/com/vaadin/terminal/gwt/client/ui/VPopupCalendar.java src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java src/com/vaadin/terminal/gwt/client/ui/VSlider.java src/com/vaadin/terminal/gwt/client/ui/VTextualDate.java src/com/vaadin/terminal/gwt/client/ui/VWindow.java src/com/vaadin/ui/Table.java tests/integration_tests.xml tests/test.xml tests/testbench/com/vaadin/tests/components/orderedlayout/OrderedLayoutCases.java