Fix naming convetion:

- "Layout node" is changed to "layout spec".
- Update tests.
- Update Kittens sample.
This commit is contained in:
Huy Nguyen
2015-07-01 17:37:26 +07:00
parent eb5670032d
commit 2149d44990
140 changed files with 581 additions and 579 deletions

View File

@@ -11,7 +11,7 @@
#import <vector>
#import "ASLayout.h"
#import "ASStackLayoutNode.h"
#import "ASStackLayoutSpec.h"
struct ASStackUnpositionedItem {
/** The original source child. */
@@ -31,6 +31,6 @@ struct ASStackUnpositionedLayout {
/** Given a set of children, computes the unpositioned layouts for those children. */
static ASStackUnpositionedLayout compute(const std::vector<id<ASLayoutable>> &children,
const ASStackLayoutNodeStyle &style,
const ASStackLayoutSpecStyle &style,
const ASSizeRange &sizeRange);
};