aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/GridLayout.java
Commit message (Collapse)AuthorAgeFilesLines
* #2904: initial bulk rename "com.itmill.toolkit" -> "com.vaadin"Henri Sara2009-05-111-1313/+0
| | | | | | | - com.itmill.toolkit.external not yet fully renamed svn changeset:7715/svn branch:6.0
* Fixed #2860: Rename getter/setter of spacing Artur Signell2009-05-081-1/+11
| | | | | | http://dev.itmill.com/ticket/2860 svn changeset:7693/svn branch:6.0
* Implementation serialization support for Toolkit. Fixes #695Joonas Lehtinen2009-04-121-11/+3
| | | | svn changeset:7387/svn branch:6.0
* fixes #2454 (defining expand ratios now repaints component)Matti Tahvonen2009-01-191-0/+2
| | | | svn changeset:6595/svn branch:trunk
* fixes #2432, AlignmentHandler methods now symmetric + saner usage overallMatti Tahvonen2009-01-091-10/+16
| | | | svn changeset:6473/svn branch:trunk
* Cleaned up the whole projectArtur Signell2009-01-021-1/+1
| | | | svn changeset:6398/svn branch:trunk
* Reverted #2337 fix to fix #2404Artur Signell2008-12-231-6/+10
| | | | svn changeset:6339/svn branch:trunk
* Testcase & fix for #2337Marc Englund2008-12-161-4/+9
| | | | svn changeset:6229/svn branch:trunk
* Fix for #2279 - Added helper to OrderedLayout and GridLayout for setting ↵Artur Signell2008-12-111-0/+4
| | | | | | component alignments svn changeset:6163/svn branch:trunk
* setCursorX/Y implementation for #1724Marc Englund2008-12-081-0/+20
| | | | svn changeset:6122/svn branch:trunk
* Added API to gridlayout to fetch component layout information (column + row ↵Matti Tahvonen2008-11-211-0/+19
| | | | | | + spans) svn changeset:5950/svn branch:trunk
* GridLayout: added getComponen(x,y) method, fixes #124 Matti Tahvonen2008-11-211-0/+20
| | | | svn changeset:5947/svn branch:trunk
* javadocs for expand ratio methodsMatti Tahvonen2008-11-121-6/+30
| | | | svn changeset:5867/svn branch:trunk
* removed obsolete flagMatti Tahvonen2008-11-041-53/+53
| | | | svn changeset:5803/svn branch:trunk
* fixes index bug related to row expand ratiosMatti Tahvonen2008-10-291-54/+61
| | | | svn changeset:5762/svn branch:trunk
* removed obsolete check that couses npe in emptied gridMatti Tahvonen2008-10-281-2/+2
| | | | svn changeset:5747/svn branch:trunk
* expandRatio for gridlayoutMatti Tahvonen2008-10-241-0/+112
| | | | svn changeset:5699/svn branch:trunk
* Fixed for #2006 - updated error handlingArtur Signell2008-08-281-51/+54
| | | | svn changeset:5281/svn branch:trunk
* Cursor position updated as needed after each addComponent(). Fixes #1972Marc Englund2008-08-181-7/+21
| | | | svn changeset:5205/svn branch:trunk
* Fix for #124 Insert & remove row for GridLayoutArtur Signell2008-08-081-6/+90
| | | | svn changeset:5159/svn branch:trunk
* fixes #1778Matti Tahvonen2008-06-051-0/+2
| | | | svn changeset:4768/svn branch:trunk
* extracted alignments and spacing to layouts subinterfacesMatti Tahvonen2008-02-071-54/+25
| | | | svn changeset:3723/svn branch:trunk
* alignments painting for GridLayoutMatti Tahvonen2008-02-051-0/+22
| | | | svn changeset:3711/svn branch:trunk
* Changed addComponent() a bit: must call super, can't call setParent() directly.Marc Englund2008-02-011-2/+4
| | | | svn changeset:3706/svn branch:trunk
* setWidth/Height now method in SizeableMatti Tahvonen2008-01-281-28/+0
| | | | svn changeset:3663/svn branch:trunk
* component implements sizeable and simple general terminal implementationMatti Tahvonen2008-01-281-16/+1
| | | | svn changeset:3662/svn branch:trunk
* Major layout API changes: Sizeable is now deprecated. Use HasSize-interface ↵Jouni Koivuviita2007-12-131-40/+26
| | | | | | instead in combination with Size object (see ExpandLayout.java for example). OrderedLayout is no longer sizable. Table and Panel implement compatibility methods to proxy old size calls to the new Size object. svn changeset:3228/svn branch:trunk
* License header parametrizedJani Laakso2007-12-041-58/+34
| | | | | | | | Cleanup performed Organized imports Format svn changeset:3162/svn branch:trunk
* MASS REFORMAT.Marc Englund2007-11-191-987/+1006
| | | | | | According to http://toolkit.intra.itmill.com/trac/itmilltoolkit/wiki/CodingConventions svn changeset:2864/svn branch:trunk
* -CustomLayout now supports sizeable.Jouni Koivuviita2007-11-161-6/+7
| | | | | | | -Small fixes to IPanel. -GridLayout and OrderedLayout now fetch alignment constants from client side package. svn changeset:2858/svn branch:trunk
* MAJOR UPDATE:Jouni Koivuviita2007-11-151-6/+4
| | | | | | | | | | | | | | -Layout API changes: Layout extends Sizeable, Layout has two methods setMargin. -OrderedLayout and GridLayout got two new mehtods: setSpacing and setComponentAlignment. -Client-side layout implementations now mainly done using TABLE elements (changes to IOrderedLayout and IExpandLayout). -IScrollTable initial height calculation modified (small fix, clientHeight -> offsetHeight). -Some test modified to conform to new layout API. -Small typo fixes in comments. -OrderedLayout fix when changing orientation on the fly. -Panel and TabSheet are no longer Layouts, only ComponentContainers. -Refactored layout margins to use MarginInfo class, more readable, self-documenting code now. svn changeset:2827/svn branch:trunk
* -Layouts no longer implement Sizeable (except SplitPanel and ExpandLayout). ↵Jouni Koivuviita2007-11-061-14/+16
| | | | | | | | | | Sizeable implementation now copy-pasted to all implementing classes (Panel, Tabsheet, SplitPanel...). -Changed ReservationApplication to conform to new setStyleName. Removed deprecated style constant usages also. Some margins enabled to layouts. -IOrderedLayout vertical reverted back to DIV implementation. -Margins added to demo layouts where needed. svn changeset:2714/svn branch:trunk
* UIDL variable names changed back to original.Jouni Koivuviita2007-11-051-2/+2
| | | | svn changeset:2708/svn branch:trunk
* Layout API changes (#1041) to server-side. Client-side implementation still ↵Jouni Koivuviita2007-11-011-152/+330
| | | | | | not done. svn changeset:2659/svn branch:trunk
* Unified code style (indentation) based on default settings using Eclipse 3.2.Jani Laakso2007-04-181-224/+272
| | | | svn changeset:1256/svn branch:trunk
* Pulled changesets from branches/4.0.0-SRIT into trunk, done byJani Laakso2007-04-121-130/+198
| | | | | | | | | mohamed.atique@renaissance-it.com. All changes are related to javadocs only. Merge was done beetween revisions 924:1192. svn changeset:1212/svn branch:trunk
* Fixed typo: "Intarfaces" => "Interfaces"Jani Laakso2007-01-121-2/+2
| | | | svn changeset:255/svn branch:toolkit
* Fixed typo: "Intarfaces" => "Interfaces"Jani Laakso2007-01-121-1/+1
| | | | svn changeset:238/svn branch:toolkit
* Refactoring: Enably -> IT Mill ToolkitJoonas Lehtinen2006-11-011-0/+757
svn changeset:92/svn branch:toolkit