aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/ui/Panel.java
Commit message (Collapse)AuthorAgeFilesLines
* #2904: initial bulk rename "com.itmill.toolkit" -> "com.vaadin"Henri Sara2009-05-111-555/+0
| | | | | | | - com.itmill.toolkit.external not yet fully renamed svn changeset:7715/svn branch:6.0
* Fixed - #2921: Window should be able to contain a ComponentContainer Artur Signell2009-05-111-48/+101
| | | | | | http://dev.itmill.com/ticket/2921 svn changeset:7713/svn branch:6.0
* Implementation serialization support for Toolkit. Fixes #695Joonas Lehtinen2009-04-121-0/+1
| | | | svn changeset:7387/svn branch:6.0
* fixes #2431Matti Tahvonen2009-01-081-2/+3
| | | | svn changeset:6439/svn branch:trunk
* added null checkMatti Tahvonen2008-12-181-1/+3
| | | | svn changeset:6259/svn branch:trunk
* OL -> VerticalLayout as default for panel (right java file this time)Matti Tahvonen2008-12-121-2/+3
| | | | svn changeset:6184/svn branch:trunk
* Removed unused stylename from Panel.java ("emphasize").Jouni Koivuviita2008-12-021-2/+13
| | | | svn changeset:6066/svn branch:trunk
* most component containers now default to 100% widthMatti Tahvonen2008-11-041-1/+2
| | | | svn changeset:5809/svn branch:trunk
* removed obsolete panel width/height variables from uidl (size is define in ↵Matti Tahvonen2008-09-291-10/+0
| | | | | | attributes also) svn changeset:5539/svn branch:trunk
* Fixed #2090 and added test : width/height can be floatJoonas Lehtinen2008-09-261-7/+2
| | | | svn changeset:5527/svn branch:trunk
* setEnable(false) also disables descendants, for #677 - Table still not fixed.Marc Englund2008-09-251-0/+6
| | | | svn changeset:5513/svn branch:trunk
* Mass formatArtur Signell2008-09-021-9/+9
| | | | svn changeset:5331/svn branch:trunk
* fixes #1834. Tested only a bit with FF & SA.Matti Tahvonen2008-06-241-4/+4
| | | | svn changeset:4948/svn branch:trunk
* Panel now don't fire repaint on scroll position change made from client sideMatti Tahvonen2008-06-241-2/+4
| | | | svn changeset:4947/svn branch:trunk
* scrollable related changes, fixes #1834, #1846Matti Tahvonen2008-06-241-14/+42
| | | | svn changeset:4942/svn branch:trunk
* fixes #1782Matti Tahvonen2008-06-091-24/+25
| | | | svn changeset:4802/svn branch:trunk
* fixes #1715, avoids double attach for component inside panelMatti Tahvonen2008-05-231-1/+3
| | | | svn changeset:4620/svn branch:trunk
* Don't allow setting the same layout multiple times (caused bug)Marc Englund2008-03-101-0/+5
| | | | svn changeset:4011/svn branch:trunk
* 1. Removed obsolete dependency framework methods and interface definitions.Jani Laakso2008-02-061-2/+0
| | | | | | | | 2. "Undeprecated" reflection based listeners, we still wish to support these. But I noted on javadoc that using these methods is discouraged and suggested better methods. svn changeset:3718/svn branch:trunk
* component implements sizeable and simple general terminal implementationMatti Tahvonen2008-01-281-85/+14
| | | | svn changeset:3662/svn branch:trunk
* Major layout API changes: Sizeable is now deprecated. Use HasSize-interface ↵Jouni Koivuviita2007-12-131-123/+66
| | | | | | 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-42/+18
| | | | | | | | Cleanup performed Organized imports Format svn changeset:3162/svn branch:trunk
* MASS REFORMAT.Marc Englund2007-11-191-541/+556
| | | | | | According to http://toolkit.intra.itmill.com/trac/itmilltoolkit/wiki/CodingConventions svn changeset:2864/svn branch:trunk
* MAJOR UPDATE:Jouni Koivuviita2007-11-151-4/+2
| | | | | | | | | | | | | | -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-16/+130
| | | | | | | | | | 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
* IOrderedLayout vertical now also with TABLE implementation! :)Jouni Koivuviita2007-11-021-15/+22
| | | | | | | Paddings removed from IPanel and ITabsheet CSS. StyleConstants class added to client-side. svn changeset:2683/svn branch:trunk
* Size information sent again as variables, like it should.Jouni Koivuviita2007-11-021-1/+18
| | | | svn changeset:2667/svn branch:trunk
* Layout API changes (#1041) to server-side. Client-side implementation still ↵Jouni Koivuviita2007-11-011-118/+3
| | | | | | not done. svn changeset:2659/svn branch:trunk
* -All component stylenames now get prefixed with component base stylename.Jouni Koivuviita2007-10-161-0/+11
| | | | | | | | | | -runAnchestorsLayout -> runAncestorsLayout (grammar-fix). -IPanel stylename conventions changed (again). Now all additional stylenames are added to the panel, e.g. addStyleName("red") + addStyleName("green") -> .i-panel .i-panel-red .i-panel-green - ^ same for ITabsheet. -Layout padding convention changed (again). Now by default only Panels and TabSheets have padding, and they can remove that padding by using a constant stylename (Panel.STYLE_NO_PADDING and same for TabSheet). -IWindow styles altered a bit (now able to move Window in IE6 also :)). svn changeset:2527/svn branch:trunk
* Mass format based on eclipse build in formatting style.Jani Laakso2007-10-091-16/+19
| | | | svn changeset:2461/svn branch:trunk
* ContainerResizedListener, ISplitPanel refactoring, ExpandLayout and testMatti Tahvonen2007-10-051-4/+2
| | | | svn changeset:2441/svn branch:trunk
* fixes for windows size & implemented scroll positionsMatti Tahvonen2007-10-021-2/+9
| | | | svn changeset:2407/svn branch:trunk
* Fixes #950Joonas Lehtinen2007-10-011-0/+1
| | | | svn changeset:2406/svn branch:trunk
* Panel now supports all Sizeable units and sends width and height to client ↵Jouni Koivuviita2007-09-201-4/+8
| | | | | | as string-variables. svn changeset:2356/svn branch:trunk
* cleaned importsMatti Tahvonen2007-08-301-3/+0
| | | | svn changeset:2155/svn branch:trunk
* added initial support for keyboard shortcuts. Now only Panel supports them ↵Matti Tahvonen2007-08-291-1/+97
| | | | | | on server side, IView (main windows) on client side. svn changeset:2150/svn branch:trunk
* Unified code style (indentation) based on default settings using Eclipse 3.2.Jani Laakso2007-04-181-113/+144
| | | | svn changeset:1256/svn branch:trunk
* Constructors documents changedMohamed Atique2007-04-131-4/+4
| | | | svn changeset:1230/svn branch:trunk
* Pulled changesets from branches/4.0.0-SRIT into trunk, done byJani Laakso2007-04-121-49/+100
| | | | | | | | | 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/+375
svn changeset:92/svn branch:toolkit