3174 Commits

Author SHA1 Message Date
Ian Hickson
d29970df8b Rename Pointerer to Gesturer. 2015-12-14 07:54:54 -08:00
Ian Hickson
53575aa797 Merge pull request #902 from Hixie/bindings
Refactor bindings.
2015-12-14 00:30:55 -08:00
Ian Hickson
ade93651ac Refactor bindings. 2015-12-13 23:34:41 -08:00
Ian Hickson
9487197502 Merge pull request #895 from Hixie/overlays
Avoid rebuilding entire app when an overlay needs updating
2015-12-11 21:55:11 -08:00
Ian Hickson
e78d6cbc6b Merge pull request #857 from Hixie/hashCodes
Use hashValues instead of hard-coded hashCode getters
2015-12-11 21:46:32 -08:00
Ian Hickson
76319df5df Avoid rebuilding entire app when an overlay needs updating 2015-12-11 21:35:10 -08:00
Ian Hickson
1ab83e668f Merge pull request #894 from Hixie/rev
rev the engine
2015-12-11 21:20:08 -08:00
Ian Hickson
cb1ee0f6b7 Merge pull request #893 from Hixie/typos
Minor fixes in comments and style.
2015-12-11 21:05:49 -08:00
Ian Hickson
ab901beb27 rev the engine 2015-12-11 21:05:26 -08:00
Ian Hickson
cb39108146 Minor fixes in comments and style. 2015-12-11 20:25:08 -08:00
Jason Simmons
e8efac19ba Merge pull request #883 from jason-simmons/roll_mojo_1210
Upgrade the test package (needed by the latest mojo roll)
2015-12-11 09:43:57 -08:00
Ian Hickson
aa80bd6fc9 Merge pull request #886 from Hixie/applyPaintTransform
applyPaintTransform() improvements
2015-12-10 22:47:47 -08:00
Ian Hickson
d1364643db applyPaintTransform() improvements
Previously, applyPaintTransform() had to know how it was positioned in
its parent, even though that's really the parent's responsibility.

Now, applyPaintTransform() is given a child and applies the transform
that it would give the child during paint.

This makes it possible for applyPaintTransform() to work across
coordinate system boundaries (e.g. box to sector, or view to box --
previously, view to box only worked because we explicitly skipped that
step -- since view doesn't actually apply a transform, it doesn't
really matter).
2015-12-10 22:22:00 -08:00
Ian Hickson
7c8c8c1e4c Merge pull request #884 from Hixie/cycles
Check for cycles in our various tree structures.
2015-12-10 20:06:22 -08:00
Ian Hickson
5996d381a7 Check for cycles in our various tree structures. 2015-12-10 19:30:46 -08:00
Adam Barth
2a2784e822 Merge pull request #882 from abarth/image_docs
Add dartdoc for image classes
2015-12-10 18:52:03 -08:00
Adam Barth
40dda1ed4b Add dartdoc for image classes
- Adds dartdoc for all the `of` functions.
 - Renames Image to RawImage. This widget is rarely used and shouldn't take up
   such a nice global name.

Fixes #361
2015-12-10 18:34:56 -08:00
Florian Loitsch
e8367f5346 Merge pull request #881 from floitschG/remove_scheduler_from_animation
Remove reference to scheduler in animation.
2015-12-10 16:27:39 -08:00
Jason Simmons
cb6eef70e8 Upgrade the test package (needed by the latest mojo roll) 2015-12-10 16:25:12 -08:00
Florian Loitsch
86dbf9431f Remove reference to scheduler in animation. 2015-12-10 15:38:39 -08:00
Adam Barth
9353102a7d Merge pull request #880 from abarth/basic_widget_docs
Add more dartdoc for basic widgets
2015-12-10 15:31:51 -08:00
Adam Barth
87e6a5cc12 Add more dartdoc for basic widgets 2015-12-10 14:58:57 -08:00
Jim Beveridge
f92cd47651 Merge pull request #853 from jimbeveridge/pagetest
Added rotation test for new PageableList code.
2015-12-10 12:57:28 -08:00
Hans Muller
54f2d4cb94 Merge pull request #878 from HansMuller/pageable_list_tabs
TabBarView is-a PageableList, doesn't need itemExtent

Base TabBarView on PageableList so that itemExtent and its SizeObserver aren't needed.

TabBarView scrolling is still TBD.
2015-12-10 12:34:32 -08:00
Hans Muller
c4f52177cc demo updates 2015-12-10 12:25:59 -08:00
Adam Barth
ffad464c96 Merge pull request #877 from abarth/better_asserts
Improve asserts when performLayout missing
2015-12-10 12:23:36 -08:00
Hans Muller
55f6593017 tabs scroll duration is 300ms 2015-12-10 12:20:29 -08:00
Hans Muller
9651db22df TabBarView is-a PageableList, doesn't need itemExtent 2015-12-10 12:20:29 -08:00
Adam Barth
2edb6807b8 Improve asserts when performLayout missing
Fixes #566
2015-12-10 12:15:07 -08:00
Adam Barth
4fa9e57185 Merge pull request #872 from abarth/build_errors
Improve error messages when build fails
2015-12-10 12:00:30 -08:00
Adam Barth
2f973faeaa Merge pull request #871 from abarth/recognize_offline
Recognize offline status in adb
2015-12-10 11:27:50 -08:00
Adam Barth
8eb9763569 Improve error messages when build fails
Instead of failing with a cryptic error message about app.flx, we now fail with
an explicit message about the compiler.

Releated to #865
2015-12-10 11:25:19 -08:00
Jim Beveridge
8bb09dbcf8 Added rotation test for new PageableList code. 2015-12-10 11:19:01 -08:00
Ian Hickson
335f583564 Merge pull request #866 from Hixie/debugDoingPaint
Remove debugDoingPaint setter.
2015-12-10 11:17:09 -08:00
Adam Barth
fd68f08b7c Recognize offline status in adb
Fixes #858
2015-12-10 11:16:40 -08:00
Adam Barth
f619c5cd4e Merge pull request #847 from abarth/enum_docs
Add more dartdoc
2015-12-10 11:04:11 -08:00
Hixie
3c4442cecb Remove debugDoingPaint setter.
debugDoingPaint is an internal flag and really shouldn't be globally settable.
2015-12-10 10:42:35 -08:00
Hans Muller
13baf51e2c Merge pull request #864 from HansMuller/zero_items
Support an empty PageableList

Corrected support for PagebleList when zero items or no items are specified.

Added some final qualifiers in pageable_list.dart
2015-12-10 10:23:11 -08:00
Adam Barth
0885926e29 Add more dartdoc
These docs cover some undocumented enums and some of the basic layout widgets.
2015-12-10 10:15:57 -08:00
Hans Muller
fcfcfd56d2 Support an empty PageableList 2015-12-10 10:11:54 -08:00
Adam Barth
a9f0044e29 Merge pull request #854 from floitschG/nitpicking
Minor modifs.
2015-12-10 00:20:01 -08:00
Ian Hickson
d8a3ed3efc Use hashValues instead of hard-coded hashCode getters 2015-12-09 22:10:33 -08:00
Ian Hickson
43d9766806 Merge pull request #856 from Hixie/onPopRoute
Remove last traces of onEvent.
2015-12-09 21:59:38 -08:00
Ian Hickson
928c6290e0 Remove last traces of onEvent. 2015-12-09 21:07:06 -08:00
Florian Loitsch
b5aba60147 Minor modifs. 2015-12-09 17:07:51 -08:00
Hans Muller
5ddbc03b80 Merge pull request #850 from HansMuller/reset_scroll_behavior
Fix PageableList demo

PageableList's scrollBehavior depends on its itemsWrap property.

Also: deleted some commented out code that I'd forgotten to delete.
2015-12-09 16:32:43 -08:00
Hans Muller
03e893927f Fix PageableList demo 2015-12-09 16:19:53 -08:00
krisgiesing
37f685b4ad Merge pull request #843 from krisgiesing/activity_service
Use explicit service name for activity service
2015-12-09 15:18:46 -08:00
Adam Barth
ac0aed5ae7 Merge pull request #846 from abarth/text_decoration
Update to the new TextDecoration API
2015-12-09 15:17:14 -08:00
Adam Barth
ab89d2e499 Update to the new TextDecoration API
Now with fewer lists.
2015-12-09 15:11:34 -08:00